diff --git a/docs/404.html b/docs/404.html index 2c61492f49..494cb4a4d5 100644 --- a/docs/404.html +++ b/docs/404.html @@ -84,7 +84,7 @@ diff --git a/docs/assets.html b/docs/assets.html index 0bc055d841..a7d26141e0 100644 --- a/docs/assets.html +++ b/docs/assets.html @@ -83,7 +83,7 @@ diff --git a/docs/authentication.html b/docs/authentication.html index 376638ad71..00bc686201 100644 --- a/docs/authentication.html +++ b/docs/authentication.html @@ -83,7 +83,7 @@ @@ -271,6 +271,7 @@

Authe

Authentication

Examples:

@@ -288,7 +289,7 @@

Under-the-hood< - @@ -302,7 +303,7 @@

Under-the-hood< - diff --git a/docs/azle.html b/docs/azle.html index 33a82021e8..44fbb4e02a 100644 --- a/docs/azle.html +++ b/docs/azle.html @@ -83,7 +83,7 @@ diff --git a/docs/candid.html b/docs/candid.html index 62a626b7ea..19ebd875b9 100644 --- a/docs/candid.html +++ b/docs/candid.html @@ -83,7 +83,7 @@ diff --git a/docs/candid_based_documentation.html b/docs/candid_based_documentation.html index e49fd97ed5..d25573b94c 100644 --- a/docs/candid_based_documentation.html +++ b/docs/candid_based_documentation.html @@ -83,7 +83,7 @@ diff --git a/docs/canister_lifecycle.html b/docs/canister_lifecycle.html index 65e8f5c265..c3bc7a0ff9 100644 --- a/docs/canister_lifecycle.html +++ b/docs/canister_lifecycle.html @@ -83,7 +83,7 @@ diff --git a/docs/canisters_overview.html b/docs/canisters_overview.html index b034b5ec24..6aae01db4a 100644 --- a/docs/canisters_overview.html +++ b/docs/canisters_overview.html @@ -83,7 +83,7 @@ diff --git a/docs/caveats.html b/docs/caveats.html index 502b136f47..2a6f2badd7 100644 --- a/docs/caveats.html +++ b/docs/caveats.html @@ -83,7 +83,7 @@ diff --git a/docs/cross_canister.html b/docs/cross_canister.html index 5edc092221..0497b64ac6 100644 --- a/docs/cross_canister.html +++ b/docs/cross_canister.html @@ -83,7 +83,7 @@ diff --git a/docs/cycles.html b/docs/cycles.html index ab5e489f30..21f6a6426c 100644 --- a/docs/cycles.html +++ b/docs/cycles.html @@ -83,7 +83,7 @@ diff --git a/docs/debugging.html b/docs/debugging.html index 80f8c6e8f3..340bc729d3 100644 --- a/docs/debugging.html +++ b/docs/debugging.html @@ -83,7 +83,7 @@ @@ -223,7 +223,7 @@

- @@ -237,7 +237,7 @@

- diff --git a/docs/deployment.html b/docs/deployment.html index 50bbdac97b..cd70f70cd2 100644 --- a/docs/deployment.html +++ b/docs/deployment.html @@ -83,7 +83,7 @@ diff --git a/docs/deployment_candid_based.html b/docs/deployment_candid_based.html index c6c82ef52e..5e0f3279a0 100644 --- a/docs/deployment_candid_based.html +++ b/docs/deployment_candid_based.html @@ -83,7 +83,7 @@ diff --git a/docs/examples.html b/docs/examples.html index df2e17d73b..1586f76b4b 100644 --- a/docs/examples.html +++ b/docs/examples.html @@ -83,7 +83,7 @@ diff --git a/docs/fetch.html b/docs/fetch.html new file mode 100644 index 0000000000..fe71cfdf4c --- /dev/null +++ b/docs/fetch.html @@ -0,0 +1,328 @@ + + + + + + fetch - The Azle Book + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + +
+ +
+ + + + + + + + +
+
+

fetch TL;DR

+

Azle canisters use a custom fetch implementation to perform cross-canister calls and to perform HTTPS outcalls.

+

Here's an example of performing a cross-canister call:

+
import { serialize } from 'azle';
+import express from 'express';
+
+const app = express();
+
+app.use(express.json());
+
+app.post('/cross-canister-call', async (req, res) => {
+    const to: string = req.body.to;
+    const amount: number = req.body.amount;
+
+    const response = await fetch(`icp://dfdal-2uaaa-aaaaa-qaama-cai/transfer`, {
+        body: serialize({
+            candidPath: '/token.did',
+            args: [to, amount]
+        })
+    });
+    const responseJson = await response.json();
+
+    res.json(responseJson);
+});
+
+app.listen();
+
+

Keep these important points in mind when performing a cross-canister call:

+
    +
  • Use the icp:// protocol in the URL
  • +
  • The canister id of the canister that you are calling immediately follows icp:// in the URL
  • +
  • The canister method that you are calling immediately follows the canister id in the URL
  • +
  • The candidPath property of the body is the path to the Candid file defining the method signatures of the canister that you are calling. You must obtain this file and copy it into your canister. See the Assets chapter for info on copying files into your canister
  • +
  • The args property of the body is an array of the arguments that will be passed to the canister method that you are calling
  • +
+

Here's an example of performing an HTTPS outcall:

+
import express from 'express';
+
+const app = express();
+
+app.use(express.json());
+
+app.post('/https-outcall', async (_req, res) => {
+    const response = await fetch(`https://httpbin.org/headers`, {
+        headers: {
+            'X-Azle-Request-Key-0': 'X-Azle-Request-Value-0',
+            'X-Azle-Request-Key-1': 'X-Azle-Request-Value-1',
+            'X-Azle-Request-Key-2': 'X-Azle-Request-Value-2'
+        }
+    });
+    const responseJson = await response.json();
+
+    res.json(responseJson);
+});
+
+app.listen();
+
+

fetch

+

Azle has custom fetch implementations for clients and canisters.

+

The client fetch is used for authentication, and you can learn more about it in the Authentication chapter.

+

Canister fetch is used to perform cross-canister calls and HTTPS outcalls. There are three main types of calls made with canister fetch:

+
    +
  1. Cross-canister calls to a candid canister
  2. +
  3. Cross-canister calls to an HTTP canister
  4. +
  5. HTTPS outcalls
  6. +
+

Cross-canister calls to a candid canister

+

Examples:

+ +

Cross-canister calls to an HTTP canister

+

We are working on better abstractions for these types of calls. For now you would just make a cross-canister call using icp:// to the http_request and http_request_update methods of the canister that you are calling.

+

HTTPS outcalls

+

Examples:

+ + + +
+ + +
+
+ + + +
+ + + + + + + + + + + + + + + + + + +
+ + diff --git a/docs/get_started.html b/docs/get_started.html index eba6154173..a29e3b430a 100644 --- a/docs/get_started.html +++ b/docs/get_started.html @@ -83,7 +83,7 @@ diff --git a/docs/hello_world.html b/docs/hello_world.html index e7a5e55c87..6f980a0598 100644 --- a/docs/hello_world.html +++ b/docs/hello_world.html @@ -83,7 +83,7 @@ diff --git a/docs/http.html b/docs/http.html index 40fee69ee4..0b12f32c52 100644 --- a/docs/http.html +++ b/docs/http.html @@ -83,7 +83,7 @@ diff --git a/docs/index.html b/docs/index.html index 5945f0c4b2..f5f88ee604 100644 --- a/docs/index.html +++ b/docs/index.html @@ -83,7 +83,7 @@ diff --git a/docs/installation.html b/docs/installation.html index 5f5d2e3b87..a7e3945902 100644 --- a/docs/installation.html +++ b/docs/installation.html @@ -83,7 +83,7 @@ diff --git a/docs/internet_computer_overview.html b/docs/internet_computer_overview.html index 7b4137bdf6..764ec10fda 100644 --- a/docs/internet_computer_overview.html +++ b/docs/internet_computer_overview.html @@ -83,7 +83,7 @@ diff --git a/docs/limitations.html b/docs/limitations.html index b7152297c0..bdd916817e 100644 --- a/docs/limitations.html +++ b/docs/limitations.html @@ -83,7 +83,7 @@ diff --git a/docs/management_canister.html b/docs/management_canister.html index 9fd3d5c688..ad134ef551 100644 --- a/docs/management_canister.html +++ b/docs/management_canister.html @@ -83,7 +83,7 @@ diff --git a/docs/print.html b/docs/print.html index a83f77a5fa..ae70565d0f 100644 --- a/docs/print.html +++ b/docs/print.html @@ -84,7 +84,7 @@ @@ -748,6 +748,7 @@

Limitations

Authentication

Examples:

@@ -756,6 +757,136 @@

Under-the-hood<

Azle attempts to enable you to perform traditional HTTP requests with traditional libraries. Currently Azle focuses on fetch. When importing toJwt, azle/http_client will overwrite the global fetch function and will intercept fetch requests that have Authorization headers with an Identity as a value.

Once intercepted, these requests are turned into @dfinity/agent requests that call the http_request and http_request_update canister methods directly, thus performing all of the required client-side authentication work.

We are working to push for ICP to more natively understand JWTs for authentication, without the need to intercept fetch requests and convert them into agent requests.

+

fetch TL;DR

+

Azle canisters use a custom fetch implementation to perform cross-canister calls and to perform HTTPS outcalls.

+

Here's an example of performing a cross-canister call:

+
import { serialize } from 'azle';
+import express from 'express';
+
+const app = express();
+
+app.use(express.json());
+
+app.post('/cross-canister-call', async (req, res) => {
+    const to: string = req.body.to;
+    const amount: number = req.body.amount;
+
+    const response = await fetch(`icp://dfdal-2uaaa-aaaaa-qaama-cai/transfer`, {
+        body: serialize({
+            candidPath: '/token.did',
+            args: [to, amount]
+        })
+    });
+    const responseJson = await response.json();
+
+    res.json(responseJson);
+});
+
+app.listen();
+
+

Keep these important points in mind when performing a cross-canister call:

+ +

Here's an example of performing an HTTPS outcall:

+
import express from 'express';
+
+const app = express();
+
+app.use(express.json());
+
+app.post('/https-outcall', async (_req, res) => {
+    const response = await fetch(`https://httpbin.org/headers`, {
+        headers: {
+            'X-Azle-Request-Key-0': 'X-Azle-Request-Value-0',
+            'X-Azle-Request-Key-1': 'X-Azle-Request-Value-1',
+            'X-Azle-Request-Key-2': 'X-Azle-Request-Value-2'
+        }
+    });
+    const responseJson = await response.json();
+
+    res.json(responseJson);
+});
+
+app.listen();
+
+

fetch

+

Azle has custom fetch implementations for clients and canisters.

+

The client fetch is used for authentication, and you can learn more about it in the Authentication chapter.

+

Canister fetch is used to perform cross-canister calls and HTTPS outcalls. There are three main types of calls made with canister fetch:

+
    +
  1. Cross-canister calls to a candid canister
  2. +
  3. Cross-canister calls to an HTTP canister
  4. +
  5. HTTPS outcalls
  6. +
+

Cross-canister calls to a candid canister

+

Examples:

+ +

Cross-canister calls to an HTTP canister

+

We are working on better abstractions for these types of calls. For now you would just make a cross-canister call using icp:// to the http_request and http_request_update methods of the canister that you are calling.

+

HTTPS outcalls

+

Examples:

+ +

Debugging TL;DR

If your terminal logs ever say did not produce a response or response failed classification=Status code: 502 Bad Gateway, it most likely means that your canister has thrown an error and halted execution for that call. Use console.log and try/catch liberally to track down problems and reveal error information. If your error logs do not have useful messages, use try/catch with a console.log of the catch error argument to reveal the underlying error message.

Debugging

diff --git a/docs/project_structure.html b/docs/project_structure.html index 723688df3b..1ab8f1261d 100644 --- a/docs/project_structure.html +++ b/docs/project_structure.html @@ -83,7 +83,7 @@ diff --git a/docs/query_methods.html b/docs/query_methods.html index 0e7d3b9ad7..cdf200b784 100644 --- a/docs/query_methods.html +++ b/docs/query_methods.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/bitcoin.html b/docs/reference/bitcoin.html index 4c8e103cc7..693b0945b1 100644 --- a/docs/reference/bitcoin.html +++ b/docs/reference/bitcoin.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/accept_message.html b/docs/reference/call_apis/accept_message.html index f4a7d52723..d83ce0d874 100644 --- a/docs/reference/call_apis/accept_message.html +++ b/docs/reference/call_apis/accept_message.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/arg_data_raw.html b/docs/reference/call_apis/arg_data_raw.html index 56a08326e9..0d625564d7 100644 --- a/docs/reference/call_apis/arg_data_raw.html +++ b/docs/reference/call_apis/arg_data_raw.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/arg_data_raw_size.html b/docs/reference/call_apis/arg_data_raw_size.html index 9f6fddc7de..069abbda32 100644 --- a/docs/reference/call_apis/arg_data_raw_size.html +++ b/docs/reference/call_apis/arg_data_raw_size.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/call.html b/docs/reference/call_apis/call.html index a38022d4ac..74664222d9 100644 --- a/docs/reference/call_apis/call.html +++ b/docs/reference/call_apis/call.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/call_apis.html b/docs/reference/call_apis/call_apis.html index b61f6bf26a..cfc89a0d3d 100644 --- a/docs/reference/call_apis/call_apis.html +++ b/docs/reference/call_apis/call_apis.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/call_raw.html b/docs/reference/call_apis/call_raw.html index ef0541e669..522be4463c 100644 --- a/docs/reference/call_apis/call_raw.html +++ b/docs/reference/call_apis/call_raw.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/call_raw128.html b/docs/reference/call_apis/call_raw128.html index 6078dfacc9..fdf05a10c7 100644 --- a/docs/reference/call_apis/call_raw128.html +++ b/docs/reference/call_apis/call_raw128.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/call_with_payment.html b/docs/reference/call_apis/call_with_payment.html index fc0a1f3e15..87dfa02a3e 100644 --- a/docs/reference/call_apis/call_with_payment.html +++ b/docs/reference/call_apis/call_with_payment.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/call_with_payment128.html b/docs/reference/call_apis/call_with_payment128.html index 366d5e528f..9832f8cdcc 100644 --- a/docs/reference/call_apis/call_with_payment128.html +++ b/docs/reference/call_apis/call_with_payment128.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/caller.html b/docs/reference/call_apis/caller.html index aa6b1e9d99..832885ca8c 100644 --- a/docs/reference/call_apis/caller.html +++ b/docs/reference/call_apis/caller.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/method_name.html b/docs/reference/call_apis/method_name.html index 19e303ab16..deaebf254e 100644 --- a/docs/reference/call_apis/method_name.html +++ b/docs/reference/call_apis/method_name.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/msg_cycles_accept.html b/docs/reference/call_apis/msg_cycles_accept.html index 9eac0513b0..24f7d6a718 100644 --- a/docs/reference/call_apis/msg_cycles_accept.html +++ b/docs/reference/call_apis/msg_cycles_accept.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/msg_cycles_accept128.html b/docs/reference/call_apis/msg_cycles_accept128.html index 7733e2b656..1e25e796b7 100644 --- a/docs/reference/call_apis/msg_cycles_accept128.html +++ b/docs/reference/call_apis/msg_cycles_accept128.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/msg_cycles_available.html b/docs/reference/call_apis/msg_cycles_available.html index 68e808d164..36bba4b1d3 100644 --- a/docs/reference/call_apis/msg_cycles_available.html +++ b/docs/reference/call_apis/msg_cycles_available.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/msg_cycles_available128.html b/docs/reference/call_apis/msg_cycles_available128.html index c12f0ae0aa..f995899a51 100644 --- a/docs/reference/call_apis/msg_cycles_available128.html +++ b/docs/reference/call_apis/msg_cycles_available128.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/msg_cycles_refunded.html b/docs/reference/call_apis/msg_cycles_refunded.html index 1e45c52053..c97835fee4 100644 --- a/docs/reference/call_apis/msg_cycles_refunded.html +++ b/docs/reference/call_apis/msg_cycles_refunded.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/msg_cycles_refunded128.html b/docs/reference/call_apis/msg_cycles_refunded128.html index 4cd0ed77ce..3721a15685 100644 --- a/docs/reference/call_apis/msg_cycles_refunded128.html +++ b/docs/reference/call_apis/msg_cycles_refunded128.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/notify.html b/docs/reference/call_apis/notify.html index 5df183b438..39695a0758 100644 --- a/docs/reference/call_apis/notify.html +++ b/docs/reference/call_apis/notify.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/notify_raw.html b/docs/reference/call_apis/notify_raw.html index e72f656b0e..671a43db96 100644 --- a/docs/reference/call_apis/notify_raw.html +++ b/docs/reference/call_apis/notify_raw.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/notify_with_payment_128.html b/docs/reference/call_apis/notify_with_payment_128.html index 84d0cc3908..38a5562ec6 100644 --- a/docs/reference/call_apis/notify_with_payment_128.html +++ b/docs/reference/call_apis/notify_with_payment_128.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/reject.html b/docs/reference/call_apis/reject.html index a0050b8755..dc5a327ad2 100644 --- a/docs/reference/call_apis/reject.html +++ b/docs/reference/call_apis/reject.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/reject_code.html b/docs/reference/call_apis/reject_code.html index 4c37625077..bc244448f9 100644 --- a/docs/reference/call_apis/reject_code.html +++ b/docs/reference/call_apis/reject_code.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/reject_message.html b/docs/reference/call_apis/reject_message.html index 669c28a10e..94d2bf20cd 100644 --- a/docs/reference/call_apis/reject_message.html +++ b/docs/reference/call_apis/reject_message.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/reply.html b/docs/reference/call_apis/reply.html index 4cee985de9..914cd7607a 100644 --- a/docs/reference/call_apis/reply.html +++ b/docs/reference/call_apis/reply.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/call_apis/reply_raw.html b/docs/reference/call_apis/reply_raw.html index 5d1f56534e..8f3b2fe146 100644 --- a/docs/reference/call_apis/reply_raw.html +++ b/docs/reference/call_apis/reply_raw.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/blob.html b/docs/reference/candid/blob.html index 997dc4960b..797c101720 100644 --- a/docs/reference/candid/blob.html +++ b/docs/reference/candid/blob.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/bool.html b/docs/reference/candid/bool.html index 13164a37c3..0a5f963ff1 100644 --- a/docs/reference/candid/bool.html +++ b/docs/reference/candid/bool.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/candid.html b/docs/reference/candid/candid.html index 492060f7f6..a23e3b647a 100644 --- a/docs/reference/candid/candid.html +++ b/docs/reference/candid/candid.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/empty.html b/docs/reference/candid/empty.html index 60d760cfa3..ea99c5a66a 100644 --- a/docs/reference/candid/empty.html +++ b/docs/reference/candid/empty.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/float32.html b/docs/reference/candid/float32.html index 5179c00b39..885af9fdea 100644 --- a/docs/reference/candid/float32.html +++ b/docs/reference/candid/float32.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/float64.html b/docs/reference/candid/float64.html index 8373c6c895..0f22dbb9f5 100644 --- a/docs/reference/candid/float64.html +++ b/docs/reference/candid/float64.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/func.html b/docs/reference/candid/func.html index 190e58ad70..9f40f5f67c 100644 --- a/docs/reference/candid/func.html +++ b/docs/reference/candid/func.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/int.html b/docs/reference/candid/int.html index a06c25a73c..fcceadde69 100644 --- a/docs/reference/candid/int.html +++ b/docs/reference/candid/int.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/int16.html b/docs/reference/candid/int16.html index 615d9e4804..4d0496f515 100644 --- a/docs/reference/candid/int16.html +++ b/docs/reference/candid/int16.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/int32.html b/docs/reference/candid/int32.html index 55765eae9e..9eeaeb910e 100644 --- a/docs/reference/candid/int32.html +++ b/docs/reference/candid/int32.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/int64.html b/docs/reference/candid/int64.html index dec205d80e..8002a57b99 100644 --- a/docs/reference/candid/int64.html +++ b/docs/reference/candid/int64.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/int8.html b/docs/reference/candid/int8.html index b49b35ac4f..07c81c6a3d 100644 --- a/docs/reference/candid/int8.html +++ b/docs/reference/candid/int8.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/nat.html b/docs/reference/candid/nat.html index 48c7e5a0dd..887bfb9bfe 100644 --- a/docs/reference/candid/nat.html +++ b/docs/reference/candid/nat.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/nat16.html b/docs/reference/candid/nat16.html index 06f0ed9429..cccbd174d8 100644 --- a/docs/reference/candid/nat16.html +++ b/docs/reference/candid/nat16.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/nat32.html b/docs/reference/candid/nat32.html index c5931455ac..dbf00aff3a 100644 --- a/docs/reference/candid/nat32.html +++ b/docs/reference/candid/nat32.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/nat64.html b/docs/reference/candid/nat64.html index 2d332b9439..13a03c05ed 100644 --- a/docs/reference/candid/nat64.html +++ b/docs/reference/candid/nat64.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/nat8.html b/docs/reference/candid/nat8.html index 91de8343e0..7e3b12c8b8 100644 --- a/docs/reference/candid/nat8.html +++ b/docs/reference/candid/nat8.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/null.html b/docs/reference/candid/null.html index 20cda13c10..3807569353 100644 --- a/docs/reference/candid/null.html +++ b/docs/reference/candid/null.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/opt.html b/docs/reference/candid/opt.html index 7d297e92d8..ad8f973c68 100644 --- a/docs/reference/candid/opt.html +++ b/docs/reference/candid/opt.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/principal.html b/docs/reference/candid/principal.html index d0513842cc..9f9334bc37 100644 --- a/docs/reference/candid/principal.html +++ b/docs/reference/candid/principal.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/record.html b/docs/reference/candid/record.html index 835b1385e9..5eee73214d 100644 --- a/docs/reference/candid/record.html +++ b/docs/reference/candid/record.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/reserved.html b/docs/reference/candid/reserved.html index c28f9d5c96..46963a85e7 100644 --- a/docs/reference/candid/reserved.html +++ b/docs/reference/candid/reserved.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/service.html b/docs/reference/candid/service.html index 0d59b9609b..e2b62ead28 100644 --- a/docs/reference/candid/service.html +++ b/docs/reference/candid/service.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/text.html b/docs/reference/candid/text.html index 3073674534..184aef2246 100644 --- a/docs/reference/candid/text.html +++ b/docs/reference/candid/text.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/variant.html b/docs/reference/candid/variant.html index 1260598b74..5ad3a08344 100644 --- a/docs/reference/candid/variant.html +++ b/docs/reference/candid/variant.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/candid/vec.html b/docs/reference/candid/vec.html index 7bebef4078..a3145f18ed 100644 --- a/docs/reference/candid/vec.html +++ b/docs/reference/candid/vec.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_apis/candid_decode.html b/docs/reference/canister_apis/candid_decode.html index dfe25fd5e4..23d138e680 100644 --- a/docs/reference/canister_apis/candid_decode.html +++ b/docs/reference/canister_apis/candid_decode.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_apis/candid_encode.html b/docs/reference/canister_apis/candid_encode.html index 7dfd387ba8..015bdedea9 100644 --- a/docs/reference/canister_apis/candid_encode.html +++ b/docs/reference/canister_apis/candid_encode.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_apis/canister_apis.html b/docs/reference/canister_apis/canister_apis.html index 50054eb568..175ba44af0 100644 --- a/docs/reference/canister_apis/canister_apis.html +++ b/docs/reference/canister_apis/canister_apis.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_apis/canister_balance.html b/docs/reference/canister_apis/canister_balance.html index 256ddf349e..0220aab8d9 100644 --- a/docs/reference/canister_apis/canister_balance.html +++ b/docs/reference/canister_apis/canister_balance.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_apis/canister_balance128.html b/docs/reference/canister_apis/canister_balance128.html index 70ac829d5c..d667131454 100644 --- a/docs/reference/canister_apis/canister_balance128.html +++ b/docs/reference/canister_apis/canister_balance128.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_apis/canister_id.html b/docs/reference/canister_apis/canister_id.html index f14f0eac32..ffb90ef48a 100644 --- a/docs/reference/canister_apis/canister_id.html +++ b/docs/reference/canister_apis/canister_id.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_apis/canister_version.html b/docs/reference/canister_apis/canister_version.html index a85fb469af..fc919c9ba3 100644 --- a/docs/reference/canister_apis/canister_version.html +++ b/docs/reference/canister_apis/canister_version.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_apis/data_certificate.html b/docs/reference/canister_apis/data_certificate.html index 7b148b84ba..b2b7f5f2a5 100644 --- a/docs/reference/canister_apis/data_certificate.html +++ b/docs/reference/canister_apis/data_certificate.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_apis/instruction_counter.html b/docs/reference/canister_apis/instruction_counter.html index 018f26f5ea..81a9c91c0b 100644 --- a/docs/reference/canister_apis/instruction_counter.html +++ b/docs/reference/canister_apis/instruction_counter.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_apis/is_controller.html b/docs/reference/canister_apis/is_controller.html index 6d5ac0781b..f64c9cba0f 100644 --- a/docs/reference/canister_apis/is_controller.html +++ b/docs/reference/canister_apis/is_controller.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_apis/performance_counter.html b/docs/reference/canister_apis/performance_counter.html index 7b6a596ccd..f6c571ba3c 100644 --- a/docs/reference/canister_apis/performance_counter.html +++ b/docs/reference/canister_apis/performance_counter.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_apis/print.html b/docs/reference/canister_apis/print.html index 9fbeafcf56..1eae88afc9 100644 --- a/docs/reference/canister_apis/print.html +++ b/docs/reference/canister_apis/print.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_apis/set_certified_data.html b/docs/reference/canister_apis/set_certified_data.html index dceb8e2cd5..52a80544c1 100644 --- a/docs/reference/canister_apis/set_certified_data.html +++ b/docs/reference/canister_apis/set_certified_data.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_apis/time.html b/docs/reference/canister_apis/time.html index d1d0209205..6ed75677d2 100644 --- a/docs/reference/canister_apis/time.html +++ b/docs/reference/canister_apis/time.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_apis/trap.html b/docs/reference/canister_apis/trap.html index 7cafb9956d..ec011d282a 100644 --- a/docs/reference/canister_apis/trap.html +++ b/docs/reference/canister_apis/trap.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_methods/canister_methods.html b/docs/reference/canister_methods/canister_methods.html index 09daf93be2..bdf5155111 100644 --- a/docs/reference/canister_methods/canister_methods.html +++ b/docs/reference/canister_methods/canister_methods.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_methods/heartbeat.html b/docs/reference/canister_methods/heartbeat.html index da5adf6175..a33676a9d1 100644 --- a/docs/reference/canister_methods/heartbeat.html +++ b/docs/reference/canister_methods/heartbeat.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_methods/http_request.html b/docs/reference/canister_methods/http_request.html index f1632efcb5..141409816e 100644 --- a/docs/reference/canister_methods/http_request.html +++ b/docs/reference/canister_methods/http_request.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_methods/http_request_update.html b/docs/reference/canister_methods/http_request_update.html index 932deae7ab..fc468ac80e 100644 --- a/docs/reference/canister_methods/http_request_update.html +++ b/docs/reference/canister_methods/http_request_update.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_methods/init.html b/docs/reference/canister_methods/init.html index 34380f8294..f27cc11f64 100644 --- a/docs/reference/canister_methods/init.html +++ b/docs/reference/canister_methods/init.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_methods/inspect_message.html b/docs/reference/canister_methods/inspect_message.html index 5138bbc724..d4752f0a6b 100644 --- a/docs/reference/canister_methods/inspect_message.html +++ b/docs/reference/canister_methods/inspect_message.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_methods/post_upgrade.html b/docs/reference/canister_methods/post_upgrade.html index b6d4c7b525..67dfe869c5 100644 --- a/docs/reference/canister_methods/post_upgrade.html +++ b/docs/reference/canister_methods/post_upgrade.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_methods/pre_upgrade.html b/docs/reference/canister_methods/pre_upgrade.html index dc17d97438..32f2414b08 100644 --- a/docs/reference/canister_methods/pre_upgrade.html +++ b/docs/reference/canister_methods/pre_upgrade.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_methods/query.html b/docs/reference/canister_methods/query.html index 49404e7e74..765e42dc94 100644 --- a/docs/reference/canister_methods/query.html +++ b/docs/reference/canister_methods/query.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/canister_methods/update.html b/docs/reference/canister_methods/update.html index 71cc89836c..53fd6dde0b 100644 --- a/docs/reference/canister_methods/update.html +++ b/docs/reference/canister_methods/update.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/environment_variables.html b/docs/reference/environment_variables.html index 81d271bfe0..66c3db61a0 100644 --- a/docs/reference/environment_variables.html +++ b/docs/reference/environment_variables.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/bitcoin_get_balance.html b/docs/reference/management_canister/bitcoin_get_balance.html index 393430be4c..c19ffa7049 100644 --- a/docs/reference/management_canister/bitcoin_get_balance.html +++ b/docs/reference/management_canister/bitcoin_get_balance.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/bitcoin_get_current_fee_percentiles.html b/docs/reference/management_canister/bitcoin_get_current_fee_percentiles.html index 62dfe190db..6cb12680b1 100644 --- a/docs/reference/management_canister/bitcoin_get_current_fee_percentiles.html +++ b/docs/reference/management_canister/bitcoin_get_current_fee_percentiles.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/bitcoin_get_utxos.html b/docs/reference/management_canister/bitcoin_get_utxos.html index 155d161208..a26e47fa61 100644 --- a/docs/reference/management_canister/bitcoin_get_utxos.html +++ b/docs/reference/management_canister/bitcoin_get_utxos.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/bitcoin_send_transaction.html b/docs/reference/management_canister/bitcoin_send_transaction.html index f293b69598..5f5b57cafa 100644 --- a/docs/reference/management_canister/bitcoin_send_transaction.html +++ b/docs/reference/management_canister/bitcoin_send_transaction.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/canister_status.html b/docs/reference/management_canister/canister_status.html index 3544dc1bab..092800cdeb 100644 --- a/docs/reference/management_canister/canister_status.html +++ b/docs/reference/management_canister/canister_status.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/create_canister.html b/docs/reference/management_canister/create_canister.html index ef0c721579..14b592cfeb 100644 --- a/docs/reference/management_canister/create_canister.html +++ b/docs/reference/management_canister/create_canister.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/delete_canister.html b/docs/reference/management_canister/delete_canister.html index ea65e21b64..03e5953ea7 100644 --- a/docs/reference/management_canister/delete_canister.html +++ b/docs/reference/management_canister/delete_canister.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/deposit_cycles.html b/docs/reference/management_canister/deposit_cycles.html index f6cf85f6ab..52d17da7c3 100644 --- a/docs/reference/management_canister/deposit_cycles.html +++ b/docs/reference/management_canister/deposit_cycles.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/ecdsa_public_key.html b/docs/reference/management_canister/ecdsa_public_key.html index 90c6ce95d0..fe2f1c7d7a 100644 --- a/docs/reference/management_canister/ecdsa_public_key.html +++ b/docs/reference/management_canister/ecdsa_public_key.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/http_request.html b/docs/reference/management_canister/http_request.html index 4cb9816d78..122657eccd 100644 --- a/docs/reference/management_canister/http_request.html +++ b/docs/reference/management_canister/http_request.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/install_code.html b/docs/reference/management_canister/install_code.html index d53d9871e9..28d7720755 100644 --- a/docs/reference/management_canister/install_code.html +++ b/docs/reference/management_canister/install_code.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/management_canister.html b/docs/reference/management_canister/management_canister.html index 9d54a53af4..1bb8c261a0 100644 --- a/docs/reference/management_canister/management_canister.html +++ b/docs/reference/management_canister/management_canister.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/provisional_create_canister_with_cycles.html b/docs/reference/management_canister/provisional_create_canister_with_cycles.html index a4be873fb2..e31d02afbd 100644 --- a/docs/reference/management_canister/provisional_create_canister_with_cycles.html +++ b/docs/reference/management_canister/provisional_create_canister_with_cycles.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/provisional_top_up_canister.html b/docs/reference/management_canister/provisional_top_up_canister.html index eb80e95b36..8e6e0d95de 100644 --- a/docs/reference/management_canister/provisional_top_up_canister.html +++ b/docs/reference/management_canister/provisional_top_up_canister.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/raw_rand.html b/docs/reference/management_canister/raw_rand.html index 6ff6f0c80b..4eba686ecb 100644 --- a/docs/reference/management_canister/raw_rand.html +++ b/docs/reference/management_canister/raw_rand.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/sign_with_ecdsa.html b/docs/reference/management_canister/sign_with_ecdsa.html index dd92356742..61ec6d9c13 100644 --- a/docs/reference/management_canister/sign_with_ecdsa.html +++ b/docs/reference/management_canister/sign_with_ecdsa.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/start_canister.html b/docs/reference/management_canister/start_canister.html index 57a6045c99..5a90ff05ec 100644 --- a/docs/reference/management_canister/start_canister.html +++ b/docs/reference/management_canister/start_canister.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/stop_canister.html b/docs/reference/management_canister/stop_canister.html index a18867b6b2..959a8651c8 100644 --- a/docs/reference/management_canister/stop_canister.html +++ b/docs/reference/management_canister/stop_canister.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/uninstall_code.html b/docs/reference/management_canister/uninstall_code.html index 0ad7084d65..0b243de92d 100644 --- a/docs/reference/management_canister/uninstall_code.html +++ b/docs/reference/management_canister/uninstall_code.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/management_canister/update_settings.html b/docs/reference/management_canister/update_settings.html index 7fb843661a..17be3a4bd8 100644 --- a/docs/reference/management_canister/update_settings.html +++ b/docs/reference/management_canister/update_settings.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/plugins.html b/docs/reference/plugins.html index feac6ed655..580467a1aa 100644 --- a/docs/reference/plugins.html +++ b/docs/reference/plugins.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/reference.html b/docs/reference/reference.html index 0cd18befc9..ffb19554d2 100644 --- a/docs/reference/reference.html +++ b/docs/reference/reference.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/stable_memory/stable64_grow.html b/docs/reference/stable_memory/stable64_grow.html index 3b5ad8981f..14698fc301 100644 --- a/docs/reference/stable_memory/stable64_grow.html +++ b/docs/reference/stable_memory/stable64_grow.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/stable_memory/stable64_read.html b/docs/reference/stable_memory/stable64_read.html index 0fa82fc4e2..ccaaf1324d 100644 --- a/docs/reference/stable_memory/stable64_read.html +++ b/docs/reference/stable_memory/stable64_read.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/stable_memory/stable64_size.html b/docs/reference/stable_memory/stable64_size.html index 1f8d48edd2..cddb10fc1e 100644 --- a/docs/reference/stable_memory/stable64_size.html +++ b/docs/reference/stable_memory/stable64_size.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/stable_memory/stable64_write.html b/docs/reference/stable_memory/stable64_write.html index 63f05c62e7..2d56efb344 100644 --- a/docs/reference/stable_memory/stable64_write.html +++ b/docs/reference/stable_memory/stable64_write.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/stable_memory/stable_bytes.html b/docs/reference/stable_memory/stable_bytes.html index ab708b5d0d..a0ce49631f 100644 --- a/docs/reference/stable_memory/stable_bytes.html +++ b/docs/reference/stable_memory/stable_bytes.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/stable_memory/stable_grow.html b/docs/reference/stable_memory/stable_grow.html index 4639e00b18..f3fb112d63 100644 --- a/docs/reference/stable_memory/stable_grow.html +++ b/docs/reference/stable_memory/stable_grow.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/stable_memory/stable_memory.html b/docs/reference/stable_memory/stable_memory.html index 46de5e17ea..3a3aa79e69 100644 --- a/docs/reference/stable_memory/stable_memory.html +++ b/docs/reference/stable_memory/stable_memory.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/stable_memory/stable_read.html b/docs/reference/stable_memory/stable_read.html index df73d0da7e..c094abf923 100644 --- a/docs/reference/stable_memory/stable_read.html +++ b/docs/reference/stable_memory/stable_read.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/stable_memory/stable_size.html b/docs/reference/stable_memory/stable_size.html index be73a36b07..3fdce6389a 100644 --- a/docs/reference/stable_memory/stable_size.html +++ b/docs/reference/stable_memory/stable_size.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/stable_memory/stable_structures.html b/docs/reference/stable_memory/stable_structures.html index 38f9cc9763..8f96d99258 100644 --- a/docs/reference/stable_memory/stable_structures.html +++ b/docs/reference/stable_memory/stable_structures.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/stable_memory/stable_write.html b/docs/reference/stable_memory/stable_write.html index 438fb63242..ae755aeac6 100644 --- a/docs/reference/stable_memory/stable_write.html +++ b/docs/reference/stable_memory/stable_write.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/timers/clear_timer.html b/docs/reference/timers/clear_timer.html index 5d5c5d28e0..4037b60b0b 100644 --- a/docs/reference/timers/clear_timer.html +++ b/docs/reference/timers/clear_timer.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/timers/set_timer.html b/docs/reference/timers/set_timer.html index 775dc4c9c4..c044848af2 100644 --- a/docs/reference/timers/set_timer.html +++ b/docs/reference/timers/set_timer.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/timers/set_timer_interval.html b/docs/reference/timers/set_timer_interval.html index 0dceaa5918..c4e70ea7c7 100644 --- a/docs/reference/timers/set_timer_interval.html +++ b/docs/reference/timers/set_timer_interval.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/timers/timers.html b/docs/reference/timers/timers.html index 3bd8ac3236..2d7c0192a7 100644 --- a/docs/reference/timers/timers.html +++ b/docs/reference/timers/timers.html @@ -83,7 +83,7 @@ diff --git a/docs/reference/wasm_binary_optimization.html b/docs/reference/wasm_binary_optimization.html index ec4549a6b9..8d825041b2 100644 --- a/docs/reference/wasm_binary_optimization.html +++ b/docs/reference/wasm_binary_optimization.html @@ -83,7 +83,7 @@ diff --git a/docs/reference_http/autoreload.html b/docs/reference_http/autoreload.html index eef03b2434..3279127130 100644 --- a/docs/reference_http/autoreload.html +++ b/docs/reference_http/autoreload.html @@ -83,7 +83,7 @@ diff --git a/docs/reference_http/environment_variables.html b/docs/reference_http/environment_variables.html index e0a4a4801d..5c089a4946 100644 --- a/docs/reference_http/environment_variables.html +++ b/docs/reference_http/environment_variables.html @@ -83,7 +83,7 @@ diff --git a/docs/reference_http/native_compilation.html b/docs/reference_http/native_compilation.html index 07fd65a894..66dc38c3e9 100644 --- a/docs/reference_http/native_compilation.html +++ b/docs/reference_http/native_compilation.html @@ -83,7 +83,7 @@ diff --git a/docs/reference_http/reference.html b/docs/reference_http/reference.html index 9d20726966..6213e74c1d 100644 --- a/docs/reference_http/reference.html +++ b/docs/reference_http/reference.html @@ -83,7 +83,7 @@ diff --git a/docs/rest_based_examples.html b/docs/rest_based_examples.html index 875ee1840a..0d1e53b25a 100644 --- a/docs/rest_based_examples.html +++ b/docs/rest_based_examples.html @@ -83,7 +83,7 @@ diff --git a/docs/searchindex.js b/docs/searchindex.js index 91106f65a1..15f51263b6 100644 --- a/docs/searchindex.js +++ b/docs/searchindex.js @@ -1 +1 @@ -Object.assign(window.search, {"doc_urls":["the_azle_book.html#the-azle-book-beta","get_started.html#get-started","get_started.html#installation","get_started.html#deployment","rest_based_examples.html#examples","deployment.html#deployment","deployment.html#starting-the-local-replica","deployment.html#deploying-to-the-local-replica","deployment.html#interacting-with-your-canister","deployment.html#deploying-to-mainnet","deployment.html#common-deployment-issues","project_structure.html#project-structure-tldr","servers.html#servers-tldr","servers.html#servers","servers.html#nodejs-httpserver","servers.html#express","servers.html#jsonstringify","servers.html#server","servers.html#limitations","assets.html#assets-tldr","authentication.html#authentication-tldr","authentication.html#authentication","authentication.html#under-the-hood","debugging.html#debugging-tldr","debugging.html#debugging","debugging.html#consolelog-and-trycatch","debugging.html#canister-did-not-produce-a-response","debugging.html#no-error-message","debugging.html#final-compiled-and-bundled-javascript","limitations.html#limitations-tldr","reference_http/reference.html#reference","reference_http/autoreload.html#autoreload","reference_http/environment_variables.html#environment-variables","reference_http/environment_variables.html#azle_autoreload","reference_http/environment_variables.html#azle_dockerfile_hash","reference_http/environment_variables.html#azle_identity_storage_mode","reference_http/environment_variables.html#azle_instruction_count","reference_http/environment_variables.html#azle_proptest_num_runs","reference_http/environment_variables.html#azle_proptest_path","reference_http/environment_variables.html#azle_proptest_quiet","reference_http/environment_variables.html#azle_proptest_seed","reference_http/environment_variables.html#azle_proptest_verbose","reference_http/environment_variables.html#azle_test_fetch","reference_http/environment_variables.html#azle_use_dockerfile","reference_http/environment_variables.html#azle_verbose","reference_http/environment_variables.html#azle_wasmedge_quickjs_dir","reference_http/native_compilation.html#native-compilation-tldr","reference_http/native_compilation.html#native-compilation","candid_based_documentation.html#old-candid-based-documentation","azle.html#azle-beta","azle.html#disclaimer","azle.html#demergent-labs","azle.html#benefits-and-drawbacks","azle.html#benefits","azle.html#drawbacks","internet_computer_overview.html#internet-computer-overview","canisters_overview.html#canisters-overview","installation.html#installation","hello_world.html#hello-world","hello_world.html#quick-start","hello_world.html#methodical-start","hello_world.html#the-project-directory-and-file-structure","hello_world.html#indexts","hello_world.html#tsconfigjson","hello_world.html#dfxjson","hello_world.html#local-deployment","hello_world.html#common-deployment-issues","hello_world.html#interacting-with-your-canister-from-the-command-line","hello_world.html#interacting-with-your-canister-from-the-web-ui","deployment_candid_based.html#deployment","deployment_candid_based.html#starting-the-local-replica","deployment_candid_based.html#deploying-to-the-local-replica","deployment_candid_based.html#interacting-with-your-canister","deployment_candid_based.html#dfx-command-line","deployment_candid_based.html#dfx-web-ui","deployment_candid_based.html#dfinityagent","deployment_candid_based.html#deploying-to-mainnet","deployment_candid_based.html#common-deployment-issues","examples.html#examples","query_methods.html#query-methods","query_methods.html#tldr","update_methods.html#update-methods","update_methods.html#tldr","candid.html#candid","stable_structures.html#stable-structures","stable_structures.html#tldr","stable_structures.html#caveats","stable_structures.html#float64-values","stable_structures.html#candidtype-performance","stable_structures.html#migrations","stable_structures.html#canister","cross_canister.html#cross-canister","http.html#http","http.html#incoming-http-requests","http.html#outgoing-http-requests","management_canister.html#management-canister","canister_lifecycle.html#canister-lifecycle","timers.html#timers","cycles.html#cycles","caveats.html#caveats","caveats.html#unknown-security-vulnerabilities","caveats.html#npm-packages","caveats.html#javascript-environment-apis","caveats.html#high-candid-encodingdecoding-costs","caveats.html#promises","caveats.html#jsonparse-and-stablebtreemap-float64-values","reference/reference.html#reference","reference/bitcoin.html#bitcoin","reference/bitcoin.html#tecdsa","reference/bitcoin.html#bitcoin-integration","reference/bitcoin.html#ckbtc","reference/call_apis/call_apis.html#call-apis","reference/call_apis/accept_message.html#accept-message","reference/call_apis/arg_data_raw.html#arg-data-raw","reference/call_apis/arg_data_raw_size.html#arg-data-raw-size","reference/call_apis/call.html#call","reference/call_apis/call_raw.html#call-raw","reference/call_apis/call_raw128.html#call-raw-128","reference/call_apis/call_with_payment.html#call-with-payment","reference/call_apis/call_with_payment128.html#call-with-payment-128","reference/call_apis/caller.html#caller","reference/call_apis/method_name.html#method-name","reference/call_apis/msg_cycles_accept.html#msg-cycles-accept","reference/call_apis/msg_cycles_accept128.html#msg-cycles-accept-128","reference/call_apis/msg_cycles_available.html#msg-cycles-available","reference/call_apis/msg_cycles_available128.html#msg-cycles-available-128","reference/call_apis/msg_cycles_refunded.html#msg-cycles-refunded","reference/call_apis/msg_cycles_refunded128.html#msg-cycles-refunded-128","reference/call_apis/notify.html#notify","reference/call_apis/notify_raw.html#notify-raw","reference/call_apis/notify_with_payment_128.html#notify-with-payment-128","reference/call_apis/reject.html#reject","reference/call_apis/reject_code.html#reject-code","reference/call_apis/reject_message.html#reject-message","reference/call_apis/reply.html#reply","reference/call_apis/reply_raw.html#reply-raw","reference/candid/candid.html#candid","reference/candid/blob.html#blob","reference/candid/bool.html#bool","reference/candid/empty.html#empty","reference/candid/float32.html#float32","reference/candid/float64.html#float64","reference/candid/func.html#func","reference/candid/int.html#int","reference/candid/int8.html#int8","reference/candid/int16.html#int16","reference/candid/int32.html#int32","reference/candid/int64.html#int64","reference/candid/nat.html#nat","reference/candid/nat8.html#nat8","reference/candid/nat16.html#nat16","reference/candid/nat32.html#nat32","reference/candid/nat64.html#nat64","reference/candid/null.html#null","reference/candid/opt.html#opt","reference/candid/principal.html#principal","reference/candid/record.html#record","reference/candid/reserved.html#reserved","reference/candid/service.html#service","reference/candid/text.html#text","reference/candid/variant.html#variant","reference/candid/vec.html#vec","reference/canister_apis/canister_apis.html#canister-apis","reference/canister_apis/candid_decode.html#candid-decode","reference/canister_apis/candid_encode.html#candid-encode","reference/canister_apis/canister_balance.html#canister-balance","reference/canister_apis/canister_balance128.html#canister-balance-128","reference/canister_apis/canister_version.html#canister-version","reference/canister_apis/canister_id.html#canister-id","reference/canister_apis/data_certificate.html#data-certificate","reference/canister_apis/instruction_counter.html#instruction-counter","reference/canister_apis/is_controller.html#is-controller","reference/canister_apis/performance_counter.html#performance-counter","reference/canister_apis/print.html#print","reference/canister_apis/set_certified_data.html#set-certified-data","reference/canister_apis/time.html#time","reference/canister_apis/trap.html#trap","reference/canister_methods/canister_methods.html#canister-methods","reference/canister_methods/heartbeat.html#heartbeat","reference/canister_methods/http_request.html#http_request","reference/canister_methods/http_request_update.html#http_request","reference/canister_methods/init.html#init","reference/canister_methods/inspect_message.html#inspect-message","reference/canister_methods/post_upgrade.html#post-upgrade","reference/canister_methods/pre_upgrade.html#pre-upgrade","reference/canister_methods/query.html#query","reference/canister_methods/update.html#update","reference/environment_variables.html#environment-variables","reference/environment_variables.html#dfxjson","reference/environment_variables.html#processenv","reference/management_canister/management_canister.html#management-canister","reference/management_canister/bitcoin_get_balance.html#bitcoin_get_balance","reference/management_canister/bitcoin_get_current_fee_percentiles.html#bitcoin_get_current_fee_percentiles","reference/management_canister/bitcoin_get_utxos.html#bitcoin_get_utxos","reference/management_canister/bitcoin_send_transaction.html#bitcoin_send_transaction","reference/management_canister/canister_status.html#canister_status","reference/management_canister/create_canister.html#create_canister","reference/management_canister/delete_canister.html#delete_canister","reference/management_canister/deposit_cycles.html#deposit_cycles","reference/management_canister/ecdsa_public_key.html#ecdsa_public_key","reference/management_canister/http_request.html#http_request","reference/management_canister/install_code.html#install_code","reference/management_canister/provisional_create_canister_with_cycles.html#provisional_create_canister_with_cycles","reference/management_canister/provisional_top_up_canister.html#provisional_top_up_canister","reference/management_canister/raw_rand.html#raw_rand","reference/management_canister/sign_with_ecdsa.html#sign_with_ecdsa","reference/management_canister/start_canister.html#start_canister","reference/management_canister/stop_canister.html#stop_canister","reference/management_canister/uninstall_code.html#uninstall_code","reference/management_canister/update_settings.html#update_settings","reference/plugins.html#plugins","reference/plugins.html#local-plugin","reference/plugins.html#npm-plugin","reference/stable_memory/stable_memory.html#stable-memory","reference/stable_memory/stable_structures.html#stable-structures","reference/stable_memory/stable_bytes.html#stable-bytes","reference/stable_memory/stable_grow.html#stable-grow","reference/stable_memory/stable_read.html#stable-read","reference/stable_memory/stable_size.html#stable-size","reference/stable_memory/stable_write.html#stable-write","reference/stable_memory/stable64_grow.html#stable64-grow","reference/stable_memory/stable64_read.html#stable64-read","reference/stable_memory/stable64_size.html#stable64-size","reference/stable_memory/stable64_write.html#stable64-write","reference/timers/timers.html#timers","reference/timers/clear_timer.html#clear-timer","reference/timers/set_timer.html#set-timer","reference/timers/set_timer_interval.html#set-timer-interval","reference/wasm_binary_optimization.html#wasm-binary-optimization"],"index":{"documentStore":{"docInfo":{"0":{"body":155,"breadcrumbs":6,"title":3},"1":{"body":48,"breadcrumbs":2,"title":1},"10":{"body":75,"breadcrumbs":4,"title":3},"100":{"body":7,"breadcrumbs":8,"title":3},"101":{"body":36,"breadcrumbs":7,"title":2},"102":{"body":12,"breadcrumbs":8,"title":3},"103":{"body":27,"breadcrumbs":9,"title":4},"104":{"body":17,"breadcrumbs":6,"title":1},"105":{"body":17,"breadcrumbs":9,"title":4},"106":{"body":19,"breadcrumbs":6,"title":1},"107":{"body":15,"breadcrumbs":7,"title":1},"108":{"body":26,"breadcrumbs":7,"title":1},"109":{"body":27,"breadcrumbs":8,"title":2},"11":{"body":63,"breadcrumbs":5,"title":3},"110":{"body":30,"breadcrumbs":7,"title":1},"111":{"body":58,"breadcrumbs":9,"title":2},"112":{"body":17,"breadcrumbs":11,"title":2},"113":{"body":34,"breadcrumbs":13,"title":3},"114":{"body":36,"breadcrumbs":15,"title":4},"115":{"body":68,"breadcrumbs":9,"title":1},"116":{"body":39,"breadcrumbs":11,"title":2},"117":{"body":38,"breadcrumbs":13,"title":3},"118":{"body":47,"breadcrumbs":11,"title":2},"119":{"body":42,"breadcrumbs":13,"title":3},"12":{"body":42,"breadcrumbs":3,"title":2},"120":{"body":26,"breadcrumbs":9,"title":1},"121":{"body":46,"breadcrumbs":11,"title":2},"122":{"body":24,"breadcrumbs":13,"title":3},"123":{"body":24,"breadcrumbs":15,"title":4},"124":{"body":24,"breadcrumbs":13,"title":3},"125":{"body":24,"breadcrumbs":15,"title":4},"126":{"body":33,"breadcrumbs":13,"title":3},"127":{"body":33,"breadcrumbs":15,"title":4},"128":{"body":25,"breadcrumbs":9,"title":1},"129":{"body":28,"breadcrumbs":11,"title":2},"13":{"body":74,"breadcrumbs":2,"title":1},"130":{"body":24,"breadcrumbs":13,"title":3},"131":{"body":26,"breadcrumbs":9,"title":1},"132":{"body":25,"breadcrumbs":11,"title":2},"133":{"body":25,"breadcrumbs":11,"title":2},"134":{"body":33,"breadcrumbs":9,"title":1},"135":{"body":62,"breadcrumbs":11,"title":2},"136":{"body":25,"breadcrumbs":7,"title":1},"137":{"body":78,"breadcrumbs":8,"title":1},"138":{"body":54,"breadcrumbs":8,"title":1},"139":{"body":90,"breadcrumbs":8,"title":1},"14":{"body":47,"breadcrumbs":3,"title":2},"140":{"body":56,"breadcrumbs":8,"title":1},"141":{"body":56,"breadcrumbs":8,"title":1},"142":{"body":120,"breadcrumbs":8,"title":1},"143":{"body":56,"breadcrumbs":8,"title":1},"144":{"body":56,"breadcrumbs":8,"title":1},"145":{"body":56,"breadcrumbs":8,"title":1},"146":{"body":56,"breadcrumbs":8,"title":1},"147":{"body":56,"breadcrumbs":8,"title":1},"148":{"body":56,"breadcrumbs":8,"title":1},"149":{"body":56,"breadcrumbs":8,"title":1},"15":{"body":44,"breadcrumbs":2,"title":1},"150":{"body":56,"breadcrumbs":8,"title":1},"151":{"body":56,"breadcrumbs":8,"title":1},"152":{"body":56,"breadcrumbs":8,"title":1},"153":{"body":55,"breadcrumbs":8,"title":1},"154":{"body":79,"breadcrumbs":8,"title":1},"155":{"body":69,"breadcrumbs":8,"title":1},"156":{"body":95,"breadcrumbs":8,"title":1},"157":{"body":54,"breadcrumbs":8,"title":1},"158":{"body":100,"breadcrumbs":8,"title":1},"159":{"body":57,"breadcrumbs":8,"title":1},"16":{"body":60,"breadcrumbs":2,"title":1},"160":{"body":103,"breadcrumbs":8,"title":1},"161":{"body":90,"breadcrumbs":8,"title":1},"162":{"body":26,"breadcrumbs":9,"title":2},"163":{"body":27,"breadcrumbs":11,"title":2},"164":{"body":30,"breadcrumbs":11,"title":2},"165":{"body":25,"breadcrumbs":11,"title":2},"166":{"body":25,"breadcrumbs":13,"title":3},"167":{"body":23,"breadcrumbs":11,"title":2},"168":{"body":26,"breadcrumbs":11,"title":2},"169":{"body":35,"breadcrumbs":11,"title":2},"17":{"body":146,"breadcrumbs":2,"title":1},"170":{"body":27,"breadcrumbs":11,"title":2},"171":{"body":27,"breadcrumbs":9,"title":1},"172":{"body":19,"breadcrumbs":11,"title":2},"173":{"body":29,"breadcrumbs":9,"title":1},"174":{"body":26,"breadcrumbs":13,"title":3},"175":{"body":23,"breadcrumbs":9,"title":1},"176":{"body":35,"breadcrumbs":9,"title":1},"177":{"body":12,"breadcrumbs":9,"title":2},"178":{"body":21,"breadcrumbs":9,"title":1},"179":{"body":105,"breadcrumbs":9,"title":1},"18":{"body":43,"breadcrumbs":2,"title":1},"180":{"body":105,"breadcrumbs":9,"title":1},"181":{"body":26,"breadcrumbs":9,"title":1},"182":{"body":46,"breadcrumbs":11,"title":2},"183":{"body":19,"breadcrumbs":11,"title":2},"184":{"body":19,"breadcrumbs":11,"title":2},"185":{"body":17,"breadcrumbs":9,"title":1},"186":{"body":25,"breadcrumbs":9,"title":1},"187":{"body":25,"breadcrumbs":9,"title":2},"188":{"body":40,"breadcrumbs":8,"title":1},"189":{"body":27,"breadcrumbs":8,"title":1},"19":{"body":180,"breadcrumbs":3,"title":2},"190":{"body":20,"breadcrumbs":9,"title":2},"191":{"body":39,"breadcrumbs":9,"title":1},"192":{"body":35,"breadcrumbs":9,"title":1},"193":{"body":39,"breadcrumbs":9,"title":1},"194":{"body":44,"breadcrumbs":9,"title":1},"195":{"body":29,"breadcrumbs":9,"title":1},"196":{"body":30,"breadcrumbs":9,"title":1},"197":{"body":30,"breadcrumbs":9,"title":1},"198":{"body":32,"breadcrumbs":9,"title":1},"199":{"body":50,"breadcrumbs":9,"title":1},"2":{"body":93,"breadcrumbs":2,"title":1},"20":{"body":221,"breadcrumbs":3,"title":2},"200":{"body":56,"breadcrumbs":9,"title":1},"201":{"body":43,"breadcrumbs":9,"title":1},"202":{"body":31,"breadcrumbs":9,"title":1},"203":{"body":35,"breadcrumbs":9,"title":1},"204":{"body":27,"breadcrumbs":9,"title":1},"205":{"body":57,"breadcrumbs":9,"title":1},"206":{"body":30,"breadcrumbs":9,"title":1},"207":{"body":30,"breadcrumbs":9,"title":1},"208":{"body":30,"breadcrumbs":9,"title":1},"209":{"body":40,"breadcrumbs":9,"title":1},"21":{"body":3,"breadcrumbs":2,"title":1},"210":{"body":40,"breadcrumbs":7,"title":1},"211":{"body":9,"breadcrumbs":8,"title":2},"212":{"body":12,"breadcrumbs":8,"title":2},"213":{"body":20,"breadcrumbs":9,"title":2},"214":{"body":98,"breadcrumbs":11,"title":2},"215":{"body":19,"breadcrumbs":11,"title":2},"216":{"body":20,"breadcrumbs":11,"title":2},"217":{"body":24,"breadcrumbs":11,"title":2},"218":{"body":19,"breadcrumbs":11,"title":2},"219":{"body":24,"breadcrumbs":11,"title":2},"22":{"body":91,"breadcrumbs":3,"title":2},"220":{"body":20,"breadcrumbs":11,"title":2},"221":{"body":24,"breadcrumbs":11,"title":2},"222":{"body":19,"breadcrumbs":11,"title":2},"223":{"body":24,"breadcrumbs":11,"title":2},"224":{"body":7,"breadcrumbs":7,"title":1},"225":{"body":20,"breadcrumbs":10,"title":2},"226":{"body":42,"breadcrumbs":10,"title":2},"227":{"body":44,"breadcrumbs":12,"title":3},"228":{"body":94,"breadcrumbs":11,"title":3},"23":{"body":42,"breadcrumbs":3,"title":2},"24":{"body":28,"breadcrumbs":2,"title":1},"25":{"body":14,"breadcrumbs":3,"title":2},"26":{"body":99,"breadcrumbs":4,"title":3},"27":{"body":340,"breadcrumbs":3,"title":2},"28":{"body":54,"breadcrumbs":5,"title":4},"29":{"body":74,"breadcrumbs":3,"title":2},"3":{"body":74,"breadcrumbs":2,"title":1},"30":{"body":5,"breadcrumbs":2,"title":1},"31":{"body":106,"breadcrumbs":3,"title":1},"32":{"body":13,"breadcrumbs":5,"title":2},"33":{"body":12,"breadcrumbs":4,"title":1},"34":{"body":26,"breadcrumbs":4,"title":1},"35":{"body":3,"breadcrumbs":4,"title":1},"36":{"body":11,"breadcrumbs":4,"title":1},"37":{"body":3,"breadcrumbs":4,"title":1},"38":{"body":3,"breadcrumbs":4,"title":1},"39":{"body":3,"breadcrumbs":4,"title":1},"4":{"body":26,"breadcrumbs":2,"title":1},"40":{"body":3,"breadcrumbs":4,"title":1},"41":{"body":3,"breadcrumbs":4,"title":1},"42":{"body":3,"breadcrumbs":4,"title":1},"43":{"body":15,"breadcrumbs":4,"title":1},"44":{"body":9,"breadcrumbs":4,"title":1},"45":{"body":13,"breadcrumbs":4,"title":1},"46":{"body":19,"breadcrumbs":6,"title":3},"47":{"body":174,"breadcrumbs":5,"title":2},"48":{"body":66,"breadcrumbs":8,"title":4},"49":{"body":24,"breadcrumbs":8,"title":2},"5":{"body":42,"breadcrumbs":2,"title":1},"50":{"body":31,"breadcrumbs":7,"title":1},"51":{"body":20,"breadcrumbs":8,"title":2},"52":{"body":21,"breadcrumbs":8,"title":2},"53":{"body":866,"breadcrumbs":7,"title":1},"54":{"body":361,"breadcrumbs":7,"title":1},"55":{"body":137,"breadcrumbs":10,"title":3},"56":{"body":104,"breadcrumbs":8,"title":2},"57":{"body":93,"breadcrumbs":6,"title":1},"58":{"body":68,"breadcrumbs":8,"title":2},"59":{"body":80,"breadcrumbs":8,"title":2},"6":{"body":73,"breadcrumbs":4,"title":3},"60":{"body":0,"breadcrumbs":8,"title":2},"61":{"body":43,"breadcrumbs":10,"title":4},"62":{"body":271,"breadcrumbs":7,"title":1},"63":{"body":14,"breadcrumbs":7,"title":1},"64":{"body":19,"breadcrumbs":7,"title":1},"65":{"body":14,"breadcrumbs":8,"title":2},"66":{"body":9,"breadcrumbs":9,"title":3},"67":{"body":36,"breadcrumbs":10,"title":4},"68":{"body":44,"breadcrumbs":10,"title":4},"69":{"body":39,"breadcrumbs":6,"title":1},"7":{"body":27,"breadcrumbs":4,"title":3},"70":{"body":65,"breadcrumbs":8,"title":3},"71":{"body":12,"breadcrumbs":8,"title":3},"72":{"body":13,"breadcrumbs":7,"title":2},"73":{"body":59,"breadcrumbs":8,"title":3},"74":{"body":39,"breadcrumbs":8,"title":3},"75":{"body":21,"breadcrumbs":6,"title":1},"76":{"body":22,"breadcrumbs":7,"title":2},"77":{"body":64,"breadcrumbs":8,"title":3},"78":{"body":51,"breadcrumbs":6,"title":1},"79":{"body":0,"breadcrumbs":8,"title":2},"8":{"body":65,"breadcrumbs":3,"title":2},"80":{"body":304,"breadcrumbs":7,"title":1},"81":{"body":0,"breadcrumbs":8,"title":2},"82":{"body":483,"breadcrumbs":7,"title":1},"83":{"body":421,"breadcrumbs":6,"title":1},"84":{"body":0,"breadcrumbs":8,"title":2},"85":{"body":794,"breadcrumbs":7,"title":1},"86":{"body":0,"breadcrumbs":7,"title":1},"87":{"body":12,"breadcrumbs":8,"title":2},"88":{"body":50,"breadcrumbs":8,"title":2},"89":{"body":25,"breadcrumbs":7,"title":1},"9":{"body":28,"breadcrumbs":3,"title":2},"90":{"body":24,"breadcrumbs":7,"title":1},"91":{"body":538,"breadcrumbs":8,"title":2},"92":{"body":3,"breadcrumbs":6,"title":1},"93":{"body":102,"breadcrumbs":8,"title":3},"94":{"body":149,"breadcrumbs":8,"title":3},"95":{"body":32,"breadcrumbs":8,"title":2},"96":{"body":29,"breadcrumbs":8,"title":2},"97":{"body":163,"breadcrumbs":6,"title":1},"98":{"body":83,"breadcrumbs":6,"title":1},"99":{"body":0,"breadcrumbs":6,"title":1}},"docs":{"0":{"body":"Welcome to The Azle Book! This is a guide for building secure decentralized/replicated servers in TypeScript or JavaScript on ICP . The current replication factor is 13-40 times . Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP The Azle Book is subject to the following license and Azle's License Extension : MIT License Copyright (c) 2024 AZLE token holders (nlhft-2iaaa-aaaae-qaaua-cai) Permission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.","breadcrumbs":"The Azle Book (Beta) » The Azle Book (Beta)","id":"0","title":"The Azle Book (Beta)"},"1":{"body":"Installation Deployment Azle helps you to build secure decentralized/replicated servers in TypeScript or JavaScript on ICP . The current replication factor is 13-40 times . Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP","breadcrumbs":"Get Started » Get Started","id":"1","title":"Get Started"},"10":{"body":"If you run into an error during deployment, try the following: Ensure that you have followed the installation instructions exactly as specified in the Get Started chapter Start the whole deployment process from scratch and look for more error output by doing the following: In your replica terminal: Terminate the replica in your terminal or run dfx stop if your replica is running in the background dfx start --clean --host 127.0.0.1:8000 In your project terminal at the root directory of your project: rm -rf node_modules npm install npx azle clean AZLE_VERBOSE=true dfx deploy If the build process hangs on Waiting for VM ..., see this issue for possible fixes If the problem is still not resolved, reach out with the error output in the Discord channel","breadcrumbs":"Deployment » Common deployment issues","id":"10","title":"Common deployment issues"},"100":{"body":"Azle is a beta project. See the disclaimer for more information.","breadcrumbs":"Old Candid-based Documentation » Caveats » Unknown security vulnerabilities","id":"100","title":"Unknown security vulnerabilities"},"101":{"body":"Some npm packages will work and some will not work. It is our long-term goal to support as many npm packages as possible. There are various reasons why an npm package may not currently work, including the small Wasm binary limit of the IC and unimplemented web or Node.js APIs. Feel free to open issues if your npm package does not work in Azle.","breadcrumbs":"Old Candid-based Documentation » Caveats » npm packages","id":"101","title":"npm packages"},"102":{"body":"You may encounter various missing JavaScript environment APIs, such as those you would expect in the web or Node.js environments.","breadcrumbs":"Old Candid-based Documentation » Caveats » JavaScript environment APIs","id":"102","title":"JavaScript environment APIs"},"103":{"body":"Candid encoding/decoding is currently very unoptimized. This will most likely lead to a ~1-2 million extra fixed instruction cost for all calls. Be careful using CandidType Serializable objects with StableBTreeMap, or using any other API or data structure that engages in Candid encoding/decoding.","breadcrumbs":"Old Candid-based Documentation » Caveats » High Candid encoding/decoding costs","id":"103","title":"High Candid encoding/decoding costs"},"104":{"body":"Though promises are implemented, the underlying queue that handles asynchronous operations is very simple. This queue will not behave exactly as queues from the major JS engines.","breadcrumbs":"Old Candid-based Documentation » Caveats » Promises","id":"104","title":"Promises"},"105":{"body":"It seems to be only some float64 values cannot be successfully stored and retrieved with a StableBTreeMap using stableJson because of this bug with JSON.parse: https://github.com/bellard/quickjs/issues/206 This will also affect stand-alone usage of JSON.parse.","breadcrumbs":"Old Candid-based Documentation » Caveats » JSON.parse and StableBTreeMap float64 values","id":"105","title":"JSON.parse and StableBTreeMap float64 values"},"106":{"body":"Bitcoin Call APIs Candid Canister APIs Canister Methods Environment Variables Management Canister Plugins Stable Memory Timers Wasm Binary Optimization","breadcrumbs":"Old Candid-based Documentation » Reference » Reference","id":"106","title":"Reference"},"107":{"body":"The Internet Computer (IC) interacts with the Bitcoin blockchain through the use of tECDSA, the Bitcoin integration, and a ledger canister called ckBTC.","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » Bitcoin","id":"107","title":"Bitcoin"},"108":{"body":"tECDSA on the IC allows canisters to request access to threshold ECDSA keypairs on the tECDSA subnet. This functionality is exposed through two management canister methods: ecdsa_public_key sign_with_ecdsa The following are examples using tECDSA: basic_bitcoin threshold_ecdsa","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » tECDSA","id":"108","title":"tECDSA"},"109":{"body":"The Bitcoin integration allows canisters on the IC to interact directly with the Bitcoin network. This functionality is exposed through the following management canister methods: bitcoin_get_balance bitcoin_get_current_fee_percentiles bitcoin_get_utxos bitcoin_send_transaction The following are examples using the Bitcoin integration: basic_bitcoin bitcoin","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » Bitcoin integration","id":"109","title":"Bitcoin integration"},"11":{"body":"Your project is just a directory with a dfx.json file that points to your .ts or .js entrypoint. Here's what your directory structure might look like: hello_world/\n|\n├── dfx.json\n|\n└── src/ └── api.ts And the corresponding dfx.json file: { \"canisters\": { \"api\": { \"type\": \"custom\", \"main\": \"src/api.ts\", \"candid\": \"src/api.did\", \"candid_gen\": \"http\", \"build\": \"npx azle api\", \"wasm\": \".azle/api/api.wasm\", \"gzip\": true, \"metadata\": [ { \"name\": \"candid:service\", \"path\": \"src/api.did\" }, { \"name\": \"cdk:name\", \"content\": \"azle\" } ] } }\n} Once you have created this directory structure you can deploy to mainnet or a locally running replica by running the dfx deploy command in the same directory as your dfx.json file.","breadcrumbs":"Project Structure » Project Structure TL;DR","id":"11","title":"Project Structure TL;DR"},"110":{"body":"ckBTC is a ledger canister deployed to the IC. It follows the ICRC standard, and can be accessed easily from an Azle canister using azle/canisters/ICRC if you only need the ICRC methods. For access to the full ledger methods you will need to create your own Service for now. The following are examples using ckBTC: ckBTC","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » ckBTC","id":"110","title":"ckBTC"},"111":{"body":"accept message arg data raw arg data raw size call call raw call raw 128 call with payment call with payment 128 caller method name msg cycles accept msg cycles accept 128 msg cycles available msg cycles available 128 msg cycles refunded msg cycles refunded 128 notify notify raw notify with payment 128 reject reject code reject message reply reply raw","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » Call APIs","id":"111","title":"Call APIs"},"112":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { Canister, ic, inspectMessage } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { ic.acceptMessage(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » accept message » accept message","id":"112","title":"accept message"},"113":{"body":"This section is a work in progress. Examples: ic_api import { blob, bool, Canister, ic, int8, query, text } from 'azle'; export default Canister({ // returns the argument data as bytes. argDataRaw: query( [blob, int8, bool, text], blob, (arg1, arg2, arg3, arg4) => { return ic.argDataRaw(); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » arg data raw » arg data raw","id":"113","title":"arg data raw"},"114":{"body":"This section is a work in progress. Examples: ic_api import { blob, bool, Canister, ic, int8, nat, query, text } from 'azle'; export default Canister({ // returns the length of the argument data in bytes argDataRawSize: query( [blob, int8, bool, text], nat, (arg1, arg2, arg3, arg4) => { return ic.argDataRawSize(); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » arg data raw size » arg data raw size","id":"114","title":"arg data raw size"},"115":{"body":"This section is a work in progress. Examples: async_await bitcoin composite_queries cross_canister_calls cycles ethereum_json_rpc func_types heartbeat inline_types ledger_canister management_canister outgoing_http_requests threshold_ecdsa rejections timers tuple_types whoami import { Canister, ic, init, nat64, Principal, update } from 'azle'; const TokenCanister = Canister({ transfer: update([Principal, nat64], nat64)\n}); let tokenCanister: typeof TokenCanister; export default Canister({ init: init([], setup), postDeploy: init([], setup), payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); function setup() { tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai') );\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call » call","id":"115","title":"call"},"116":{"body":"This section is a work in progress. Examples: call_raw outgoing_http_requests import { Canister, ic, nat64, Principal, text, update } from 'azle'; export default Canister({ executeCallRaw: update( [Principal, text, text, nat64], text, async (canisterId, method, candidArgs, payment) => { const candidBytes = await ic.callRaw( canisterId, method, ic.candidEncode(candidArgs), payment ); return ic.candidDecode(candidBytes); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call raw » call raw","id":"116","title":"call raw"},"117":{"body":"This section is a work in progress. Examples: call_raw import { Canister, ic, nat, Principal, text, update } from 'azle'; export default Canister({ executeCallRaw128: update( [Principal, text, text, nat], text, async (canisterId, method, candidArgs, payment) => { const candidBytes = await ic.callRaw128( canisterId, method, ic.candidEncode(candidArgs), payment ); return ic.candidDecode(candidBytes); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call raw 128 » call raw 128","id":"117","title":"call raw 128"},"118":{"body":"This section is a work in progress. Examples: bitcoin cycles ethereum_json_rpc management_canister outgoing_http_requests threshold_ecdsa import { blob, Canister, ic, Principal, update, Void } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], Void, async (canisterId, wasmModule) => { return await ic.call(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call with payment » call with payment","id":"118","title":"call with payment"},"119":{"body":"This section is a work in progress. Examples: cycles import { blob, Canister, ic, Principal, update, Void } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], Void, async (canisterId, wasmModule) => { return await ic.call128(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call with payment 128 » call with payment 128","id":"119","title":"call with payment 128"},"12":{"body":"Just write Node.js servers like this: import { createServer } from 'http'; const server = createServer((req, res) => { res.write('Hello World!'); res.end();\n}); server.listen(); or write Express servers like this: import express, { Request } from 'express'; let db = { hello: ''\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.json(db);\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.json(db);\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » Servers TL;DR","id":"12","title":"Servers TL;DR"},"120":{"body":"This section is a work in progress. Examples: ic_api threshold_ecdsa whoami import { Canister, ic, Principal, update } from 'azle'; export default Canister({ // returns the principal of the identity that called this function caller: update([], Principal, () => { return ic.caller(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » caller » caller","id":"120","title":"caller"},"121":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { bool, Canister, ic, inspectMessage, update } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { console.log('inspectMessage called'); if (ic.methodName() === 'accessible') { ic.acceptMessage(); return; } if (ic.methodName() === 'inaccessible') { return; } throw `Method \"${ic.methodName()}\" not allowed`; }), accessible: update([], bool, () => { return true; }), inaccessible: update([], bool, () => { return false; }), alsoInaccessible: update([], bool, () => { return false; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » method name » method name","id":"121","title":"method name"},"122":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles: update([], nat64, () => { return ic.msgCyclesAccept(ic.msgCyclesAvailable() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles accept » msg cycles accept","id":"122","title":"msg cycles accept"},"123":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles128: update([], nat64, () => { return ic.msgCyclesAccept128(ic.msgCyclesAvailable128() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles accept 128 » msg cycles accept 128","id":"123","title":"msg cycles accept 128"},"124":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles: update([], nat64, () => { return ic.msgCyclesAccept(ic.msgCyclesAvailable() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles available » msg cycles available","id":"124","title":"msg cycles available"},"125":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles128: update([], nat64, () => { return ic.msgCyclesAccept128(ic.msgCyclesAvailable128() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles available 128 » msg cycles available 128","id":"125","title":"msg cycles available 128"},"126":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ // Reports the number of cycles returned from the Cycles canister sendCycles: update([], nat64, async () => { await ic.call(otherCanister.receiveCycles, { cycles: 1_000_000n }); return ic.msgCyclesRefunded(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles refunded » msg cycles refunded","id":"126","title":"msg cycles refunded"},"127":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ // Reports the number of cycles returned from the Cycles canister sendCycles128: update([], nat64, async () => { await ic.call128(otherCanister.receiveCycles128, { cycles: 1_000_000n }); return ic.msgCyclesRefunded128(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles refunded 128 » msg cycles refunded 128","id":"127","title":"msg cycles refunded 128"},"128":{"body":"This section is a work in progress. Examples: cross_canister_calls cycles import { Canister, ic, update, Void } from 'azle';\nimport { otherCanister } from './otherCanister'; export default Canister({ sendNotification: update([], Void, () => { return ic.notify(otherCanister.receiveNotification, { args: ['This is the notification'] }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify » notify","id":"128","title":"notify"},"129":{"body":"This section is a work in progress. Examples: notify_raw import { Canister, ic, Principal, update, Void } from 'azle'; export default Canister({ sendNotification: update([], Void, () => { return ic.notifyRaw( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai'), 'receiveNotification', Uint8Array.from(ic.candidEncode('()')), 0n ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify raw » notify raw","id":"129","title":"notify raw"},"13":{"body":"Node.js http.server Express Server Limitations Azle supports building HTTP servers on ICP using the Node.js http.Server class as the foundation. These servers can serve static files or act as API backends, or both. Azle currently has good but not comprehensive support for Node.js http.Server and Express . Support for other libraries like Nest are works-in-progress. Once deployed you can access your server at a URL like this locally http://bkyz2-fmaaa-aaaaa-qaaaq-cai.localhost:8000 or like this on mainnet https://bkyz2-fmaaa-aaaaa-qaaaq-cai.raw.icp0.io. You can use any HTTP client to interact with your server, such as curl, fetch, or a web browser. See the Interacting with your canister section of the deployment chapter for help in constructing your canister URL.","breadcrumbs":"Servers » Servers","id":"13","title":"Servers"},"130":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, update, Void } from 'azle';\nimport { otherCanister } from './otherCanister'; export default Canister({ sendCycles128Notify: update([], Void, () => { return ic.notify(otherCanister.receiveCycles128, { cycles: 1_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify with payment 128 » notify with payment 128","id":"130","title":"notify with payment 128"},"131":{"body":"This section is a work in progress. Examples: ic_api manual_reply rejections import { Canister, empty, ic, Manual, query, text } from 'azle'; export default Canister({ reject: query( [text], Manual(empty), (message) => { ic.reject(message); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject » reject","id":"131","title":"reject"},"132":{"body":"This section is a work in progress. Examples: rejections import { Canister, ic, RejectionCode, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ getRejectionCodeDestinationInvalid: update([], RejectionCode, async () => { await ic.call(otherCanister.method); return ic.rejectCode(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject code » reject code","id":"132","title":"reject code"},"133":{"body":"This section is a work in progress. Examples: rejections import { Canister, ic, text, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ getRejectionMessage: update([], text, async () => { await ic.call(otherCanister.method); return ic.rejectMessage(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject message » reject message","id":"133","title":"reject message"},"134":{"body":"This section is a work in progress. Examples: composite_queries manual_reply import { blob, Canister, ic, Manual, update } from 'azle'; export default Canister({ updateBlob: update( [], Manual(blob), () => { ic.reply( new Uint8Array([83, 117, 114, 112, 114, 105, 115, 101, 33]), blob ); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reply » reply","id":"134","title":"reply"},"135":{"body":"This section is a work in progress. Examples: manual_reply outgoing_http_requests import { blob, bool, Canister, ic, int, Manual, Null, Record, text, update, Variant\n} from 'azle'; const Options = Variant({ High: Null, Medium: Null, Low: Null\n}); export default Canister({ replyRaw: update( [], Manual( Record({ int: int, text: text, bool: bool, blob: blob, variant: Options }) ), () => { ic.replyRaw( ic.candidEncode( '(record { \"int\" = 42; \"text\" = \"text\"; \"bool\" = true; \"blob\" = blob \"Surprise!\"; \"variant\" = variant { Medium } })' ) ); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reply raw » reply raw","id":"135","title":"reply raw"},"136":{"body":"blob bool empty float32 float64 func int int8 int16 int32 int64 nat nat8 nat16 nat32 nat64 null opt principal record reserved service text variant vec","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » Candid","id":"136","title":"Candid"},"137":{"body":"The CandidType object blob corresponds to the Candid type blob , is inferred to be a TypeScript Uint8Array and will be decoded into a JavaScript Uint8Array at runtime. TypeScript or JavaScript: import { blob, Canister, query } from 'azle'; export default Canister({ getBlob: query([], blob, () => { return Uint8Array.from([68, 73, 68, 76, 0, 0]); }), printBlob: query([blob], blob, (blob) => { console.log(typeof blob); return blob; })\n}); Candid: service : () -> { getBlob : () -> (vec nat8) query; printBlob : (vec nat8) -> (vec nat8) query;\n} dfx: dfx canister call candid_canister printBlob '(vec { 68; 73; 68; 76; 0; 0; })'\n(blob \"DIDL\\00\\00\") dfx canister call candid_canister printBlob '(blob \"DIDL\\00\\00\")'\n(blob \"DIDL\\00\\00\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » blob » blob","id":"137","title":"blob"},"138":{"body":"The CandidType object bool corresponds to the Candid type bool , is inferred to be a TypeScript boolean, and will be decoded into a JavaScript Boolean at runtime. TypeScript or JavaScript: import { bool, Canister, query } from 'azle'; export default Canister({ getBool: query([], bool, () => { return true; }), printBool: query([bool], bool, (bool) => { console.log(typeof bool); return bool; })\n}); Candid: service : () -> { getBool : () -> (bool) query; printBool : (bool) -> (bool) query;\n} dfx: dfx canister call candid_canister printBool '(true)'\n(true)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » bool » bool","id":"138","title":"bool"},"139":{"body":"The CandidType object empty corresponds to the Candid type empty , is inferred to be a TypeScript never, and has no JavaScript value at runtime. TypeScript or JavaScript: import { Canister, empty, query } from 'azle'; export default Canister({ getEmpty: query([], empty, () => { throw 'Anything you want'; }), // Note: It is impossible to call this function because it requires an argument // but there is no way to pass an \"empty\" value as an argument. printEmpty: query([empty], empty, (empty) => { console.log(typeof empty); throw 'Anything you want'; })\n}); Candid: service : () -> { getEmpty : () -> (empty) query; printEmpty : (empty) -> (empty) query;\n} dfx: dfx canister call candid_canister printEmpty '(\"You can put anything here\")'\nError: Failed to create argument blob.\nCaused by: Failed to create argument blob. Invalid data: Unable to serialize Candid values: type mismatch: \"You can put anything here\" cannot be of type empty","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » empty » empty","id":"139","title":"empty"},"14":{"body":"Azle supports instances of Node.js http.Server . listen() must be called on the server instance for Azle to use it to handle HTTP requests. Azle does not respect a port being passed into listen(). The port is set by the ICP replica (e.g. dfx start --host 127.0.0.1:8000), not by Azle. Here's an example of a very simple Node.js http.Server : import { createServer } from 'http'; const server = createServer((req, res) => { res.write('Hello World!'); res.end();\n}); server.listen();","breadcrumbs":"Servers » Node.js http.server","id":"14","title":"Node.js http.server"},"140":{"body":"The CandidType object float32 corresponds to the Candid type float32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, float32, query } from 'azle'; export default Canister({ getFloat32: query([], float32, () => { return Math.PI; }), printFloat32: query([float32], float32, (float32) => { console.log(typeof float32); return float32; })\n}); Candid: service : () -> { getFloat32 : () -> (float32) query; printFloat32 : (float32) -> (float32) query;\n} dfx: dfx canister call candid_canister printFloat32 '(3.1415927 : float32)'\n(3.1415927 : float32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » float32 » float32","id":"140","title":"float32"},"141":{"body":"The CandidType object float64 corresponds to the Candid type float64 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, float64, query } from 'azle'; export default Canister({ getFloat64: query([], float64, () => { return Math.E; }), printFloat64: query([float64], float64, (float64) => { console.log(typeof float64); return float64; })\n}); Candid: service : () -> { getFloat64 : () -> (float64) query; printFloat64 : (float64) -> (float64) query;\n} dfx: dfx canister call candid_canister printFloat64 '(2.718281828459045 : float64)'\n(2.718281828459045 : float64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » float64 » float64","id":"141","title":"float64"},"142":{"body":"Values created by the CandidType function Func correspond to the Candid type func , are inferred to be TypeScript [Principal, string] tuples, and will be decoded into JavaScript array with two elements at runtime. The first element is an @dfinity/principal and the second is a JavaScript string . The @dfinity/principal represents the principal of the canister/service where the function exists, and the string represents the function's name. A func acts as a callback, allowing the func receiver to know which canister instance and method must be used to call back. TypeScript or JavaScript: import { Canister, Func, Principal, query, text } from 'azle'; const BasicFunc = Func([text], text, 'query'); export default Canister({ getBasicFunc: query([], BasicFunc, () => { return [ Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'), 'getBasicFunc' ]; }), printBasicFunc: query([BasicFunc], BasicFunc, (basicFunc) => { console.log(typeof basicFunc); return basicFunc; })\n}); Candid: service : () -> { getBasicFunc : () -> (func (text) -> (text) query) query; printBasicFunc : (func (text) -> (text) query) -> ( func (text) -> (text) query, ) query;\n} dfx: dfx canister call candid_canister printBasicFunc '(func \"r7inp-6aaaa-aaaaa-aaabq-cai\".getBasicFunc)'\n(func \"r7inp-6aaaa-aaaaa-aaabq-cai\".getBasicFunc)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » func » func","id":"142","title":"func"},"143":{"body":"The CandidType object int corresponds to the Candid type int , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, int, query } from 'azle'; export default Canister({ getInt: query([], int, () => { return 170_141_183_460_469_231_731_687_303_715_884_105_727n; }), printInt: query([int], int, (int) => { console.log(typeof int); return int; })\n}); Candid: service : () -> { getInt : () -> (int) query; printInt : (int) -> (int) query;\n} dfx: dfx canister call candid_canister printInt '(170_141_183_460_469_231_731_687_303_715_884_105_727 : int)'\n(170_141_183_460_469_231_731_687_303_715_884_105_727 : int)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int » int","id":"143","title":"int"},"144":{"body":"The CandidType object int8 corresponds to the Candid type int8 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int8, query } from 'azle'; export default Canister({ getInt8: query([], int8, () => { return 127; }), printInt8: query([int8], int8, (int8) => { console.log(typeof int8); return int8; })\n}); Candid: service : () -> { getInt8 : () -> (int8) query; printInt8 : (int8) -> (int8) query;\n} dfx: dfx canister call candid_canister printInt8 '(127 : int8)'\n(127 : int8)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int8 » int8","id":"144","title":"int8"},"145":{"body":"The CandidType object int16 corresponds to the Candid type int16 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int16, query } from 'azle'; export default Canister({ getInt16: query([], int16, () => { return 32_767; }), printInt16: query([int16], int16, (int16) => { console.log(typeof int16); return int16; })\n}); Candid: service : () -> { getInt16 : () -> (int16) query; printInt16 : (int16) -> (int16) query;\n} dfx: dfx canister call candid_canister printInt16 '(32_767 : int16)'\n(32_767 : int16)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int16 » int16","id":"145","title":"int16"},"146":{"body":"The CandidType object int32 corresponds to the Candid type int32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int32, query } from 'azle'; export default Canister({ getInt32: query([], int32, () => { return 2_147_483_647; }), printInt32: query([int32], int32, (int32) => { console.log(typeof int32); return int32; })\n}); Candid: service : () -> { getInt32 : () -> (int32) query; printInt32 : (int32) -> (int32) query;\n} dfx: dfx canister call candid_canister printInt32 '(2_147_483_647 : int32)'\n(2_147_483_647 : int32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int32 » int32","id":"146","title":"int32"},"147":{"body":"The CandidType object int64 corresponds to the Candid type int64 , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, int64, query } from 'azle'; export default Canister({ getInt64: query([], int64, () => { return 9_223_372_036_854_775_807n; }), printInt64: query([int64], int64, (int64) => { console.log(typeof int64); return int64; })\n}); Candid: service : () -> { getInt64 : () -> (int64) query; printInt64 : (int64) -> (int64) query;\n} dfx: dfx canister call candid_canister printInt64 '(9_223_372_036_854_775_807 : int64)'\n(9_223_372_036_854_775_807 : int64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int64 » int64","id":"147","title":"int64"},"148":{"body":"The CandidType object nat corresponds to the Candid type nat , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, nat, query } from 'azle'; export default Canister({ getNat: query([], nat, () => { return 340_282_366_920_938_463_463_374_607_431_768_211_455n; }), printNat: query([nat], nat, (nat) => { console.log(typeof nat); return nat; })\n}); Candid: service : () -> { getNat : () -> (nat) query; printNat : (nat) -> (nat) query;\n} dfx: dfx canister call candid_canister printNat '(340_282_366_920_938_463_463_374_607_431_768_211_455 : nat)'\n(340_282_366_920_938_463_463_374_607_431_768_211_455 : nat)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat » nat","id":"148","title":"nat"},"149":{"body":"The CandidType object nat8 corresponds to the Candid type nat8 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat8, query } from 'azle'; export default Canister({ getNat8: query([], nat8, () => { return 255; }), printNat8: query([nat8], nat8, (nat8) => { console.log(typeof nat8); return nat8; })\n}); Candid: service : () -> { getNat8 : () -> (nat8) query; printNat8 : (nat8) -> (nat8) query;\n} dfx: dfx canister call candid_canister printNat8 '(255 : nat8)'\n(255 : nat8)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat8 » nat8","id":"149","title":"nat8"},"15":{"body":"Express is one of the most popular backend JavaScript web frameworks, and it's the recommended way to get started building servers in Azle. Here's the main code from the hello_world example : import express, { Request } from 'express'; let db = { hello: ''\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.json(db);\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.json(db);\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » Express","id":"15","title":"Express"},"150":{"body":"The CandidType object nat16 corresponds to the Candid type nat16 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat16, query } from 'azle'; export default Canister({ getNat16: query([], nat16, () => { return 65_535; }), printNat16: query([nat16], nat16, (nat16) => { console.log(typeof nat16); return nat16; })\n}); Candid: service : () -> { getNat16 : () -> (nat16) query; printNat16 : (nat16) -> (nat16) query;\n} dfx: dfx canister call candid_canister printNat16 '(65_535 : nat16)'\n(65_535 : nat16)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat16 » nat16","id":"150","title":"nat16"},"151":{"body":"The CandidType object nat32 corresponds to the Candid type nat32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat32, query } from 'azle'; export default Canister({ getNat32: query([], nat32, () => { return 4_294_967_295; }), printNat32: query([nat32], nat32, (nat32) => { console.log(typeof nat32); return nat32; })\n}); Candid: service : () -> { getNat32 : () -> (nat32) query; printNat32 : (nat32) -> (nat32) query;\n} dfx: dfx canister call candid_canister printNat32 '(4_294_967_295 : nat32)'\n(4_294_967_295 : nat32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat32 » nat32","id":"151","title":"nat32"},"152":{"body":"The CandidType object nat64 corresponds to the Candid type nat64 , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, nat64, query } from 'azle'; export default Canister({ getNat64: query([], nat64, () => { return 18_446_744_073_709_551_615n; }), printNat64: query([nat64], nat64, (nat64) => { console.log(typeof nat64); return nat64; })\n}); Candid: service : () -> { getNat64 : () -> (nat64) query; printNat64 : (nat64) -> (nat64) query;\n} dfx: dfx canister call candid_canister printNat64 '(18_446_744_073_709_551_615 : nat64)'\n(18_446_744_073_709_551_615 : nat64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat64 » nat64","id":"152","title":"nat64"},"153":{"body":"The CandidType object null corresponds to the Candid type null , is inferred to be a TypeScript null, and will be decoded into a JavaScript null at runtime. TypeScript or JavaScript: import { Canister, Null, query } from 'azle'; export default Canister({ getNull: query([], Null, () => { return null; }), printNull: query([Null], Null, (null_) => { console.log(typeof null_); return null_; })\n}); Candid: service : () -> { getNull : () -> (null) query; printNull : (null) -> (null) query;\n} dfx: dfx canister call candid_canister printNull '(null)'\n(null : null)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » null » null","id":"153","title":"null"},"154":{"body":"The CandidType object Opt corresponds to the Candid type opt , is inferred to be a TypeScript Opt, and will be decoded into a JavaScript Object at runtime. It is a variant with Some and None cases. At runtime if the value of the variant is Some, the Some property of the variant object will have a value of the enclosed Opt type at runtime. TypeScript or JavaScript: import { bool, Canister, None, Opt, query, Some } from 'azle'; export default Canister({ getOptSome: query([], Opt(bool), () => { return Some(true); // equivalent to { Some: true } }), getOptNone: query([], Opt(bool), () => { return None; //equivalent to { None: null} })\n}); Candid: service : () -> { getOptNone : () -> (opt bool) query; getOptSome : () -> (opt bool) query;\n} dfx: dfx canister call candid_canister getOptSome\n(opt true) dfx canister call candid_canister getOptNone\n(null)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » opt » opt","id":"154","title":"opt"},"155":{"body":"The CandidType object Principal corresponds to the Candid type principal , is inferred to be a TypeScript @dfinity/principal Principal, and will be decoded into an @dfinity/principal Principal at runtime. TypeScript or JavaScript: import { Canister, Principal, query } from 'azle'; export default Canister({ getPrincipal: query([], Principal, () => { return Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'); }), printPrincipal: query([Principal], Principal, (principal) => { console.log(typeof principal); return principal; })\n}); Candid: service : () -> { getPrincipal : () -> (principal) query; printPrincipal : (principal) -> (principal) query;\n} dfx: dfx canister call candid_canister printPrincipal '(principal \"rrkah-fqaaa-aaaaa-aaaaq-cai\")'\n(principal \"rrkah-fqaaa-aaaaa-aaaaq-cai\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » principal » principal","id":"155","title":"principal"},"156":{"body":"Objects created by the CandidType function Record correspond to the Candid record type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The shape of the object will match the object literal passed to the Record function. TypeScript or JavaScript: import { Canister, Principal, query, Record, text } from 'azle'; const User = Record({ id: Principal, username: text\n}); export default Canister({ getUser: query([], User, () => { return { id: Principal.fromUint8Array(Uint8Array.from([0])), username: 'lastmjs' }; }), printUser: query([User], User, (user) => { console.log(typeof user); return user; })\n}); Candid: type User = record { id : principal; username : text };\nservice : () -> { getUser : () -> (User) query; printUser : (User) -> (User) query;\n} dfx: dfx canister call candid_canister printUser '(record { id = principal \"2ibo7-dia\"; username = \"lastmjs\" })'\n(record { id = principal \"2ibo7-dia\"; username = \"lastmjs\" })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » record » record","id":"156","title":"record"},"157":{"body":"The CandidType object reserved corresponds to the Candid type reserved , is inferred to be a TypeScript any, and will be decoded into a JavaScript null at runtime. TypeScript or JavaScript: import { Canister, query, reserved } from 'azle'; export default Canister({ getReserved: query([], reserved, () => { return 'anything'; }), printReserved: query([reserved], reserved, (reserved) => { console.log(typeof reserved); return reserved; })\n}); Candid: service : () -> { getReserved : () -> (reserved) query; printReserved : (reserved) -> (reserved) query;\n} dfx: dfx canister call candid_canister printReserved '(null)'\n(null : reserved)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » reserved » reserved","id":"157","title":"reserved"},"158":{"body":"Values created by the CandidType function Canister correspond to the Candid service type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The properties of this object that match the keys of the service's query and update methods can be passed into ic.call and ic.notify to perform cross-canister calls. TypeScript or JavaScript: import { bool, Canister, ic, Principal, query, text, update } from 'azle'; const SomeCanister = Canister({ query1: query([], bool), update1: update([], text)\n}); export default Canister({ getService: query([], SomeCanister, () => { return SomeCanister(Principal.fromText('aaaaa-aa')); }), callService: update([SomeCanister], text, (service) => { return ic.call(service.update1); })\n}); Candid: type ManualReply = variant { Ok : text; Err : text };\nservice : () -> { callService : ( service { query1 : () -> (bool) query; update1 : () -> (text) }, ) -> (ManualReply); getService : () -> ( service { query1 : () -> (bool) query; update1 : () -> (text) }, ) query;\n} dfx: dfx canister call candid_canister getService\n(service \"aaaaa-aa\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » service » service","id":"158","title":"service"},"159":{"body":"The CandidType object text corresponds to the Candid type text , is inferred to be a TypeScript string, and will be decoded into a JavaScript String at runtime. TypeScript or JavaScript: import { Canister, query, text } from 'azle'; export default Canister({ getString: query([], text, () => { return 'Hello world!'; }), printString: query([text], text, (string) => { console.log(typeof string); return string; })\n}); Candid: service : () -> { getString : () -> (text) query; printString : (text) -> (text) query;\n} dfx: dfx canister call candid_canister printString '(\"Hello world!\")'\n(\"Hello world!\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » text » text","id":"159","title":"text"},"16":{"body":"When working with res.json you may run into errors because of attempting to send back JavaScript objects that are not strictly JSON. This can happen when trying to send back an object with a BigInt for example. Azle has created a special function called jsonStringify that will serialize many ICP-specific data structures to JSON for you: import { jsonStringify } from 'azle';\nimport express, { Request } from 'express'; let db = { bigInt: 0n\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.send(jsonStringify(db));\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.send(jsonStringify(db));\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » jsonStringify","id":"16","title":"jsonStringify"},"160":{"body":"Objects created by the CandidType function Variant correspond to the Candid variant type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The shape of the object will match the object literal passed to the Variant function, however it will contain only one of the enumerated properties. TypeScript or JavaScript: import { Canister, Null, query, Variant } from 'azle'; const Emotion = Variant({ Happy: Null, Indifferent: Null, Sad: Null\n}); const Reaction = Variant({ Fire: Null, ThumbsUp: Null, Emotion: Emotion\n}); export default Canister({ getReaction: query([], Reaction, () => { return { Fire: null }; }), printReaction: query([Reaction], Reaction, (reaction) => { console.log(typeof reaction); return reaction; })\n}); Candid: type Emotion = variant { Sad; Indifferent; Happy };\ntype Reaction = variant { Emotion : Emotion; Fire; ThumbsUp };\nservice : () -> { getReaction : () -> (Reaction) query; printReaction : (Reaction) -> (Reaction) query;\n} dfx: dfx canister call candid_canister printReaction '(variant { Fire })'\n(variant { Fire })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » variant » variant","id":"160","title":"variant"},"161":{"body":"The CandidType object Vec corresponds to the Candid type vec , is inferred to be a TypeScript T[], and will be decoded into a JavaScript array of the specified type at runtime (except for Vec which will become a Uint8Array, thus it is recommended to use the blob type instead of Vec). TypeScript or JavaScript: import { Canister, int32, Vec, query } from 'azle'; export default Canister({ getNumbers: query([], Vec(int32), () => { return [0, 1, 2, 3]; }), printNumbers: query([Vec(int32)], Vec(int32), (numbers) => { console.log(typeof numbers); return numbers; })\n}); Candid: service : () -> { getNumbers : () -> (vec int32) query; printNumbers : (vec int32) -> (vec int32) query;\n} dfx: dfx canister call candid_canister printNumbers '(vec { 0 : int32; 1 : int32; 2 : int32; 3 : int32 })'\n(vec { 0 : int32; 1 : int32; 2 : int32; 3 : int32 })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » vec » vec","id":"161","title":"vec"},"162":{"body":"candid decode candid encode canister balance canister balance 128 canister version canister id data certificate instruction counter is controller performance counter print set certified data time trap","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » Canister APIs","id":"162","title":"Canister APIs"},"163":{"body":"This section is a work in progress. Examples: call_raw candid_encoding import { blob, Canister, ic, query, text } from 'azle'; export default Canister({ // decodes Candid bytes to a Candid string candidDecode: query([blob], text, (candidEncoded) => { return ic.candidDecode(candidEncoded); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » candid decode » candid decode","id":"163","title":"candid decode"},"164":{"body":"This section is a work in progress. Examples: call_raw candid_encoding manual_reply notify_raw outgoing_http_requests import { blob, Canister, ic, query, text } from 'azle'; export default Canister({ // encodes a Candid string to Candid bytes candidEncode: query([text], blob, (candidString) => { return ic.candidEncode(candidString); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » candid encode » candid encode","id":"164","title":"candid encode"},"165":{"body":"This section is a work in progress. Examples: cycles ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the amount of cycles available in the canister canisterBalance: query([], nat64, () => { return ic.canisterBalance(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister balance » canister balance","id":"165","title":"canister balance"},"166":{"body":"This section is a work in progress. Examples: cycles ic_api import { Canister, ic, nat, query } from 'azle'; export default Canister({ // returns the amount of cycles available in the canister canisterBalance128: query([], nat, () => { return ic.canisterBalance128(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister balance 128 » canister balance 128","id":"166","title":"canister balance 128"},"167":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the canister's version number canisterVersion: query([], nat64, () => { return ic.canisterVersion(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister version » canister version","id":"167","title":"canister version"},"168":{"body":"This section is a work in progress. Examples: ethereum_json_rpc ic_api http_counter outgoing_http_requests whoami import { Canister, ic, Principal, query } from 'azle'; export default Canister({ // returns this canister's id id: query([], Principal, () => { return ic.id(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister id » canister id","id":"168","title":"canister id"},"169":{"body":"This section is a work in progress. Examples: ic_api import { blob, Canister, ic, Opt, query } from 'azle'; export default Canister({ // When called from a query call, returns the data certificate // authenticating certified_data set by this canister. Returns None if not // called from a query call. dataCertificate: query([], Opt(blob), () => { return ic.dataCertificate(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » data certificate » data certificate","id":"169","title":"data certificate"},"17":{"body":"If you need to add canister methods to your HTTP server, the Server function imported from azle allows you to do so. Here's an example of a very simple HTTP server: import { Server } from 'azle';\nimport express from 'express'; export default Server(() => { const app = express(); app.get('/http-query', (_req, res) => { res.send('http-query-server'); }); app.post('/http-update', (_req, res) => { res.send('http-update-server'); }); return app.listen();\n}); You can add canister methods like this: import { query, Server, text, update } from 'azle';\nimport express from 'express'; export default Server( () => { const app = express(); app.get('/http-query', (_req, res) => { res.send('http-query-server'); }); app.post('/http-update', (_req, res) => { res.send('http-update-server'); }); return app.listen(); }, { candidQuery: query([], text, () => { return 'candidQueryServer'; }), candidUpdate: update([], text, () => { return 'candidUpdateServer'; }) }\n); The default export of your main module must be the result of calling Server, and the callback argument to Server must return a Node.js http.Server . The main module is specified by the main property of your project's dfx.json file . The dfx.json file must be at the root directory of your project. The callback argument to Server can be asynchronous: import { Server } from 'azle';\nimport { createServer } from 'http'; export default Server(async () => { const message = await asynchronousHelloWorld(); return createServer((req, res) => { res.write(message); res.end(); });\n}); async function asynchronousHelloWorld() { // do some asynchronous task return 'Hello World Asynchronous!';\n}","breadcrumbs":"Servers » Server","id":"17","title":"Server"},"170":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // Returns the number of instructions that the canister executed since the // last entry point. instructionCounter: query([], nat64, () => { return ic.instructionCounter(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » instruction counter » instruction counter","id":"170","title":"instruction counter"},"171":{"body":"This section is a work in progress. Examples: ic_api import { bool, Canister, ic, Principal, query } from 'azle'; export default Canister({ // determines whether the given principal is a controller of the canister isController: query([Principal], bool, (principal) => { return ic.isController(principal); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » is controller » is controller","id":"171","title":"is controller"},"172":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ performanceCounter: query([], nat64, () => { return ic.performanceCounter(0); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » performance counter » performance counter","id":"172","title":"performance counter"},"173":{"body":"This section is a work in progress. Examples: ic_api null_example import { bool, Canister, ic, query, text } from 'azle'; export default Canister({ // prints a message through the local replica's output print: query([text], bool, (message) => { ic.print(message); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » print » print","id":"173","title":"print"},"174":{"body":"This section is a work in progress. Examples: ic_api import { blob, Canister, ic, update, Void } from 'azle'; export default Canister({ // sets up to 32 bytes of certified data setCertifiedData: update([blob], Void, (data) => { ic.setCertifiedData(data); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » set certified data » set certified data","id":"174","title":"set certified data"},"175":{"body":"This section is a work in progress. Examples: audio_recorder ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the current timestamp time: query([], nat64, () => { return ic.time(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » time » time","id":"175","title":"time"},"176":{"body":"This section is a work in progress. Examples: cross_canister_calls ethereum_json_rpc http_counter ic_api outgoing_http_requests threshold_ecdsa import { bool, Canister, ic, query, text } from 'azle'; export default Canister({ // traps with a message, stopping execution and discarding all state within the call trap: query([text], bool, (message) => { ic.trap(message); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » trap » trap","id":"176","title":"trap"},"177":{"body":"heartbeat http_request http_request_update init inspect message post upgrade pre upgrade query update","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » Canister Methods","id":"177","title":"Canister Methods"},"178":{"body":"This section is a work in progress. Examples: heartbeat run_time_errors import { Canister, heartbeat } from 'azle'; export default Canister({ heartbeat: heartbeat(() => { console.log('this runs ~1 time per second'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » heartbeat » heartbeat","id":"178","title":"heartbeat"},"179":{"body":"This section is a work in progress. Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, query, Record, text, Tuple, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request: query([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » http_request » http_request","id":"179","title":"http_request"},"18":{"body":"For a deeper understanding of possible limitations you may want to refer to The HTTP Gateway Protocol Specification . The top-level route /api is currently reserved by the replica locally The Transfer-Encoding header is not supported gzip responses most likely do not work HTTP requests are generally limited to ~2 MiB HTTP responses are generally limited to ~3 MiB You cannot set HTTP status codes in the 1xx range","breadcrumbs":"Servers » Limitations","id":"18","title":"Limitations"},"180":{"body":"This section is a work in progress. Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, Record, text, Tuple, update, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request_update: update([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » http_request_update » http_request","id":"180","title":"http_request"},"181":{"body":"This section is a work in progress. Examples: ethereum_json_rpc func_types init persistent-storage pre_and_post_upgrade whoami import { Canister, init } from 'azle'; export default Canister({ init: init([], () => { console.log('This runs once when the canister is first initialized'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » init » init","id":"181","title":"init"},"182":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { bool, Canister, ic, inspectMessage, update } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { console.log('inspectMessage called'); if (ic.methodName() === 'accessible') { ic.acceptMessage(); return; } if (ic.methodName() === 'inaccessible') { return; } throw `Method \"${ic.methodName()}\" not allowed`; }), accessible: update([], bool, () => { return true; }), inaccessible: update([], bool, () => { return false; }), alsoInaccessible: update([], bool, () => { return false; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » inspect message » inspect message","id":"182","title":"inspect message"},"183":{"body":"This section is a work in progress. Examples: pre_and_post_upgrade whoami import { Canister, postUpgrade } from 'azle'; export default Canister({ postUpgrade: postUpgrade([], () => { console.log('This runs after every canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » post upgrade » post upgrade","id":"183","title":"post upgrade"},"184":{"body":"This section is a work in progress. Examples: pre_and_post_upgrade import { Canister, preUpgrade } from 'azle'; export default Canister({ preUpgrade: preUpgrade(() => { console.log('This runs before every canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » pre upgrade » pre upgrade","id":"184","title":"pre upgrade"},"185":{"body":"This section is a work in progress. import { Canister, query, text } from 'azle'; export default Canister({ simpleQuery: query([], text, () => { return 'This is a query method'; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » query » query","id":"185","title":"query"},"186":{"body":"This section is a work in progress. import { Canister, query, text, update, Void } from 'azle'; let message = ''; export default Canister({ getMessage: query([], text, () => { return message; }), setMessage: update([text], Void, (newMessage) => { message = newMessage; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » update » update","id":"186","title":"update"},"187":{"body":"You can provide environment variables to Azle canisters by specifying their names in your dfx.json file and then using the process.env object in Azle. Be aware that the environment variables that you specify in your dfx.json file will be included in plain text in your canister's Wasm binary.","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » Environment Variables","id":"187","title":"Environment Variables"},"188":{"body":"Modify your dfx.json file with the env property to specify which environment variables you would like included in your Azle canister's binary. In this case, CANISTER1_PRINCIPAL and CANISTER2_PRINCIPAL will be included: { \"canisters\": { \"canister1\": { \"type\": \"custom\", \"main\": \"src/canister1/index.ts\", \"build\": \"npx azle canister1\", \"candid\": \"src/canister1/index.did\", \"wasm\": \".azle/canister1/canister1.wasm\", \"gzip\": true, \"declarations\": { \"output\": \"test/dfx_generated/canister1\", \"node_compatibility\": true }, \"env\": [\"CANISTER1_PRINCIPAL\", \"CANISTER2_PRINCIPAL\"] } }\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » dfx.json","id":"188","title":"dfx.json"},"189":{"body":"You can access the specified environment variables in Azle like so: import { Canister, query, text } from 'azle'; export default Canister({ canister1PrincipalEnvVar: query([], text, () => { return ( process.env.CANISTER1_PRINCIPAL ?? 'process.env.CANISTER1_PRINCIPAL is undefined' ); }), canister2PrincipalEnvVar: query([], text, () => { return ( process.env.CANISTER2_PRINCIPAL ?? 'process.env.CANISTER2_PRINCIPAL is undefined' ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » process.env","id":"189","title":"process.env"},"19":{"body":"You can automatically copy static assets (essentially files and folders) into your canister's filesystem during deploy by using the assets, assets_large and build_assets properties of the canister object in your project's dfx.json file. Here's an example that copies the src/frontend/dist directory on the deploying machine into the dist directory of the canister, using the assets and build_assets properties: { \"canisters\": { \"backend\": { \"type\": \"custom\", \"main\": \"src/backend/index.ts\", \"candid\": \"src/backend/index.did\", \"candid_gen\": \"http\", \"build\": \"npx azle backend\", \"wasm\": \".azle/backend/backend.wasm\", \"gzip\": true, \"assets\": [[\"src/frontend/dist\", \"dist\"]], \"build_assets\": \"npm run build\", \"metadata\": [ { \"name\": \"candid:service\", \"path\": \"src/backend/index.did\" }, { \"name\": \"cdk:name\", \"content\": \"azle\" } ] } }\n} The assets property is an array of tuples, where the first element of the tuple is the source directory on the deploying machine, and the second element of the tuple is the destination directory in the canister. Use assets for total assets under ~90 MiB in size. The build_assets property allows you to specify custom terminal commands that will run before Azle copies the assets into the canister. You can use build_assets to build your frontend code for example. In this case we are running npm run build, which refers to an npm script that we have specified in our package.json file. There is also an assets_large property that works similarly to the assets property, but allows for total assets up to ~2 GiB in size. We are working on increasing this limit further. Once you have loaded assets into your canister, they are accessible from that canister's filesystem. Here's an example of using the Express static middleware to serve a frontend from the canister's filesystem: import express from 'express'; const app = express(); app.use(express.static('/dist')); app.listen(); Assuming the /dist directory in the canister has an appropriate index.html file, this canister would serve a frontend at its URL when loaded in a web browser.","breadcrumbs":"Assets » Assets TL;DR","id":"19","title":"Assets TL;DR"},"190":{"body":"bitcoin_get_balance bitcoin_get_current_fee_percentiles bitcoin_get_utxos bitcoin_send_transaction canister_info canister_status create_canister delete_canister deposit_cycles ecdsa_public_key http_request install_code provisional_create_canister_with_cycles provisional_top_up_canister raw_rand sign_with_ecdsa start_canister stop_canister uninstall_code update_settings","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » Management Canister","id":"190","title":"Management Canister"},"191":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, None, text, update } from 'azle';\nimport { managementCanister, Satoshi } from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getBalance: update([text], Satoshi, async (address) => { return await ic.call(managementCanister.bitcoin_get_balance, { args: [ { address, min_confirmations: None, network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_balance » bitcoin_get_balance","id":"191","title":"bitcoin_get_balance"},"192":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, update, Vec } from 'azle';\nimport { managementCanister, MillisatoshiPerByte\n} from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getCurrentFeePercentiles: update([], Vec(MillisatoshiPerByte), async () => { return await ic.call( managementCanister.bitcoin_get_current_fee_percentiles, { args: [ { network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST } ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_current_fee_percentiles » bitcoin_get_current_fee_percentiles","id":"192","title":"bitcoin_get_current_fee_percentiles"},"193":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, None, text, update } from 'azle';\nimport { GetUtxosResult, managementCanister } from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getUtxos: update([text], GetUtxosResult, async (address) => { return await ic.call(managementCanister.bitcoin_get_utxos, { args: [ { address, filter: None, network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_utxos » bitcoin_get_utxos","id":"193","title":"bitcoin_get_utxos"},"194":{"body":"This section is a work in progress. Examples: import { blob, bool, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const BITCOIN_BASE_TRANSACTION_COST = 5_000_000_000n;\nconst BITCOIN_CYCLE_COST_PER_TRANSACTION_BYTE = 20_000_000n; export default Canister({ sendTransaction: update([blob], bool, async (transaction) => { const transactionFee = BITCOIN_BASE_TRANSACTION_COST + BigInt(transaction.length) * BITCOIN_CYCLE_COST_PER_TRANSACTION_BYTE; await ic.call(managementCanister.bitcoin_send_transaction, { args: [ { transaction, network: { Regtest: null } } ], cycles: transactionFee }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_send_transaction » bitcoin_send_transaction","id":"194","title":"bitcoin_send_transaction"},"195":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, update } from 'azle';\nimport { CanisterStatusArgs, CanisterStatusResult, managementCanister\n} from 'azle/canisters/management'; export default Canister({ getCanisterStatus: update( [CanisterStatusArgs], CanisterStatusResult, async (args) => { return await ic.call(managementCanister.canister_status, { args: [args] }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » canister_status » canister_status","id":"195","title":"canister_status"},"196":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, None, update } from 'azle';\nimport { CreateCanisterResult, managementCanister\n} from 'azle/canisters/management'; export default Canister({ executeCreateCanister: update([], CreateCanisterResult, async () => { return await ic.call(managementCanister.create_canister, { args: [{ settings: None }], cycles: 50_000_000_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » create_canister » create_canister","id":"196","title":"create_canister"},"197":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeDeleteCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.delete_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » delete_canister » delete_canister","id":"197","title":"delete_canister"},"198":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeDepositCycles: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.deposit_cycles, { args: [ { canister_id: canisterId } ], cycles: 10_000_000n }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » deposit_cycles » deposit_cycles","id":"198","title":"deposit_cycles"},"199":{"body":"This section is a work in progress. Examples: threshold_ecdsa import { blob, Canister, ic, None, Record, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const PublicKey = Record({ publicKey: blob\n}); export default Canister({ publicKey: update([], PublicKey, async () => { const caller = ic.caller().toUint8Array(); const publicKeyResult = await ic.call( managementCanister.ecdsa_public_key, { args: [ { canister_id: None, derivation_path: [caller], key_id: { curve: { secp256k1: null }, name: 'dfx_test_key' } } ] } ); return { publicKey: publicKeyResult.public_key }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » ecdsa_public_key » ecdsa_public_key","id":"199","title":"ecdsa_public_key"},"2":{"body":"Windows is only supported through a Linux virtual environment of some kind, such as WSL On Ubuntu/WSL: sudo apt-get install podman On Mac: brew install podman It's recommended to use nvm and Node.js 20: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash Restart your terminal and then run: nvm install 20 Check that the installation went smoothly by looking for clean output from the following command: node --version Install the dfx command line tools for managing ICP applications: DFX_VERSION=0.19.0 sh -ci \"$(curl -fsSL https://sdk.dfinity.org/install.sh)\" Check that the installation went smoothly by looking for clean output from the following command: dfx --version If after trying to run dfx --version you encounter an error such as dfx: command not found, you might need to add $HOME/bin to your path. Here's an example of doing this in your .bashrc: echo 'export PATH=\"$PATH:$HOME/bin\"' >> \"$HOME/.bashrc\"","breadcrumbs":"Get Started » Installation","id":"2","title":"Installation"},"20":{"body":"Azle canisters can import ic from azle and use ic.caller() to get the principal (public-key linked identifier) of the initiator of an HTTP request. HTTP requests are anonymous (principal 2vxsx-fae) by default, but authentication with web browsers (and maybe Node.js) can be done using a JWT-like API from azle/http_client. First you import toJwt from azle/http_client: import { toJwt } from 'azle/http_client'; Then you use fetch and construct an Authorization header using an @dfinity/agent Identity: const response = await fetch( `http://bkyz2-fmaaa-aaaaa-qaaaq-cai.localhost:8000/whoami`, { method: 'GET', headers: [['Authorization', toJwt(this.identity)]] }\n); Here's an example of the frontend of a simple web application using azle/http_client and Internet Identity : import { Identity } from '@dfinity/agent';\nimport { AuthClient } from '@dfinity/auth-client';\nimport { toJwt } from 'azle/http_client';\nimport { html, LitElement } from 'lit';\nimport { customElement, property } from 'lit/decorators.js'; @customElement('azle-app')\nexport class AzleApp extends LitElement { @property() identity: Identity | null = null; @property() whoami: string = ''; connectedCallback() { super.connectedCallback(); this.authenticate(); } async authenticate() { const authClient = await AuthClient.create(); const isAuthenticated = await authClient.isAuthenticated(); if (isAuthenticated === true) { this.handleIsAuthenticated(authClient); } else { await this.handleIsNotAuthenticated(authClient); } } handleIsAuthenticated(authClient: AuthClient) { this.identity = authClient.getIdentity(); } async handleIsNotAuthenticated(authClient: AuthClient) { await new Promise((resolve, reject) => { authClient.login({ identityProvider: import.meta.env.VITE_IDENTITY_PROVIDER, onSuccess: resolve as () => void, onError: reject, windowOpenerFeatures: `width=500,height=500` }); }); this.identity = authClient.getIdentity(); } async whoamiUnauthenticated() { const response = await fetch( `${import.meta.env.VITE_CANISTER_ORIGIN}/whoami` ); const responseText = await response.text(); this.whoami = responseText; } async whoamiAuthenticated() { const response = await fetch( `${import.meta.env.VITE_CANISTER_ORIGIN}/whoami`, { method: 'GET', headers: [['Authorization', toJwt(this.identity)]] } ); const responseText = await response.text(); this.whoami = responseText; } render() { return html`

Internet Identity

Whoami principal: ${this.whoami}

`; }\n} Here's an example of the backend of that same simple web application: import { ic } from 'azle';\nimport express from 'express'; const app = express(); app.get('/whoami', (req, res) => { res.send(ic.caller().toString());\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Authentication » Authentication TL;DR","id":"20","title":"Authentication TL;DR"},"200":{"body":"This section is a work in progress. Examples: ethereum_json_rpc outgoing_http_requests import { Canister, ic, None, Principal, query, Some, update } from 'azle';\nimport { HttpResponse, HttpTransformArgs, managementCanister\n} from 'azle/canisters/management'; export default Canister({ xkcd: update([], HttpResponse, async () => { return await ic.call(managementCanister.http_request, { args: [ { url: `https://xkcd.com/642/info.0.json`, max_response_bytes: Some(2_000n), method: { get: null }, headers: [], body: None, transform: Some({ function: [ic.id(), 'xkcdTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); }), xkcdTransform: query([HttpTransformArgs], HttpResponse, (args) => { return { ...args.response, headers: [] }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » http_request » http_request","id":"200","title":"http_request"},"201":{"body":"This section is a work in progress. Examples: management_canister import { blob, bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], bool, async (canisterId, wasmModule) => { await ic.call(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); return true; } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » install_code » install_code","id":"201","title":"install_code"},"202":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, None, update } from 'azle';\nimport { managementCanister, ProvisionalCreateCanisterWithCyclesResult\n} from 'azle/canisters/management'; export default Canister({ provisionalCreateCanisterWithCycles: update( [], ProvisionalCreateCanisterWithCyclesResult, async () => { return await ic.call( managementCanister.provisional_create_canister_with_cycles, { args: [ { amount: None, settings: None } ] } ); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » provisional_create_canister_with_cycles » provisional_create_canister_with_cycles","id":"202","title":"provisional_create_canister_with_cycles"},"203":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, nat, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ provisionalTopUpCanister: update( [Principal, nat], bool, async (canisterId, amount) => { await ic.call(managementCanister.provisional_top_up_canister, { args: [ { canister_id: canisterId, amount } ] }); return true; } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » provisional_top_up_canister » provisional_top_up_canister","id":"203","title":"provisional_top_up_canister"},"204":{"body":"This section is a work in progress. Examples: async/await heartbeat management_canister timers import { blob, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ getRawRand: update([], blob, async () => { return await ic.call(managementCanister.raw_rand); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » raw_rand » raw_rand","id":"204","title":"raw_rand"},"205":{"body":"This section is a work in progress. Examples: threshold_ecdsa import { blob, Canister, ic, Record, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const Signature = Record({ signature: blob\n}); export default Canister({ sign: update([blob], Signature, async (messageHash) => { if (messageHash.length !== 32) { ic.trap('messageHash must be 32 bytes'); } const caller = ic.caller().toUint8Array(); const signatureResult = await ic.call( managementCanister.sign_with_ecdsa, { args: [ { message_hash: messageHash, derivation_path: [caller], key_id: { curve: { secp256k1: null }, name: 'dfx_test_key' } } ], cycles: 10_000_000_000n } ); return { signature: signatureResult.signature }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » sign_with_ecdsa » sign_with_ecdsa","id":"205","title":"sign_with_ecdsa"},"206":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeStartCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.start_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » start_canister » start_canister","id":"206","title":"start_canister"},"207":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeStopCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.stop_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » stop_canister » stop_canister","id":"207","title":"stop_canister"},"208":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeUninstallCode: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.uninstall_code, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » uninstall_code » uninstall_code","id":"208","title":"uninstall_code"},"209":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, None, Principal, Some, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeUpdateSettings: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.update_settings, { args: [ { canister_id: canisterId, settings: { controllers: None, compute_allocation: Some(1n), memory_allocation: Some(3_000_000n), freezing_threshold: Some(2_000_000n) } } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » update_settings » update_settings","id":"209","title":"update_settings"},"21":{"body":"Examples: fetch_ic internet_identity","breadcrumbs":"Authentication » Authentication","id":"21","title":"Authentication"},"210":{"body":"Azle plugins allow developers to wrap Rust code in TypeScript/JavaScript APIs that can then be exposed to Azle canisters, providing a clean and simple developer experience with the underlying Rust code. Plugins are in a very early alpha state. You can create and use them now, but be aware that the API will be changing significantly in the near future. You can use the following example plugins as you create your own plugins:","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » Plugins","id":"210","title":"Plugins"},"211":{"body":"If you just want to create a plugin in the same repo as your project, see the plugins example .","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » Local plugin","id":"211","title":"Local plugin"},"212":{"body":"If you want to create a plugin that can be published and/or used with npm, see the ic-sqlite-plugin example .","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » npm plugin","id":"212","title":"npm plugin"},"213":{"body":"stable structures stable bytes stable grow stable read stable size stable write stable64 grow stable64 read stable64 size stable64 write","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » Stable Memory","id":"213","title":"Stable Memory"},"214":{"body":"This section is a work in progress. Examples: audio_recorder ethereum_json_rpc func_types http_counter inline_types persistent-storage pre_and_post_upgrade stable_structures import { bool, Canister, nat64, nat8, Opt, query, StableBTreeMap, text, Tuple, update, Vec\n} from 'azle'; const Key = nat8;\ntype Key = typeof Key.tsType; const Value = text;\ntype Value = typeof Value.tsType; let map = StableBTreeMap(0); export default Canister({ containsKey: query([Key], bool, (key) => { return map.containsKey(key); }), get: query([Key], Opt(Value), (key) => { return map.get(key); }), insert: update([Key, Value], Opt(Value), (key, value) => { return map.insert(key, value); }), isEmpty: query([], bool, () => { return map.isEmpty(); }), items: query([], Vec(Tuple(Key, Value)), () => { return map.items(); }), keys: query([], Vec(Key), () => { return Uint8Array.from(map.keys()); }), len: query([], nat64, () => { return map.len(); }), remove: update([Key], Opt(Value), (key) => { return map.remove(key); }), values: query([], Vec(Value), () => { return map.values(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable structures » stable structures","id":"214","title":"stable structures"},"215":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, query } from 'azle'; export default Canister({ stableBytes: query([], blob, () => { return ic.stableBytes(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable bytes » stable bytes","id":"215","title":"stable bytes"},"216":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat32, update } from 'azle'; export default Canister({ stableGrow: update([nat32], nat32, (newPages) => { return ic.stableGrow(newPages); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable grow » stable grow","id":"216","title":"stable grow"},"217":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat32, query } from 'azle'; export default Canister({ stableRead: query([nat32, nat32], blob, (offset, length) => { return ic.stableRead(offset, length); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable read » stable read","id":"217","title":"stable read"},"218":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat32, query } from 'azle'; export default Canister({ stableSize: query([], nat32, () => { return ic.stableSize(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable size » stable size","id":"218","title":"stable size"},"219":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat32, update, Void } from 'azle'; export default Canister({ stableWrite: update([nat32, blob], Void, (offset, buf) => { ic.stableWrite(offset, buf); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable write » stable write","id":"219","title":"stable write"},"22":{"body":"Authentication of ICP calls is done through signatures on messages. @dfinity/agent provides very nice abstractions for creating all of the required signatures in the correct formats when calling into canisters on ICP. Unfortunately this requires you to abandon traditional HTTP requests, as you must use the agent's APIs. Azle attempts to enable you to perform traditional HTTP requests with traditional libraries. Currently Azle focuses on fetch. When importing toJwt, azle/http_client will overwrite the global fetch function and will intercept fetch requests that have Authorization headers with an Identity as a value. Once intercepted, these requests are turned into @dfinity/agent requests that call the http_request and http_request_update canister methods directly, thus performing all of the required client-side authentication work. We are working to push for ICP to more natively understand JWTs for authentication, without the need to intercept fetch requests and convert them into agent requests.","breadcrumbs":"Authentication » Under-the-hood","id":"22","title":"Under-the-hood"},"220":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat64, update } from 'azle'; export default Canister({ stable64Grow: update([nat64], nat64, (newPages) => { return ic.stable64Grow(newPages); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 grow » stable64 grow","id":"220","title":"stable64 grow"},"221":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat64, query } from 'azle'; export default Canister({ stable64Read: query([nat64, nat64], blob, (offset, length) => { return ic.stable64Read(offset, length); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 read » stable64 read","id":"221","title":"stable64 read"},"222":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat64, query } from 'azle'; export default Canister({ stable64Size: query([], nat64, () => { return ic.stable64Size(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 size » stable64 size","id":"222","title":"stable64 size"},"223":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat64, update, Void } from 'azle'; export default Canister({ stable64Write: update([nat64, blob], Void, (offset, buf) => { ic.stable64Write(offset, buf); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 write » stable64 write","id":"223","title":"stable64 write"},"224":{"body":"clear timer set timer set timer interval","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » Timers","id":"224","title":"Timers"},"225":{"body":"This section is a work in progress. Examples: timers import { Canister, ic, TimerId, update, Void } from 'azle'; export default Canister({ clearTimer: update([TimerId], Void, (timerId) => { ic.clearTimer(timerId); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » clear timer » clear timer","id":"225","title":"clear timer"},"226":{"body":"This section is a work in progress. Examples: timers import { Canister, Duration, ic, TimerId, Tuple, update } from 'azle'; export default Canister({ setTimers: update([Duration], Tuple(TimerId, TimerId), (delay) => { const functionTimerId = ic.setTimer(delay, callback); const capturedValue = '🚩'; const closureTimerId = ic.setTimer(delay, () => { console.log(`closure called and captured value ${capturedValue}`); }); return [functionTimerId, closureTimerId]; })\n}); function callback() { console.log('callback called');\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » set timer » set timer","id":"226","title":"set timer"},"227":{"body":"This section is a work in progress. Examples: timers import { Canister, Duration, ic, TimerId, Tuple, update } from 'azle'; export default Canister({ setTimerIntervals: update( [Duration], Tuple(TimerId, TimerId), (interval) => { const functionTimerId = ic.setTimerInterval(interval, callback); const capturedValue = '🚩'; const closureTimerId = ic.setTimerInterval(interval, () => { console.log( `closure called and captured value ${capturedValue}` ); }); return [functionTimerId, closureTimerId]; } )\n}); function callback() { console.log('callback called');\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » set timer interval » set timer interval","id":"227","title":"set timer interval"},"228":{"body":"The IC currently limits Wasm binaries to a relatively small size of ~2MiB (with some caveats). You are likely to hit this limit as your Azle canisters grow in size. Azle provides some automatic optimizations to help you deal with this limit. It is hoped that the IC-imposed limit will be greatly increased sometime in 2023. To optimize the Wasm binary of an Azle canister, you can add the opt_level property to your dfx.json with the following options: \"0\", \"1\", \"2\", \"3\", or \"4\". \"0\" is the default option if opt_level is not specified. Each option is intended to reduce the size of your Wasm binary as the value increases. Each option is likely to take longer to compile than the previous option. It is recommended to start at \"1\" and increase only as necessary. Here's an example using opt_level \"1\": { \"canisters\": { \"hello_world\": { \"type\": \"custom\", \"main\": \"src/index.ts\", \"build\": \"npx azle hello_world\", \"candid\": \"src/index.did\", \"wasm\": \".azle/hello_world/hello_world.wasm.gz\", \"opt_level\": \"1\" } }\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Wasm Binary Optimization » Wasm Binary Optimization","id":"228","title":"Wasm Binary Optimization"},"23":{"body":"If your terminal logs ever say did not produce a response or response failed classification=Status code: 502 Bad Gateway, it most likely means that your canister has thrown an error and halted execution for that call. Use console.log and try/catch liberally to track down problems and reveal error information. If your error logs do not have useful messages, use try/catch with a console.log of the catch error argument to reveal the underlying error message.","breadcrumbs":"Debugging » Debugging TL;DR","id":"23","title":"Debugging TL;DR"},"24":{"body":"console.log and try/catch Canister did not produce a response No error message Final Compiled and Bundled JavaScript Azle currently has less-than-elegant error reporting. We hope to improve this significantly in the future. In the meantime, consider the following tips when trying to debug your application.","breadcrumbs":"Debugging » Debugging","id":"24","title":"Debugging"},"25":{"body":"At the highest level, the most important tip is this: use console.log and try/catch liberally to track down problems and reveal error information.","breadcrumbs":"Debugging » console.log and try/catch","id":"25","title":"console.log and try/catch"},"26":{"body":"If you ever see an error that looks like this: Replica Error: reject code CanisterError, reject message IC0506: Canister bkyz2-fmaaa-aaaaa-qaaaq-cai did not produce a response, error code Some(\"IC0506\") or this: 2024-04-17T15:01:39.194377Z WARN icx_proxy_dev::proxy::agent: Replica Error\n2024-04-17T15:01:39.194565Z ERROR tower_http::trace::on_failure: response failed classification=Status code: 502 Bad Gateway latency=61 ms it most likely means that your canister has thrown an error and halted execution for that call. First check the replica's logs for any errors messages. If there are no useful error messages, use console.log and try/catch liberally to track down the source of the error and to reveal more information about the error. Don't be surprised if you need to console.log after each of your program's statements (including dependencies found in node_modules) to find out where the error is coming from. And don't be surprised if you need to use try/catch with a console.log of the catch error argument to reveal useful error messaging.","breadcrumbs":"Debugging » Canister did not produce a response","id":"26","title":"Canister did not produce a response"},"27":{"body":"You might find yourself in a situation where an error is reported without a useful message like this: \n\n\n\nError\n\n\n
    at <anonymous> (azle_main:110643)
   at handle (azle_main:73283)
   at next (azle_main:73452)
   at dispatch (azle_main:73432)
   at handle (azle_main:73283)
   at <anonymous> (azle_main:73655)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at expressInit (azle_main:73910)
   at handle (azle_main:73283)
   at trim_prefix (azle_main:73684)
   at <anonymous> (azle_main:73657)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at query3 (azle_main:73938)
   at handle (azle_main:73283)
   at trim_prefix (azle_main:73684)
   at <anonymous> (azle_main:73657)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at handle (azle_main:73587)
   at handle (azle_main:76233)
   at app2 (azle_main:78091)
   at call (native)
   at emitTwo (azle_main:9782)
   at emit2 (azle_main:10023)
   at httpHandler (azle_main:87618)
\n\n or like this: 2024-04-17 14:35:30.433501980 UTC: [Canister bkyz2-fmaaa-aaaaa-qaaaq-cai] \" at (azle_main:110643)\\n at handle (azle_main:73283)\\n at next (azle_main:73452)\\n at dispatch (azle_main:73432)\\n at handle (azle_main:73283)\\n at (azle_main:73655)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at expressInit (azle_main:73910)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at query3 (azle_main:73938)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at handle (azle_main:73587)\\n at handle (azle_main:76233)\\n at app2 (azle_main:78091)\\n at call (native)\\n at emitTwo (azle_main:9782)\\n at emit2 (azle_main:10023)\\n at httpHandler (azle_main:87618)\\n\"\n2024-04-17T14:35:31.983590Z ERROR tower_http::trace::on_failure: response failed classification=Status code: 500 Internal Server Error latency=101 ms\n2024-04-17 14:36:34.652587412 UTC: [Canister bkyz2-fmaaa-aaaaa-qaaaq-cai] \" at (azle_main:110643)\\n at handle (azle_main:73283)\\n at next (azle_main:73452)\\n at dispatch (azle_main:73432)\\n at handle (azle_main:73283)\\n at (azle_main:73655)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at expressInit (azle_main:73910)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at query3 (azle_main:73938)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at handle (azle_main:73587)\\n at handle (azle_main:76233)\\n at app2 (azle_main:78091)\\n at call (native)\\n at emitTwo (azle_main:9782)\\n at emit2 (azle_main:10023)\\n at httpHandler (azle_main:87618)\\n\" In these situations you might be able to use try/catch with a console.log of the catch error argument to reveal the underlying error message. For example, this code without a try/catch will log errors without the message This is the error text: import express from 'express'; const app = express(); app.get('/hello-world', (_req, res) => { throw new Error('This is the error text'); res.send('Hello World!');\n}); app.listen(); You can get the message to print in the replica terminal like this: import express from 'express'; const app = express(); app.get('/hello-world', (_req, res) => { try { throw new Error('This is the error text'); res.send('Hello World!'); } catch (error) { console.log(error); }\n}); app.listen();","breadcrumbs":"Debugging » No error message","id":"27","title":"No error message"},"28":{"body":"Azle compiles and bundles your TypeScript/JavaScript into a final JavaScript file to be included and executed inside of your canister. Inspecting this final JavaScript code may help you to debug your application. When you see something like (azle_main:110643) in your error stack traces, it is a reference to the final compiled and bundled JavaScript file that is actually deployed with and executed by the canister. The right-hand side of azle_main e.g. :110643 is the line number in that file. You can find the file at [project_name]/.azle/[canister_name]/canister/src/main.js. If you have the AZLE_AUTORELOAD environment variable set to true then you should instead look at [project_name]/.azle/[canister_name]/canister/src/main_reloaded.js","breadcrumbs":"Debugging » Final Compiled and Bundled JavaScript","id":"28","title":"Final Compiled and Bundled JavaScript"},"29":{"body":"There are a number of limitations that you are likely to run into while you develop with Azle on ICP. These are generally the most limiting: 5 billion instruction limit for query calls (HTTP GET requests) (~1 second of computation) 20 billion instruction limit for update calls (HTTP POST/etc requests) (~5 seconds of computation) 2 MiB request size limit 3 MiB response size limit 4 GiB heap limit High request latency relative to traditional web applications (think seconds not milliseconds) High costs relative to traditional web applications (think ~10x traditional web costs) Read more here for in-depth information on current ICP limitations.","breadcrumbs":"Limitations » Limitations TL;DR","id":"29","title":"Limitations TL;DR"},"3":{"body":"npx azle new hello_world\ncd hello_world npm install dfx start --clean --host 127.0.0.1:8000 In a separate terminal in the hello_world directory: dfx deploy If you are building an HTTP-based canister and would like your canister to autoreload on file changes (DO NOT deploy to mainnet with autoreload enabled): AZLE_AUTORELOAD=true dfx deploy If you have problems deploying see Common deployment issues . View your frontend in a web browser at http://[canisterId].localhost:8000. To obtain your application's [canisterId]: dfx canister id backend Communicate with your canister using any HTTP client library, for example using curl: curl http://[canisterId].localhost:8000/db\ncurl -X POST -H \"Content-Type: application/json\" -d \"{ \\\"hello\\\": \\\"world\\\" }\" http://[canisterId].localhost:8000/db/update","breadcrumbs":"Get Started » Deployment","id":"3","title":"Deployment"},"30":{"body":"Autoreload Environment Variables Native Compilation","breadcrumbs":"Reference » Reference","id":"30","title":"Reference"},"31":{"body":"Deploying to mainnet with AZLE_AUTORELOAD=true will expose your canister to arbitrary untrusted JavaScript code execution You can turn on automatic reloading of your canister's final compiled JavaScript by using the AZLE_AUTORELOAD environment variable during deploy: AZLE_AUTORELOAD=true dfx deploy The autoreload feature watches all .ts and .js files recursively in the directory with your dfx.json file (the root directory of your project), excluding files found in .azle, .dfx, and node_modules. Autoreload only works properly if you do not change the methods of your canister. HTTP-based canisters will generally work well with autoreload as the query and update methods http_request and http_request_update will not need to change often. Candid-based canisters with explicit query and update methods may require manual deploys more often. Autoreload will not reload assets uploaded through the assets property of your dfx.json. It is extremely important to keep in mind that setting AZLE_AUTORELOAD=true will create an update method in your canister called reload_js that has no authorization built into it. If you deploy this to mainnet, anyone will be able to call this method and change the JavaScript of your canister.","breadcrumbs":"Reference » Autoreload » Autoreload","id":"31","title":"Autoreload"},"32":{"body":"AZLE_AUTORELOAD AZLE_DOCKERFILE_HASH AZLE_IDENTITY_STORAGE_MODE AZLE_INSTRUCTION_COUNT AZLE_PROPTEST_NUM_RUNS AZLE_PROPTEST_PATH AZLE_PROPTEST_QUIET AZLE_PROPTEST_SEED AZLE_PROPTEST_VERBOSE AZLE_TEST_FETCH AZLE_USE_DOCKERFILE AZLE_VERBOSE AZLE_WASMEDGE_QUICKJS_DIR","breadcrumbs":"Reference » Environment Variables » Environment Variables","id":"32","title":"Environment Variables"},"33":{"body":"Set this to true to enable autoreloading of your TypeScript/JavaScript code when making any changes to .ts or .js files in your project.","breadcrumbs":"Reference » Environment Variables » AZLE_AUTORELOAD","id":"33","title":"AZLE_AUTORELOAD"},"34":{"body":"Set this to the hash that you would like Azle to use when determining the container image, container, and wasmedge-quickjs directory names. The container image file and wasmedge-quickjs directory will be stored at ~/.config/azle. The hash is the final part of each of those names.","breadcrumbs":"Reference » Environment Variables » AZLE_DOCKERFILE_HASH","id":"34","title":"AZLE_DOCKERFILE_HASH"},"35":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_IDENTITY_STORAGE_MODE","id":"35","title":"AZLE_IDENTITY_STORAGE_MODE"},"36":{"body":"Set this to true to see rough instruction counts just before JavaScript execution completes for calls.","breadcrumbs":"Reference » Environment Variables » AZLE_INSTRUCTION_COUNT","id":"36","title":"AZLE_INSTRUCTION_COUNT"},"37":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_NUM_RUNS","id":"37","title":"AZLE_PROPTEST_NUM_RUNS"},"38":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_PATH","id":"38","title":"AZLE_PROPTEST_PATH"},"39":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_QUIET","id":"39","title":"AZLE_PROPTEST_QUIET"},"4":{"body":"There are many Azle examples in the examples directory . We recommend starting with the following: apollo_server audio_and_video autoreload ethers ethers_base express fetch_ic file_protocol fs hello_world http_outcall_fetch hybrid_canister ic_evm_rpc internet_identity large_files sqlite tfjs web_assembly","breadcrumbs":"Examples » Examples","id":"4","title":"Examples"},"40":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_SEED","id":"40","title":"AZLE_PROPTEST_SEED"},"41":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_VERBOSE","id":"41","title":"AZLE_PROPTEST_VERBOSE"},"42":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_TEST_FETCH","id":"42","title":"AZLE_TEST_FETCH"},"43":{"body":"Set this to true to force Azle to build the container image locally from the internal Dockerfile instead of attempting to download the container image.","breadcrumbs":"Reference » Environment Variables » AZLE_USE_DOCKERFILE","id":"43","title":"AZLE_USE_DOCKERFILE"},"44":{"body":"Set this to true to enable more logging output during dfx deploy.","breadcrumbs":"Reference » Environment Variables » AZLE_VERBOSE","id":"44","title":"AZLE_VERBOSE"},"45":{"body":"Set this to the path that you would like Azle to use to find the wasmedge-quickjs directory. The default is ~/.config/azle/wasmedge-quickjs_[current Dockerfile hash].","breadcrumbs":"Reference » Environment Variables » AZLE_WASMEDGE_QUICKJS_DIR","id":"45","title":"AZLE_WASMEDGE_QUICKJS_DIR"},"46":{"body":"Add the --native-compilation option to the command in the build property of your canister object in your dfx.json file. Make sure you install the correct dependencies for your project's version of Azle.","breadcrumbs":"Reference » Native Compilation » Native Compilation TL;DR","id":"46","title":"Native Compilation TL;DR"},"47":{"body":"Examples: key_value_store primitive_types stable_structures Azle uses a container image and Podman to simplify the development environment experience. Because of this, Azle only requires dfx, node/npm, and podman to be installed on the developer's machine. But this setup isn't always desirable. For example, Podman has trouble running inside of a Docker container. If you would like to skip the container and run Azle's build process directly on your machine, you can do so as follows: Add the --native-compilation option to the command in the build property of your canister object in your dfx.json file, like this: npx azle canister_name --native-compilation. Install prerequisites: sudo apt-get update\nsudo apt-get install clang\nsudo apt-get install build-essential Install Rust: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.73.0 --profile=minimal Install wasm32-wasi: rustup target add wasm32-wasi Install wasi2ic: cargo install --git https://github.com/wasm-forge/wasi2ic --rev 806c3558aad24224852a9582f018178402cb3679 Download and rename wasmedge-quickjs: mkdir -p ~/.config/azle\ncd ~/.config/azle\ngit clone https://github.com/demergent-labs/wasmedge-quickjs\ncd wasmedge-quickjs\ngit checkout c21ff69f442998e4cda4619166e23a9bc91418be\ncd -\nmv wasmedge-quickjs wasmedge-quickjs_$(npx azle@0.21.1 dockerfile-hash) Keep in mind that much of this setup is Azle version-specific. The installation steps above are accurate as of version 0.21.1 of Azle. If your Azle project uses a different version of Azle then you might need to make changes to these instructions to ensure correct compilation and execution. If you are struggling to get --native-compilation to work, it may be helpful for you to view the following files from the Azle repository: Dockerfile test.yml , search for --native-compilation","breadcrumbs":"Reference » Native Compilation » Native Compilation","id":"47","title":"Native Compilation"},"48":{"body":"This entire section of the documentation may be out of date Azle is currently going through a transition to give higher priority to utilizing HTTP, REST, JSON, and other familiar web technologies. This is in contrast to having previously focused on ICP-specific technologies like Candid and explicitly creating Canister objects with query and update methods. We are calling these two paradigms HTTP-based and Candid-based. Many concepts from the Candid-based documentation are still applicable in the HTTP-based paradigm. The HTTP-based paradigm simply focuses on changing the communication and serialization strategies to be more web-focused and less custom.","breadcrumbs":"Old Candid-based Documentation » Old Candid-based Documentation","id":"48","title":"Old Candid-based Documentation"},"49":{"body":"Azle is a TypeScript and JavaScript Canister Development Kit (CDK) for the Internet Computer (IC). In other words, it's a TypeScript/JavaScript runtime for building applications ( canisters ) on the IC. npm package GitHub repo Discord channel","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Azle (Beta)","id":"49","title":"Azle (Beta)"},"5":{"body":"Starting the local replica Deploying to the local replica Interacting with your canister Deploying to mainnet Common deployment issues There are two main ICP environments that you will generally interact with: the local replica and mainnet . We recommend using the dfx command line tools to deploy to these environments. Please note that not all dfx commands are shown here. See the dfx CLI reference for more information.","breadcrumbs":"Deployment » Deployment","id":"5","title":"Deployment"},"50":{"body":"Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Disclaimer","id":"50","title":"Disclaimer"},"51":{"body":"Azle is currently developed by Demergent Labs , a for-profit company with a grant from DFINITY . Demergent Labs' vision is to accelerate the adoption of Web3, the Internet Computer, and sustainable open source.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Demergent Labs","id":"51","title":"Demergent Labs"},"52":{"body":"Azle and the IC provide unique benefits and drawbacks, and both are not currently suitable for all application use-cases. The following information will help you to determine when Azle and the IC might be beneficial for your use-case.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Benefits and drawbacks","id":"52","title":"Benefits and drawbacks"},"53":{"body":"Azle intends to be a full TypeScript and JavaScript environment for the IC (a decentralized cloud platform), with support for all of the TypeScript and JavaScript language and as many relevant environment APIs as possible. These environment APIs will be similar to those available in the Node.js and web browser environments. One of the core benefits of Azle is that it allows web developers to bring their TypeScript or JavaScript skills to the IC. For example, Azle allows the use of various npm packages and VS Code intellisense. As for the IC, we believe its main benefits can be broken down into the following categories: Ownership Security Developer Experience Most of these benefits stem from the decentralized nature of the IC, though the IC is best thought of as a progressively decentralizing cloud platform. As opposed to traditional cloud platforms, its goal is to be owned and controlled by many independent entities. Ownership Full-stack group ownership Autonomous ownership Permanent APIs Credible neutrality Reduced platform risk Full-stack group ownership The IC allows you to build applications that are controlled directly and only (with some caveats) by a group of people. This is in opposition to most cloud applications written today, which must be under the control of a very limited number of people and often a single legal entity that answers directly to a cloud provider, which itself is a single legal entity. In the blockchain world, group-owned applications are known as DAOs . As opposed to DAOs built on most blockchains, the IC allows full-stack applications to be controlled by groups. This means that the group fully controls the running instances of the frontend and the backend code. Autonomous ownership In addition to allowing applications to be owned by groups of people, the IC also allows applications to be owned by no one. This essentially creates autonomous applications or everlasting processes that execute indefinitely. The IC will essentially allow such an application to run indefinitely, unless it depletes its balance of cycles, or the NNS votes to shut it down, neither of which is inevitable. Permanent APIs Because most web APIs are owned and operated by individual entities, their fate is tied to that of their owners. If their owners go out of business, then those APIs may cease to exist. If their owners decide that they do not like or agree with certain users, they may restrict their access. In the end, they may decide to shut down or restrict access for arbitrary reasons. Because the IC allows for group and autonomous ownership of cloud software, the IC is able to produce potentially permanent web APIs. A decentralized group of independent entities will find it difficult to censor API consumers or shut down an API. An autonomous API would take those difficulties to the extreme, as it would continue operating as long as consumers were willing to pay for it. Credible neutrality Group and autonomous ownership makes it possible to build neutral cloud software on the IC. This type of software would allow independent parties to coordinate with reduced trust in each other or a single third-party coordinator. This removes the risk of the third-party coordinator acting in its own self-interest against the interests of the coordinating participants. The coordinating participants would also find it difficult to implement changes that would benefit themselves to the detriment of other participants. Examples could include mobile app stores, ecommerce marketplaces, and podcast directories. Reduced platform risk Because the IC is not owned or controlled by any one entity or individual, the risk of being deplatformed is reduced. This is in opposition to most cloud platforms, where the cloud provider itself generally has the power to arbitrarily remove users from its platform. While deplatforming can still occur on the IC, the only endogenous means of forcefully taking down an application is through an NNS vote. Security Built-in replication Built-in authentication Built-in firewall/port management Built-in sandboxing Threshold protocols Verifiable source code Blockchain integration Built-in replication Replication has many benefits that stem from reducing various central points of failure. The IC is at its core a Byzantine Fault Tolerant replicated compute environment. Applications are deployed to subnets which are composed of nodes running replicas. Each replica is an independent replicated state machine that executes an application's state transitions (usually initiated with HTTP requests) and persists the results. This replication provides a high level of security out-of-the-box. It is also the foundation of a number of protocols that provide threshold cryptographic operations to IC applications. Built-in authentication IC client tooling makes it easy to sign and send messages to the IC, and Internet Identity provides a novel approach to self-custody of private keys. The IC automatically authenticates messages with the public key of the signer, and provides a compact representation of that public key, called a principal, to the application. The principal can be used for authorization purposes. This removes many authentication concerns from the developer. Built-in firewall/port management The concept of ports and various other low-level network infrastructure on the IC is abstracted away from the developer. This can greatly reduce application complexity thus minimizing the chance of introducing vulnerabilities through incorrect configurations. Canisters expose endpoints through various methods, usually query or update methods. Because authentication is also built-in, much of the remaining vulnerability surface area is minimized to implementing correct authorization rules in the canister method endpoints. Built-in sandboxing Canisters have at least two layers of sandboxing to protect colocated canisters from each other. All canisters are at their core Wasm modules and thus inherit the built-in Wasm sandbox. In case there is any bug in the underlying implementation of the Wasm execution environment (or a vulnerability in the imported host functionality), there is also an OS-level sandbox. Developers need not do anything to take advantage of these sandboxes. Threshold protocols The IC provides a number of threshold protocols that allow groups of independent nodes to perform cryptographic operations. These protocols remove central points of failure while providing familiar and useful cryptographic operations to developers. Included are ECDSA , BLS , VRF-like , and in the future threshold key derivation . Verifiable source code IC applications (canisters) are compiled into Wasm and deployed to the IC as Wasm modules. The IC hashes each canister's Wasm binary and stores it for public retrieval. The Wasm binary hash can be retrieved and compared with the hash of an independently compiled Wasm binary derived from available source code. If the hashes match, then one can know with a high degree of certainty that the application is executing the Wasm binary that was compiled from that source code. Blockchain integration When compared with web APIs built for the same purpose, the IC provides a high degree of security when integrating with various other blockchains. It has a direct client integration with Bitcoin, allowing applications to query its state with BFT guarantees. A similar integration is coming for Ethereum. In addition to these blockchain client integrations, a threshold ECDSA protocol (tECDSA) allows the IC to create keys and sign transactions on various ECDSA chains . These chains include Bitcoin and Ethereum, and in the future the protocol may be extended to allow interaction with various EdDSA chains . These direct integrations combined with tECDSA provide a much more secure way to provide blockchain functionality to end users than creating and storing their private keys on traditional cloud infrastructure. Developer experience Built-in devops Orthogonal persistence Built-in devops The IC provides many devops benefits automatically. Though currently limited in its scalability, the protocol attempts to remove the need for developers to concern themselves with concepts such as autoscaling, load balancing, uptime, sandboxing, and firewalls/port management. Correctly constructed canisters have a simple deploy process and automatically inherit these devops capabilities up unto the current scaling limits of the IC. DFINITY engineers are constantly working to remove scalability bottlenecks. Orthogonal persistence The IC automatically persists its heap. This creates an extremely convenient way for developers to store application state, by simply writing into global variables in their programming language of choice. This is a great way to get started. If a canister upgrades its code, swapping out its Wasm binary, then the heap must be cleared. To overcome this limitation, there is a special area of memory called stable memory that persists across these canister upgrades. Special stable data structures provide a familiar API that allows writing into stable memory directly. All of this together provides the foundation for a very simple persistence experience for the developer. The persistence tools now available and coming to the IC may be simpler than their equivalents on traditional cloud infrastructure.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Benefits","id":"53","title":"Benefits"},"54":{"body":"It's important to note that both Azle and the IC are early-stage projects. The IC officially launched in May of 2021, and Azle reached beta in April of 2022. Azle Some of Azle's main drawbacks can be summarized as follows: Beta Security risks Missing APIs Beta Azle reached beta in April of 2022. It's an immature project that may have unforeseen bugs and other issues. We're working constantly to improve it. We hope to get to a production-ready 1.0 in 2024. The following are the major blockers to 1.0: Extensive automated property test coverage Multiple independent security reviews/audits Broad npm package support Security risks As discussed earlier, these are some things to keep in mind: Azle does not yet have extensive automated property tests Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to the IC Missing APIs Azle is not Node.js nor is it V8 running in a web browser. It is using a JavaScript interpreter running in a very new and very different environment. APIs from the Node.js and web browser ecosystems may not be present in Azle. Our goal is to support as many of these APIs as possible over time. IC Some of the IC's main drawbacks can be summarized as follows: Early High latencies Limited and expensive compute resources Limited scalability Lack of privacy NNS risk Early The IC launched officially in May of 2021. As a relatively new project with an extremely ambitious vision, you can expect a small community, immature tooling, and an unproven track record. Much has been delivered, but many promises are yet to be fulfilled. High latencies Any requests that change state on the IC must go through consensus, thus you can expect latencies of a few seconds for these types of requests. When canisters need to communicate with each other across subnets or under heavy load, these latencies can be even longer. Under these circumstances, in the worst case latencies will build up linearly. For example, if canister A calls canister B calls canister C, and these canisters are all on different subnets or under heavy load, then you might need to multiply the latency by the total number of calls. Limited and expensive compute resources CPU usage, data storage, and network usage may be more expensive than the equivalent usage on traditional cloud platforms. Combining these costs with the high latencies explained above, it becomes readily apparent that the IC is currently not built for high-performance computing. Limited scalability The IC might not be able to scale to the needs of your application. It is constantly seeking to improve scalability bottlenecks, but it will probably not be able to onboard millions of users to your traditional web application. Lack of privacy You should assume that all of your application data (unless it is end-to-end encrypted) is accessible to multiple third-parties with no direct relationship and limited commitment to you. Currently all canister state sits unencrypted on node operator's machines. Application-layer access controls for data are possible, but motivated node operators will have an easy time getting access to your data. NNS risk The NNS has the ability to uninstall any canister and can generally change anything about the IC protocol. The NNS uses a simple liquid democracy based on coin/token voting and follower relationships. At the time of this writing most of the voting power on the NNS follows DFINITY for protocol changes, effectively giving DFINITY write control to the protocol while those follower relationships remain in place. The NNS must mature and decentralize to provide practical and realistic protections to canisters and their users.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Drawbacks","id":"54","title":"Drawbacks"},"55":{"body":"The Internet Computer (IC) is a decentralized cloud platform. Actually, it is better thought of as a progressively decentralizing cloud platform. Its full vision is yet to be fulfilled. It aims to be owned and operated by many independent entities in many geographies and legal jurisdictions throughout the world. This is in opposition to most traditional cloud platforms today, which are generally owned and operated by one overarching legal entity. The IC is composed of computer hardware nodes running the IC protocol software. Each running IC protocol software process is known as a replica. Nodes are assigned into groups known as subnets. Each subnet attempts to maximize its decentralization of nodes according to factors such as data center location and node operator independence. The subnets vary in size. Generally speaking the larger the size of the subnet the more secure it will be. Subnets currently range in size from 13 to 40 nodes, with most subnets having 13 nodes. IC applications, known as canisters, are deployed to specific subnets. They are then accessible through Internet Protocol requests such as HTTP. Each subnet replicates all canisters across all of its replicas. A consensus protocol is run by the replicas to ensure Byzantine Fault Tolerance . View the IC Dashboard to explore all data centers, subnets, node operators, and many other aspects of the IC.","breadcrumbs":"Old Candid-based Documentation » Internet Computer Overview » Internet Computer Overview","id":"55","title":"Internet Computer Overview"},"56":{"body":"Canisters are Internet Computer (IC) applications. They are the encapsulation of your code and state, and are essentially Wasm modules. State can be stored on the 4 GiB heap or in a larger 96 GiB location called stable memory. You can store state on the heap using your language's native global variables. You can store state in stable memory using low-level APIs or special stable data structures that behave similarly to native language data structures. State changes must go through a process called consensus. The consensus process ensures that state changes are Byzantine Fault Tolerant . This process takes a few seconds to complete. Operations on canister state are exposed to users through canister methods. These methods can be invoked through HTTP requests. Query methods allow state to be read and are low-latency. Update methods allow state to be changed and are higher-latency. Update methods take a few seconds to complete because of the consensus process.","breadcrumbs":"Old Candid-based Documentation » Canisters Overview » Canisters Overview","id":"56","title":"Canisters Overview"},"57":{"body":"Windows is only supported through a Linux virtual environment of some kind, such as WSL On Ubuntu/WSL: sudo apt-get install podman On Mac: brew install podman It's recommended to use nvm and Node.js 20: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash Restart your terminal and then run: nvm install 20 Check that the installation went smoothly by looking for clean output from the following command: node --version Install the dfx command line tools for managing ICP applications: DFX_VERSION=0.16.1 sh -ci \"$(curl -fsSL https://sdk.dfinity.org/install.sh)\" Check that the installation went smoothly by looking for clean output from the following command: dfx --version If after trying to run dfx --version you encounter an error such as dfx: command not found, you might need to add $HOME/bin to your path. Here's an example of doing this in your .bashrc: echo 'export PATH=\"$PATH:$HOME/bin\"' >> \"$HOME/.bashrc\"","breadcrumbs":"Old Candid-based Documentation » Installation » Installation","id":"57","title":"Installation"},"58":{"body":"Quick start Methodical start The project directory and file structure index.ts tsconfig.json dfx.json Local deployment Common deployment issues Interacting with your canister from the command line Interacting with your canister from the web UI Let's build your first application (canister) with Azle! Before embarking please ensure you've followed all of the installation instructions , especially noting the build dependencies . We'll build a simple Hello World canister that shows the basics of importing Azle, exposing a query method, exposing an update method, and storing some state in a global variable. We'll then interact with it from the command line and from our web browser.","breadcrumbs":"Old Candid-based Documentation » Hello World » Hello World","id":"58","title":"Hello World"},"59":{"body":"We are going to use the Azle new command which creates a simple example project. First use the new command to create a new project called azle_hello_world: npx azle new azle_hello_world Now let's go inside of our project: cd azle_hello_world We should install Azle and all of its dependencies: npm install Start up your local replica: dfx start In another terminal, deploy your canister: dfx deploy azle_hello_world Call the setMessage method: dfx canister call azle_hello_world setMessage '(\"Hello world!\")' Call the getMessage method: dfx canister call azle_hello_world getMessage If you run into an error during deployment, see the common deployment issues section . See the official azle_hello_world example for more information.","breadcrumbs":"Old Candid-based Documentation » Hello World » Quick Start","id":"59","title":"Quick Start"},"6":{"body":"We recommend running your local replica in its own terminal and on a port of your choosing: dfx start --host 127.0.0.1:8000 Alternatively you can start the local replica as a background process: dfx start --background --host 127.0.0.1:8000 If you want to stop a local replica running in the background: dfx stop If you ever see this kind of error after dfx stop: Error: Failed to kill all processes. Remaining: 627221 626923 627260 Then try this: sudo kill -9 627221\nsudo kill -9 626923\nsudo kill -9 627260 If your replica starts behaving strangely, we recommend starting the replica clean, which will clean the dfx state of your project: dfx start --clean --host 127.0.0.1:8000","breadcrumbs":"Deployment » Starting the local replica","id":"6","title":"Starting the local replica"},"60":{"body":"","breadcrumbs":"Old Candid-based Documentation » Hello World » Methodical start","id":"60","title":"Methodical start"},"61":{"body":"Assuming you're starting completely from scratch, run these commands to setup your project's directory and file structure: mkdir azle_hello_world\ncd azle_hello_world mkdir src touch src/index.ts\ntouch tsconfig.json\ntouch dfx.json Now install Azle, which will create your package.json and package-lock.json files: npm install azle Open up azle_hello_world in your text editor (we recommend VS Code ).","breadcrumbs":"Old Candid-based Documentation » Hello World » The project directory and file structure","id":"61","title":"The project directory and file structure"},"62":{"body":"Here's the main code of the project, which you should put in the azle_hello_world/src/index.ts file of your canister: import { Canister, query, text, update, Void } from 'azle'; // This is a global variable that is stored on the heap\nlet message = ''; export default Canister({ // Query calls complete quickly because they do not go through consensus getMessage: query([], text, () => { return message; }), // Update calls take a few seconds to complete // This is because they persist state changes and go through consensus setMessage: update([text], Void, (newMessage) => { message = newMessage; // This change will be persisted })\n}); Let's discuss each section of the code. import { Canister, query, text, update, Void } from 'azle'; The code starts off by importing Canister, query, text, update and Void from azle. The azle module provides most of the Internet Computer (IC) APIs for your canister. // This is a global variable that is stored on the heap\nlet message = ''; We have created a global variable to store the state of our application. This variable is in scope to all of the functions defined in this module. We have set it equal to an empty string. export default Canister({ ...\n}); The Canister function allows us to export our canister's definition to the Azle IC environment. // Query calls complete quickly because they do not go through consensus\ngetMessage: query([], text, () => { return message;\n}), We are exposing a canister query method here. This method simply returns our global message variable. We use a CandidType object called text to instruct Azle to encode the return value as a Candid text value. When query methods are called they execute quickly because they do not have to go through consensus. // Update calls take a few seconds to complete\n// This is because they persist state changes and go through consensus\nsetMessage: update([text], Void, (newMessage) => { message = newMessage; // This change will be persisted\n}); We are exposing an update method here. This method accepts a string from the caller and will store it in our global message variable. We use a CandidType object called text to instruct Azle to decode the newMessage parameter from a Candid text value to a JavaScript string value. Azle will infer the TypeScript type for newMessage. We use a CandidType object called Void to instruct Azle to encode the return value as the absence of a Candid value. When update methods are called they take a few seconds to complete. This is because they persist changes and go through consensus. A majority of nodes in a subnet must agree on all state changes introduced in calls to update methods. That's it! We've created a very simple getter/setter Hello World application. But no Hello World project is complete without actually yelling Hello world! To do that, we'll need to setup the rest of our project.","breadcrumbs":"Old Candid-based Documentation » Hello World » index.ts","id":"62","title":"index.ts"},"63":{"body":"Create the following in azle_hello_world/tsconfig.json: { \"compilerOptions\": { \"strict\": true, \"target\": \"ES2020\", \"moduleResolution\": \"node\", \"allowJs\": true, \"outDir\": \"HACK_BECAUSE_OF_ALLOW_JS\" }\n}","breadcrumbs":"Old Candid-based Documentation » Hello World » tsconfig.json","id":"63","title":"tsconfig.json"},"64":{"body":"Create the following in azle_hello_world/dfx.json: { \"canisters\": { \"azle_hello_world\": { \"type\": \"custom\", \"main\": \"src/index.ts\", \"candid\": \"src/index.did\", \"build\": \"npx azle azle_hello_world\", \"wasm\": \".azle/azle_hello_world/azle_hello_world.wasm\", \"gzip\": true } }\n}","breadcrumbs":"Old Candid-based Documentation » Hello World » dfx.json","id":"64","title":"dfx.json"},"65":{"body":"Let's deploy to our local replica. First startup the replica: dfx start --background Then deploy the canister: dfx deploy","breadcrumbs":"Old Candid-based Documentation » Hello World » Local deployment","id":"65","title":"Local deployment"},"66":{"body":"If you run into an error during deployment, see the common deployment issues section .","breadcrumbs":"Old Candid-based Documentation » Hello World » Common deployment issues","id":"66","title":"Common deployment issues"},"67":{"body":"Once we've deployed we can ask for our message: dfx canister call azle_hello_world getMessage We should see (\"\") representing an empty message. Now let's yell Hello World!: dfx canister call azle_hello_world setMessage '(\"Hello World!\")' Retrieve the message: dfx canister call azle_hello_world getMessage We should see (\"Hello World!\").","breadcrumbs":"Old Candid-based Documentation » Hello World » Interacting with your canister from the command line","id":"67","title":"Interacting with your canister from the command line"},"68":{"body":"After deploying your canister, you should see output similar to the following in your terminal: Deployed canisters.\nURLs: Backend canister via Candid interface: azle_hello_world: http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai Open up http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai or the equivalent URL from your terminal to access the web UI and interact with your canister.","breadcrumbs":"Old Candid-based Documentation » Hello World » Interacting with your canister from the web UI","id":"68","title":"Interacting with your canister from the web UI"},"69":{"body":"Starting the local replica Deploying to the local replica Interacting with your canister Deploying to mainnet Common deployment issues There are two main Internet Computer (IC) environments that you will generally interact with: the local replica and mainnet. When developing on your local machine, our recommended flow is to start up a local replica in your project's root directoy and then deploy to it for local testing.","breadcrumbs":"Old Candid-based Documentation » Deployment » Deployment","id":"69","title":"Deployment"},"7":{"body":"To deploy all canisters defined in your dfx.json: dfx deploy If you are building an HTTP-based canister and would like your canister to autoreload on file changes (DO NOT deploy to mainnet with autoreload enabled): AZLE_AUTORELOAD=true dfx deploy To deploy an individual canister: dfx deploy [canisterName]","breadcrumbs":"Deployment » Deploying to the local replica","id":"7","title":"Deploying to the local replica"},"70":{"body":"Open a terminal and navigate to your project's root directory: dfx start Alternatively you can start the local replica as a background process: dfx start --background If you want to stop a local replica running in the background: dfx stop If you ever see this error after dfx stop: Error: Failed to kill all processes. Remaining: 627221 626923 627260 Then try this: sudo kill -9 627221\nsudo kill -9 626923\nsudo kill -9 627260 If your replica starts behaving strangely, we recommend starting the replica clean, which will clean the dfx state of your project: dfx start --clean","breadcrumbs":"Old Candid-based Documentation » Deployment » Starting the local replica","id":"70","title":"Starting the local replica"},"71":{"body":"To deploy all canisters defined in your dfx.json: dfx deploy To deploy an individual canister: dfx deploy canister_name","breadcrumbs":"Old Candid-based Documentation » Deployment » Deploying to the local replica","id":"71","title":"Deploying to the local replica"},"72":{"body":"As a developer you can generally interact with your canister in three ways: dfx command line dfx web UI @dfinity/agent","breadcrumbs":"Old Candid-based Documentation » Deployment » Interacting with your canister","id":"72","title":"Interacting with your canister"},"73":{"body":"You can see a more complete reference here . The commands you are likely to use most frequently are: # assume a canister named my_canister # builds and deploys all canisters specified in dfx.json\ndfx deploy # builds all canisters specified in dfx.json\ndfx build # builds and deploys my_canister\ndfx deploy my_canister # builds my_canister\ndfx build my_canister # removes the Wasm binary and state of my_canister\ndfx uninstall-code my_canister # calls the methodName method on my_canister with a string argument\ndfx canister call my_canister methodName '(\"This is a Candid string argument\")'","breadcrumbs":"Old Candid-based Documentation » Deployment » dfx command line","id":"73","title":"dfx command line"},"74":{"body":"After deploying your canister, you should see output similar to the following in your terminal: Deployed canisters.\nURLs: Backend canister via Candid interface: my_canister: http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai Open up http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai to access the web UI.","breadcrumbs":"Old Candid-based Documentation » Deployment » dfx web UI","id":"74","title":"dfx web UI"},"75":{"body":"@dfinity/agent is the TypeScript/JavaScript client library for interacting with canisters on the IC. If you are building a client web application, this is probably what you'll want to use. There are other agents for other languages as well: Java Python Rust","breadcrumbs":"Old Candid-based Documentation » Deployment » @dfinity/agent","id":"75","title":"@dfinity/agent"},"76":{"body":"Assuming you are setup with cycles , then you are ready to deploy to mainnet. To deploy all canisters defined in your dfx.json: dfx deploy --network ic To deploy an individual canister: dfx deploy --network ic canister_name","breadcrumbs":"Old Candid-based Documentation » Deployment » Deploying to mainnet","id":"76","title":"Deploying to mainnet"},"77":{"body":"If you run into an error during deployment, try the following: Ensure that you have followed the instructions correctly in the installation chapter , especially noting the build dependencies Start the whole deployment process from scratch by running the following commands: dfx stop or simply terminate dfx in your terminal, dfx start --clean, npx azle clean, dfx deploy Look for more error output by adding the --verbose flag to the build command in your dfx.json file like so: \"build\": \"npx azle build hello_world --verbose Look for errors in each of the files in ~/.config/azle/rust/[rust_version]/logs Reach out in the Discord channel","breadcrumbs":"Old Candid-based Documentation » Deployment » Common deployment issues","id":"77","title":"Common deployment issues"},"78":{"body":"Azle has many example projects showing nearly all Azle APIs. They can be found in the examples directory of the Azle GitHub repository . We'll highlight a few of them and some others here: Query Update Primitive Types Stable Structures Cycles Cross Canister Calls Management Canister Outgoing HTTP Requests Incoming HTTP Requests Pre and Post Upgrade Timers Multisig Vault ICRC-1 IC Chainlink Data Feeds Bitcoin ckBTC","breadcrumbs":"Old Candid-based Documentation » Examples » Examples","id":"78","title":"Examples"},"79":{"body":"","breadcrumbs":"Old Candid-based Documentation » Query Methods » Query Methods","id":"79","title":"Query Methods"},"8":{"body":"You will generally interact with your canister through an HTTP client such as curl, fetch, or a web browser. The URL of your canister locally will look like this: http://[canisterId].localhost:[replicaPort]. Azle will print your canister's URL in the terminal after a successful deploy. # You can obtain the canisterId like this\ndfx canister id [canisterName] # You can obtain the replicaPort like this\ndfx info webserver-port # An example of performing a GET request to a canister\ncurl http://a3shf-5eaaa-aaaaa-qaafa-cai.localhost:8000 # An example of performing a POST request to a canister\ncurl -X POST -H \"Content-Type: application/json\" -d \"{ \\\"hello\\\": \\\"world\\\" }\" http://a3shf-5eaaa-aaaaa-qaafa-cai.localhost:8000","breadcrumbs":"Deployment » Interacting with your canister","id":"8","title":"Interacting with your canister"},"80":{"body":"Created with the query function Read-only Executed on a single node No consensus Latency on the order of ~100 milliseconds 5 billion Wasm instruction limit 4 GiB heap limit ~32k queries per second per canister The most basic way to expose your canister's functionality publicly is through a query method. Here's an example of a simple query method named getString: import { Canister, query, text } from 'azle'; export default Canister({ getString: query([], text, () => { return 'This is a query method!'; })\n}); Query methods are defined inside of a call to Canister using the query function. The first parameter to query is an array of CandidType objects that will be used to decode the Candid bytes of the arguments sent from the client when calling your query method. The second parameter to query is a CandidType object used to encode the return value of your function to Candid bytes to then be sent back to the client. The third parameter to query is the function that receives the decoded arguments, performs some computation, and then returns a value to be encoded. The TypeScript signature of this function (parameter and return types) will be inferred from the CandidType arguments in the first and second parameters to query. getString can be called from the outside world through the IC's HTTP API. You'll usually invoke this API from the dfx command line, dfx web UI, or an agent . From the dfx command line you can call it like this: dfx canister call my_canister getString Query methods are read-only. They do not persist any state changes. Take a look at the following example: import { Canister, query, text, Void } from 'azle'; let db: { [key: string]: string;\n} = {}; export default Canister({ set: query([text, text], Void, (key, value) => { db[key] = value; })\n}); Calling set will perform the operation of setting the key property on the db object to value, but after the call finishes that change will be discarded. This is because query methods are executed on a single node machine and do not go through consensus . This results in lower latencies, perhaps on the order of 100 milliseconds. There is a limit to how much computation can be done in a single call to a query method. The current query call limit is 5 billion Wasm instructions . Here's an example of a query method that runs the risk of reaching the limit: import { Canister, nat32, query, text } from 'azle'; export default Canister({ pyramid: query([nat32], text, (levels) => { return new Array(levels).fill(0).reduce((acc, _, index) => { const asterisks = new Array(index + 1).fill('*').join(''); return `${acc}${asterisks}\\n`; }, ''); })\n}); From the dfx command line you can call pyramid like this: dfx canister call my_canister pyramid '(1_000)' With an argument of 1_000, pyramid will fail with an error ...exceeded the instruction limit for single message execution. Keep in mind that each query method invocation has up to 4 GiB of heap available. In terms of query scalability, an individual canister likely has an upper bound of ~36k queries per second .","breadcrumbs":"Old Candid-based Documentation » Query Methods » TL;DR","id":"80","title":"TL;DR"},"81":{"body":"","breadcrumbs":"Old Candid-based Documentation » Update Methods » Update Methods","id":"81","title":"Update Methods"},"82":{"body":"Created with the update function Read-write Executed on many nodes Consensus Latency ~2-5 seconds 20 billion Wasm instruction limit 4 GiB heap limit 96 GiB stable memory limit ~900 updates per second per canister Update methods are similar to query methods, but state changes can be persisted. Here's an example of a simple update method: import { Canister, nat64, update } from 'azle'; let counter = 0n; export default Canister({ increment: update([], nat64, () => { return counter++; })\n}); Calling increment will return the current value of counter and then increase its value by 1. Because counter is a global variable, the change will be persisted to the heap, and subsequent query and update calls will have access to the new counter value. Because the Internet Computer (IC) persists changes with certain fault tolerance guarantees, update calls are executed on many nodes and go through consensus . This leads to latencies of ~2-5 seconds per update call. Due to the latency and other expenses involved with update methods, it is best to use them only when necessary. Look at the following example: import { Canister, query, text, update, Void } from 'azle'; let message = ''; export default Canister({ getMessage: query([], text, () => { return message; }), setMessage: update([text], Void, (newMessage) => { message = newMessage; })\n}); You'll notice that we use an update method, setMessage, only to perform the change to the global message variable. We use getMessage, a query method, to read the message. Keep in mind that the heap is limited to 4 GiB, and thus there is an upper bound to global variable storage capacity. You can imagine how a simple database like the following would eventually run out of memory with too many entries: import { Canister, None, Opt, query, Some, text, update, Void } from 'azle'; type Db = { [key: string]: string;\n}; let db: Db = {}; export default Canister({ get: query([text], Opt(text), (key) => { const value = db[key]; return value !== undefined ? Some(value) : None; }), set: update([text, text], Void, (key, value) => { db[key] = value; })\n}); If you need more than 4 GiB of storage, consider taking advantage of the 96 GiB of stable memory. Stable structures like StableBTreeMap give you a nice API for interacting with stable memory. These data structures will be covered in more detail later . Here's a simple example: import { Canister, Opt, query, StableBTreeMap, text, update, Void } from 'azle'; let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); })\n}); So far we have only seen how state changes can be persisted. State changes can also be discarded by implicit or explicit traps. A trap is an immediate stop to execution with the ability to provide a message to the execution environment. Traps can be useful for ensuring that multiple operations are either all completed or all disregarded, or in other words atomic. Keep in mind that these guarantees do not hold once cross-canister calls are introduced, but that's a more advanced topic covered later . Here's an example of how to trap and ensure atomic changes to your database: import { Canister, ic, Opt, query, Record, StableBTreeMap, text, update, Vec, Void\n} from 'azle'; const Entry = Record({ key: text, value: text\n}); let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); }), setMany: update([Vec(Entry)], Void, (entries) => { entries.forEach((entry) => { if (entry.key === 'trap') { ic.trap('explicit trap'); } db.insert(entry.key, entry.value); }); })\n}); In addition to ic.trap, an explicit JavaScript throw or any unhandled exception will also trap. There is a limit to how much computation can be done in a single call to an update method. The current update call limit is 20 billion Wasm instructions . If we modify our database example, we can introduce an update method that runs the risk of reaching the limit: import { Canister, nat64, Opt, query, StableBTreeMap, text, update, Void\n} from 'azle'; let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); }), setMany: update([nat64], Void, (numEntries) => { for (let i = 0; i < numEntries; i++) { db.insert(i.toString(), i.toString()); } })\n}); From the dfx command line you can call setMany like this: dfx canister call my_canister setMany '(10_000)' With an argument of 10_000, setMany will fail with an error ...exceeded the instruction limit for single message execution. In terms of update scalability, an individual canister likely has an upper bound of ~900 updates per second .","breadcrumbs":"Old Candid-based Documentation » Update Methods » TL;DR","id":"82","title":"TL;DR"},"83":{"body":"text blob nat nat8 nat16 nat32 nat64 int int8 int16 int32 int64 float32 float64 bool null vec opt record variant func service principal reserved empty Candid is an interface description language created by DFINITY . It can be used to define interfaces between services (canisters), allowing canisters and clients written in various languages to easily interact with each other. This interaction occurs through the serialization/encoding and deserialization/decoding of runtime values to and from Candid bytes. Azle performs automatic encoding and decoding of JavaScript values to and from Candid bytes through the use of various CandidType objects. For example, CandidType objects are used when defining the parameter and return types of your query and update methods. They are also used to define the keys and values of a StableBTreeMap. It's important to note that the CandidType objects decode Candid bytes into specific JavaScript runtime data structures that may differ in behavior from the description of the actual Candid type. For example, a float32 Candid type is a JavaScript Number , a nat64 is a JavaScript BigInt , and an int is also a JavaScript BigInt . Keep this in mind as it may result in unexpected behavior. Each CandidType object and its equivalent JavaScript runtime value is explained in more detail in The Azle Book Candid reference . A more canonical reference of all Candid types available on the Internet Computer (IC) can be found here . The following is a simple example showing how to import and use many of the CandidType objects available in Azle: import { blob, bool, Canister, float32, float64, Func, int, int16, int32, int64, int8, nat, nat16, nat32, nat64, nat8, None, Null, Opt, Principal, query, Record, Recursive, text, update, Variant, Vec\n} from 'azle'; const MyCanister = Canister({ query: query([], bool), update: update([], text)\n}); const Candid = Record({ text: text, blob: blob, nat: nat, nat64: nat64, nat32: nat32, nat16: nat16, nat8: nat8, int: int, int64: int64, int32: int32, int16: int16, int8: int8, float64: float64, float32: float32, bool: bool, null: Null, vec: Vec(text), opt: Opt(nat), record: Record({ firstName: text, lastName: text, age: nat8 }), variant: Variant({ Tag1: Null, Tag2: Null, Tag3: int }), func: Recursive(() => Func([], Candid, 'query')), canister: Canister({ query: query([], bool), update: update([], text) }), principal: Principal\n}); export default Canister({ candidTypes: query([], Candid, () => { return { text: 'text', blob: Uint8Array.from([]), nat: 340_282_366_920_938_463_463_374_607_431_768_211_455n, nat64: 18_446_744_073_709_551_615n, nat32: 4_294_967_295, nat16: 65_535, nat8: 255, int: 170_141_183_460_469_231_731_687_303_715_884_105_727n, int64: 9_223_372_036_854_775_807n, int32: 2_147_483_647, int16: 32_767, int8: 127, float64: Math.E, float32: Math.PI, bool: true, null: null, vec: ['has one element'], opt: None, record: { firstName: 'John', lastName: 'Doe', age: 35 }, variant: { Tag1: null }, func: [ Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'), 'candidTypes' ], canister: MyCanister(Principal.fromText('aaaaa-aa')), principal: Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai') }; })\n}); Calling candidTypes with dfx will return: ( record { func = func \"rrkah-fqaaa-aaaaa-aaaaq-cai\".candidTypes; text = \"text\"; nat16 = 65_535 : nat16; nat32 = 4_294_967_295 : nat32; nat64 = 18_446_744_073_709_551_615 : nat64; record = record { age = 35 : nat8; lastName = \"Doe\"; firstName = \"John\" }; int = 170_141_183_460_469_231_731_687_303_715_884_105_727 : int; nat = 340_282_366_920_938_463_463_374_607_431_768_211_455 : nat; opt = null; vec = vec { \"has one element\" }; variant = variant { Tag1 }; nat8 = 255 : nat8; canister = service \"aaaaa-aa\"; int16 = 32_767 : int16; int32 = 2_147_483_647 : int32; int64 = 9_223_372_036_854_775_807 : int64; null = null : null; blob = vec {}; bool = true; principal = principal \"ryjl3-tyaaa-aaaaa-aaaba-cai\"; int8 = 127 : int8; float32 = 3.1415927 : float32; float64 = 2.718281828459045 : float64; },\n)","breadcrumbs":"Old Candid-based Documentation » Candid » Candid","id":"83","title":"Candid"},"84":{"body":"","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Stable Structures","id":"84","title":"Stable Structures"},"85":{"body":"96 GiB of stable memory Persistent across upgrades Familiar API Must specify memory id No migrations per memory id Stable structures are data structures with familiar APIs that allow write and read access to stable memory. Stable memory is a separate memory location from the heap that currently allows up to 96 GiB of binary storage. Stable memory persists automatically across upgrades. Persistence on the Internet Computer (IC) is very important to understand. When a canister is upgraded (its code is changed after being initially deployed) its heap is wiped. This includes all global variables. On the other hand, anything stored in stable memory will be preserved. Writing and reading to and from stable memory can be done with a low-level API , but it is generally easier and preferable to use stable structures. Azle currently provides one stable structure called StableBTreeMap. It's similar to a JavaScript Map and has most of the common operations you'd expect such as reading, inserting, and removing values. Here's how to define a simple StableBTreeMap: import { nat8, StableBTreeMap, text } from 'azle'; let map = StableBTreeMap(0); This is a StableBTreeMap with a key of type nat8 and a value of type text. Unless you want a default type of any for your key and value, then you must explicitly type your StableBTreeMap with type arguments. StableBTreeMap works by encoding and decoding values under-the-hood, storing and retrieving these values in bytes in stable memory. When writing to and reading from a StableBTreeMap, by default the stableJson Serializable object is used to encode JS values into bytes and to decode JS values from bytes. stableJson uses JSON.stringify and JSON.parse with a custom replacer and reviver to handle many Candid and other values that you will most likely use in your canisters. You may use other Serializable objects besides stableJson, and you can even create your own. Simply pass in a Serializable object as the second and third parameters to your StableBTreeMap. The second parameter is the key Serializable object and the third parameter is the value Serializable object. For example, the following StableBTreeMap uses the nat8 and text CandidType objects from Azle as Serializable objects. These Serializable objects will encode and decode to and from Candid bytes: import { nat8, StableBTreeMap, text } from 'azle'; let map = StableBTreeMap(0, nat8, text); All CandidType objects imported from azle are Serializable objects. A Serializable object simply has a toBytes method that takes a JS value and returns a Uint8Array, and a fromBytes method that takes a Uint8Array and returns a JS value. Here's an example of how to create your own simple JSON Serializable: export interface Serializable { toBytes: (data: any) => Uint8Array; fromBytes: (bytes: Uint8Array) => any;\n} export function StableSimpleJson(): Serializable { return { toBytes(data: any) { const result = JSON.stringify(data); return Uint8Array.from(Buffer.from(result)); }, fromBytes(bytes: Uint8Array) { return JSON.parse(Buffer.from(bytes).toString()); } };\n} This StableBTreeMap also has a memory id of 0. Each StableBTreeMap instance must have a unique memory id between 0 and 254. Once a memory id is allocated, it cannot be used with a different StableBTreeMap. This means you can't create another StableBTreeMap using the same memory id, and you can't change the key or value types of an existing StableBTreeMap. This problem will be addressed to some extent . Here's an example showing all of the basic StableBTreeMap operations: import { bool, Canister, nat64, nat8, Opt, query, StableBTreeMap, text, Tuple, update, Vec\n} from 'azle'; const Key = nat8;\ntype Key = typeof Key.tsType; const Value = text;\ntype Value = typeof Value.tsType; let map = StableBTreeMap(0); export default Canister({ containsKey: query([Key], bool, (key) => { return map.containsKey(key); }), get: query([Key], Opt(Value), (key) => { return map.get(key); }), insert: update([Key, Value], Opt(Value), (key, value) => { return map.insert(key, value); }), isEmpty: query([], bool, () => { return map.isEmpty(); }), items: query([], Vec(Tuple(Key, Value)), () => { return map.items(); }), keys: query([], Vec(Key), () => { return Uint8Array.from(map.keys()); }), len: query([], nat64, () => { return map.len(); }), remove: update([Key], Opt(Value), (key) => { return map.remove(key); }), values: query([], Vec(Value), () => { return map.values(); })\n}); With these basic operations you can build more complex CRUD database applications: import { blob, Canister, ic, Err, nat64, Ok, Opt, Principal, query, Record, Result, StableBTreeMap, text, update, Variant, Vec\n} from 'azle'; const User = Record({ id: Principal, createdAt: nat64, recordingIds: Vec(Principal), username: text\n});\ntype User = typeof User.tsType; const Recording = Record({ id: Principal, audio: blob, createdAt: nat64, name: text, userId: Principal\n});\ntype Recording = typeof Recording.tsType; const AudioRecorderError = Variant({ RecordingDoesNotExist: Principal, UserDoesNotExist: Principal\n});\ntype AudioRecorderError = typeof AudioRecorderError.tsType; let users = StableBTreeMap(0);\nlet recordings = StableBTreeMap(1); export default Canister({ createUser: update([text], User, (username) => { const id = generateId(); const user: User = { id, createdAt: ic.time(), recordingIds: [], username }; users.insert(user.id, user); return user; }), readUsers: query([], Vec(User), () => { return users.values(); }), readUserById: query([Principal], Opt(User), (id) => { return users.get(id); }), deleteUser: update([Principal], Result(User, AudioRecorderError), (id) => { const userOpt = users.get(id); if ('None' in userOpt) { return Err({ UserDoesNotExist: id }); } const user = userOpt.Some; user.recordingIds.forEach((recordingId) => { recordings.remove(recordingId); }); users.remove(user.id); return Ok(user); }), createRecording: update( [blob, text, Principal], Result(Recording, AudioRecorderError), (audio, name, userId) => { const userOpt = users.get(userId); if ('None' in userOpt) { return Err({ UserDoesNotExist: userId }); } const user = userOpt.Some; const id = generateId(); const recording: Recording = { id, audio, createdAt: ic.time(), name, userId }; recordings.insert(recording.id, recording); const updatedUser: User = { ...user, recordingIds: [...user.recordingIds, recording.id] }; users.insert(updatedUser.id, updatedUser); return Ok(recording); } ), readRecordings: query([], Vec(Recording), () => { return recordings.values(); }), readRecordingById: query([Principal], Opt(Recording), (id) => { return recordings.get(id); }), deleteRecording: update( [Principal], Result(Recording, AudioRecorderError), (id) => { const recordingOpt = recordings.get(id); if ('None' in recordingOpt) { return Err({ RecordingDoesNotExist: id }); } const recording = recordingOpt.Some; const userOpt = users.get(recording.userId); if ('None' in userOpt) { return Err({ UserDoesNotExist: recording.userId }); } const user = userOpt.Some; const updatedUser: User = { ...user, recordingIds: user.recordingIds.filter( (recordingId) => recordingId.toText() !== recording.id.toText() ) }; users.insert(updatedUser.id, updatedUser); recordings.remove(id); return Ok(recording); } )\n}); function generateId(): Principal { const randomBytes = new Array(29) .fill(0) .map((_) => Math.floor(Math.random() * 256)); return Principal.fromUint8Array(Uint8Array.from(randomBytes));\n} The example above shows a very basic audio recording backend application. There are two types of entities that need to be stored, User and Recording. These are represented as Candid records. Each entity gets its own StableBTreeMap: import { blob, Canister, ic, Err, nat64, Ok, Opt, Principal, query, Record, Result, StableBTreeMap, text, update, Variant, Vec\n} from 'azle'; const User = Record({ id: Principal, createdAt: nat64, recordingIds: Vec(Principal), username: text\n});\ntype User = typeof User.tsType; const Recording = Record({ id: Principal, audio: blob, createdAt: nat64, name: text, userId: Principal\n});\ntype Recording = typeof Recording.tsType; const AudioRecorderError = Variant({ RecordingDoesNotExist: Principal, UserDoesNotExist: Principal\n});\ntype AudioRecorderError = typeof AudioRecorderError.tsType; let users = StableBTreeMap(0);\nlet recordings = StableBTreeMap(1); Notice that each StableBTreeMap has a unique memory id. You can begin to create basic database CRUD functionality by creating one StableBTreeMap per entity. It's up to you to create functionality for querying, filtering, and relations. StableBTreeMap is not a full-featured database solution, but a fundamental building block that may enable you to achieve more advanced database functionality. Demergent Labs plans to deeply explore database solutions on the IC in the future.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » TL;DR","id":"85","title":"TL;DR"},"86":{"body":"","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Caveats","id":"86","title":"Caveats"},"87":{"body":"It seems to be only some float64 values cannot be successfully stored and retrieved with a StableBTreeMap using stableJson because of this bug with JSON.parse: https://github.com/bellard/quickjs/issues/206","breadcrumbs":"Old Candid-based Documentation » Stable Structures » float64 values","id":"87","title":"float64 values"},"88":{"body":"Azle's Candid encoding/decoding implementation is currently not well optimized, and Candid may not be the most optimal encoding format overall, so you may experience heavy instruction usage when performing many StableBTreeMap operations in succession. A rough idea of the overhead from our preliminary testing is probably 1-2 million instructions for a full Candid encoding and decoding of values per StableBTreeMap operation. For these reasons we recommend using the stableJson Serializable object (the default) instead of CandidType Serializable objects.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » CandidType Performance","id":"88","title":"CandidType Performance"},"89":{"body":"Migrations must be performed manually by reading the values out of one StableBTreeMap and writing them into another. Once a StableBTreeMap is initialized to a specific memory id, that memory id cannot be changed unless the canister is completely wiped and initialized again.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Migrations","id":"89","title":"Migrations"},"9":{"body":"Assuming you are setup with a cycles wallet , then you are ready to deploy to mainnet. To deploy all canisters defined in your dfx.json: dfx deploy --network ic To deploy an individual canister: dfx deploy --network ic [canisterName] The URL of your canister on mainnet will look like this: https://[canisterId].raw.icp0.io.","breadcrumbs":"Deployment » Deploying to mainnet","id":"9","title":"Deploying to mainnet"},"90":{"body":"Canister values do not currently work with the default stableJson implementation. If you must persist Canisters, consider using the Canister CandidType object as your Serializable object in your StableBTreeMap, or create a custom replacer or reviver for stableJson that handles Canister.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Canister","id":"90","title":"Canister"},"91":{"body":"Examples: async_await bitcoin composite_queries cross_canister_calls cycles ethereum_json_rpc func_types heartbeat inline_types ledger_canister management_canister outgoing_http_requests threshold_ecdsa rejections timers tuple_types whoami Canisters are generally able to call the query or update methods of other canisters in any subnet. We refer to these types of calls as cross-canister calls. A cross-canister call begins with a definition of the canister to be called. Imagine a simple canister called token_canister: import { Canister, ic, nat64, Opt, Principal, StableBTreeMap, update\n} from 'azle'; let accounts = StableBTreeMap(0); export default Canister({ transfer: update([Principal, nat64], nat64, (to, amount) => { const from = ic.caller(); const fromBalance = getBalance(accounts.get(from)); const toBalance = getBalance(accounts.get(to)); accounts.insert(from, fromBalance - amount); accounts.insert(to, toBalance + amount); return amount; })\n}); function getBalance(accountOpt: Opt): nat64 { if ('None' in accountOpt) { return 0n; } else { return accountOpt.Some; }\n} Now that you have the canister definition, you can import and instantiate it in another canister: import { Canister, ic, nat64, Principal, update } from 'azle';\nimport TokenCanister from './token_canister'; const tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); If you don't have the actual definition of the token canister with the canister method implementations, you can always create your own canister definition without method implementations: import { Canister, ic, nat64, Principal, update } from 'azle'; const TokenCanister = Canister({ transfer: update([Principal, nat64], nat64)\n}); const tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); The IC guarantees that cross-canister calls will return. This means that, generally speaking, you will always receive a response from ic.call. If there are errors during the call, ic.call will throw. Wrapping your cross-canister call in a try...catch allows you to handle these errors. Let's add to our example code and explore adding some practical error-handling to stop people from stealing tokens. token_canister: import { Canister, ic, nat64, Opt, Principal, StableBTreeMap, update\n} from 'azle'; let accounts = StableBTreeMap(0); export default Canister({ transfer: update([Principal, nat64], nat64, (to, amount) => { const from = ic.caller(); const fromBalance = getBalance(accounts.get(from)); if (amount > fromBalance) { throw new Error(`${from} has an insufficient balance`); } const toBalance = getBalance(accounts.get(to)); accounts.insert(from, fromBalance - amount); accounts.insert(to, toBalance + amount); return amount; })\n}); function getBalance(accountOpt: Opt): nat64 { if ('None' in accountOpt) { return 0n; } else { return accountOpt.Some; }\n} payout_canister: import { Canister, ic, nat64, Principal, update } from 'azle';\nimport TokenCanister from './index'; const tokenCanister = TokenCanister( Principal.fromText('bkyz2-fmaaa-aaaaa-qaaaq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { try { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); } catch (error) { console.log(error); } return 0n; })\n}); Throwing will allow you to express error conditions and halt execution, but you may find embracing the Result variant as a better solution for error handling because of its composability and predictability. So far we have only shown a cross-canister call from an update method. Update methods can call other update methods or query methods (but not composite query methods as discussed below). If an update method calls a query method, that query method will be called in replicated mode. Replicated mode engages the consensus process, but for queries the state will still be discarded. Cross-canister calls can also be initiated from query methods. These are known as composite queries, and in Azle they are simply async query methods. Composite queries can call other composite query methods and regular query methods. Composite queries cannot call update methods. Here's an example of a composite query method: import { bool, Canister, ic, Principal, query } from 'azle'; const SomeCanister = Canister({ queryForBoolean: query([], bool)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ querySomeCanister: query([], bool, async () => { return await ic.call(someCanister.queryForBoolean); })\n}); You can expect cross-canister calls within the same subnet to take up to a few seconds to complete, and cross-canister calls across subnets take about double that time . Composite queries should be much faster, similar to query calls in latency. If you don't need to wait for your cross-canister call to return, you can use notify: import { Canister, ic, Principal, update, Void } from 'azle'; const SomeCanister = Canister({ receiveNotification: update([], Void)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ sendNotification: update([], Void, () => { return ic.notify(someCanister.receiveNotification); })\n}); If you need to send cycles with your cross-canister call, you can add cycles to the config object of ic.notify: import { Canister, ic, Principal, update, Void } from 'azle'; const SomeCanister = Canister({ receiveNotification: update([], Void)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ sendNotification: update([], Void, () => { return ic.notify(someCanister.receiveNotification, { cycles: 1_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Cross-canister » Cross-canister","id":"91","title":"Cross-canister"},"92":{"body":"This chapter is a work in progress.","breadcrumbs":"Old Candid-based Documentation » HTTP » HTTP","id":"92","title":"HTTP"},"93":{"body":"Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, query, Record, text, Tuple, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request: query([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » HTTP » Incoming HTTP requests","id":"93","title":"Incoming HTTP requests"},"94":{"body":"Examples: ethereum_json_rpc outgoing_http_requests import { Canister, ic, init, nat32, Principal, query, Some, StableBTreeMap, text, update\n} from 'azle';\nimport { HttpResponse, HttpTransformArgs, managementCanister\n} from 'azle/canisters/management'; let stableStorage = StableBTreeMap(0); export default Canister({ init: init([text], (ethereumUrl) => { stableStorage.insert('ethereumUrl', ethereumUrl); }), ethGetBalance: update([text], text, async (ethereumAddress) => { const urlOpt = stableStorage.get('ethereumUrl'); if ('None' in urlOpt) { throw new Error('ethereumUrl is not defined'); } const url = urlOpt.Some; const httpResponse = await ic.call(managementCanister.http_request, { args: [ { url, max_response_bytes: Some(2_000n), method: { post: null }, headers: [], body: Some( Buffer.from( JSON.stringify({ jsonrpc: '2.0', method: 'eth_getBalance', params: [ethereumAddress, 'earliest'], id: 1 }), 'utf-8' ) ), transform: Some({ function: [ic.id(), 'ethTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); return Buffer.from(httpResponse.body.buffer).toString('utf-8'); }), ethGetBlockByNumber: update([nat32], text, async (number) => { const urlOpt = stableStorage.get('ethereumUrl'); if ('None' in urlOpt) { throw new Error('ethereumUrl is not defined'); } const url = urlOpt.Some; const httpResponse = await ic.call(managementCanister.http_request, { args: [ { url, max_response_bytes: Some(2_000n), method: { post: null }, headers: [], body: Some( Buffer.from( JSON.stringify({ jsonrpc: '2.0', method: 'eth_getBlockByNumber', params: [`0x${number.toString(16)}`, false], id: 1 }), 'utf-8' ) ), transform: Some({ function: [ic.id(), 'ethTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); return Buffer.from(httpResponse.body.buffer).toString('utf-8'); }), ethTransform: query([HttpTransformArgs], HttpResponse, (args) => { return { ...args.response, headers: [] }; })\n});","breadcrumbs":"Old Candid-based Documentation » HTTP » Outgoing HTTP requests","id":"94","title":"Outgoing HTTP requests"},"95":{"body":"This chapter is a work in progress. You can access the management canister like this: import { blob, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ randomBytes: update([], blob, async () => { return await ic.call(managementCanister.raw_rand); })\n}); See the management canister reference section for more information.","breadcrumbs":"Old Candid-based Documentation » Management Canister » Management Canister","id":"95","title":"Management Canister"},"96":{"body":"This chapter is a work in progress. import { Canister, init, postUpgrade, preUpgrade } from 'azle'; export default Canister({ init: init([], () => { console.log('runs on first canister install'); }), preUpgrade: preUpgrade(() => { console.log('runs before canister upgrade'); }), postUpgrade: postUpgrade([], () => { console.log('runs after canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Canister Lifecycle » Canister Lifecycle","id":"96","title":"Canister Lifecycle"},"97":{"body":"This chapter is a work in progress. import { blob, bool, Canister, Duration, ic, int8, query, Record, text, TimerId, update, Void\n} from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const StatusReport = Record({ single: bool, inline: int8, capture: text, repeat: int8, singleCrossCanister: blob, repeatCrossCanister: blob\n}); const TimerIds = Record({ single: TimerId, inline: TimerId, capture: TimerId, repeat: TimerId, singleCrossCanister: TimerId, repeatCrossCanister: TimerId\n}); let statusReport: typeof StatusReport = { single: false, inline: 0, capture: '', repeat: 0, singleCrossCanister: Uint8Array.from([]), repeatCrossCanister: Uint8Array.from([])\n}; export default Canister({ clearTimer: update([TimerId], Void, (timerId) => { ic.clearTimer(timerId); console.log(`timer ${timerId} cancelled`); }), setTimers: update([Duration, Duration], TimerIds, (delay, interval) => { const capturedValue = '🚩'; const singleId = ic.setTimer(delay, oneTimeTimerCallback); const inlineId = ic.setTimer(delay, () => { statusReport.inline = 1; console.log('Inline timer called'); }); const captureId = ic.setTimer(delay, () => { statusReport.capture = capturedValue; console.log(`Timer captured value ${capturedValue}`); }); const repeatId = ic.setTimerInterval(interval, () => { statusReport.repeat++; console.log(`Repeating timer. Call ${statusReport.repeat}`); }); const singleCrossCanisterId = ic.setTimer( delay, singleCrossCanisterTimerCallback ); const repeatCrossCanisterId = ic.setTimerInterval( interval, repeatCrossCanisterTimerCallback ); return { single: singleId, inline: inlineId, capture: captureId, repeat: repeatId, singleCrossCanister: singleCrossCanisterId, repeatCrossCanister: repeatCrossCanisterId }; }), statusReport: query([], StatusReport, () => { return statusReport; })\n}); function oneTimeTimerCallback() { statusReport.single = true; console.log('oneTimeTimerCallback called');\n} async function singleCrossCanisterTimerCallback() { console.log('singleCrossCanisterTimerCallback'); statusReport.singleCrossCanister = await ic.call( managementCanister.raw_rand );\n} async function repeatCrossCanisterTimerCallback() { console.log('repeatCrossCanisterTimerCallback'); statusReport.repeatCrossCanister = Uint8Array.from([ ...statusReport.repeatCrossCanister, ...(await ic.call(managementCanister.raw_rand)) ]);\n}","breadcrumbs":"Old Candid-based Documentation » Timers » Timers","id":"97","title":"Timers"},"98":{"body":"This chapter is a work in progress. Cycles are essentially units of computational resources such as bandwidth, memory, and CPU instructions. Costs are generally metered on the Internet Computer (IC) by cycles. You can see a breakdown of all cycle costs here . Currently queries do not have any cycle costs. Most important to you will probably be update costs. TODO break down some cycle scenarios maybe? Perhaps we should show some of our analyses for different types of applications. Maybe show how to send and receive cycles, exactly how to do it. Show all of the APIs for sending or receiving cycles? Perhaps we don't need to do that here, since each API will show this information. Maybe here we just show the basic concept of cycles, link to the main cycles cost page, and show a few examples of how to break down these costs or estimate these costs.","breadcrumbs":"Old Candid-based Documentation » Cycles » Cycles","id":"98","title":"Cycles"},"99":{"body":"","breadcrumbs":"Old Candid-based Documentation » Caveats » Caveats","id":"99","title":"Caveats"}},"length":229,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772}}},"df":6,"docs":{"137":{"tf":2.0},"161":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"129":{"tf":1.0},"16":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"x":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"6":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"1":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"'":{"*":{"'":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":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":{"80":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"134":{"tf":1.0}}},"5":{"df":1,"docs":{"134":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"29":{"tf":1.0}}}},"1":{"0":{"6":{"4":{"3":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"134":{"tf":1.0}}},"4":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"134":{"tf":1.0}}},"7":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"6":{"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":2,"docs":{"144":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"8":{"df":9,"docs":{"111":{"tf":2.449489742783178},"117":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.4142135623730951}}},"4":{":":{"3":{"5":{":":{"3":{"0":{".":{"4":{"3":{"3":{"5":{"0":{"1":{"9":{"8":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"3":{"4":{".":{"6":{"5":{"2":{"5":{"8":{"7":{"4":{"1":{"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"_":{"1":{"4":{"1":{"_":{"1":{"8":{"3":{"_":{"4":{"6":{"0":{"_":{"4":{"6":{"9":{"_":{"2":{"3":{"1":{"_":{"7":{"3":{"1":{"_":{"6":{"8":{"7":{"_":{"3":{"0":{"3":{"_":{"7":{"1":{"5":{"_":{"8":{"8":{"4":{"_":{"1":{"0":{"5":{"_":{"7":{"2":{"7":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"143":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"27":{"tf":1.4142135623730951}},"t":{"1":{"4":{":":{"3":{"5":{":":{"3":{"1":{".":{"9":{"8":{"3":{"5":{"9":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"1":{":":{"3":{"9":{".":{"1":{"9":{"4":{"3":{"7":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"_":{"4":{"4":{"6":{"_":{"7":{"4":{"4":{"_":{"0":{"7":{"3":{"_":{"7":{"0":{"9":{"_":{"5":{"5":{"1":{"_":{"6":{"1":{"5":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"152":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"161":{"tf":1.7320508075688772},"178":{"tf":1.0},"228":{"tf":2.0},"29":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"2":{".":{"0":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"7":{"1":{"8":{"2":{"8":{"1":{"8":{"2":{"8":{"4":{"5":{"9":{"0":{"4":{"5":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"228":{"tf":1.0}}},"4":{"df":4,"docs":{"0":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"54":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"57":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}},"5":{"4":{"df":1,"docs":{"85":{"tf":1.0}}},"5":{"df":2,"docs":{"149":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"4":{"7":{"_":{"4":{"8":{"3":{"_":{"6":{"4":{"7":{"df":2,"docs":{"146":{"tf":1.7320508075688772},"83":{"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":8,"docs":{"103":{"tf":1.0},"161":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0},"82":{"tf":1.4142135623730951},"88":{"tf":1.0}},"i":{"a":{"a":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"7":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0}}},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"3":{".":{"1":{"4":{"1":{"5":{"9":{"2":{"7":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"7":{"6":{"7":{"df":2,"docs":{"145":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"174":{"tf":1.0},"205":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"3":{"df":1,"docs":{"134":{"tf":1.0}}},"4":{"0":{"_":{"2":{"8":{"2":{"_":{"3":{"6":{"6":{"_":{"9":{"2":{"0":{"_":{"9":{"3":{"8":{"_":{"4":{"6":{"3":{"_":{"4":{"6":{"3":{"_":{"3":{"7":{"4":{"_":{"6":{"0":{"7":{"_":{"4":{"3":{"1":{"_":{"7":{"6":{"8":{"_":{"2":{"1":{"1":{"_":{"4":{"5":{"5":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"6":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":4,"docs":{"161":{"tf":1.7320508075688772},"18":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}},"2":{"df":1,"docs":{"135":{"tf":1.0}}},"_":{"2":{"9":{"4":{"_":{"9":{"6":{"7":{"_":{"2":{"9":{"5":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"83":{"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":5,"docs":{"228":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772}}},"5":{"0":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}},"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":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"a":{"a":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"2":{"6":{"9":{"2":{"3":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"1":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"_":{"5":{"3":{"5":{"df":2,"docs":{"150":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"a":{"a":{"a":{"a":{"df":3,"docs":{"115":{"tf":1.0},"142":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"6":{"c":{"3":{"5":{"5":{"8":{"a":{"a":{"d":{"2":{"4":{"2":{"2":{"4":{"8":{"5":{"2":{"a":{"9":{"5":{"8":{"2":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"1":{"7":{"8":{"4":{"0":{"2":{"c":{"b":{"3":{"6":{"7":{"9":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"27":{"tf":1.0},"94":{"tf":2.0}}},"9":{"0":{"0":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":1,"docs":{"19":{"tf":1.0}}},"6":{"df":3,"docs":{"56":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"_":{"2":{"2":{"3":{"_":{"3":{"7":{"2":{"_":{"0":{"3":{"6":{"_":{"8":{"5":{"4":{"_":{"7":{"7":{"5":{"_":{"8":{"0":{"7":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"147":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}},"_":{"df":1,"docs":{"80":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"17":{"tf":2.0},"27":{"tf":1.4142135623730951}}}}}},"a":{"a":{"a":{"a":{"a":{"df":14,"docs":{"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"68":{"tf":2.0},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"91":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"q":{"df":5,"docs":{"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"b":{"a":{"df":5,"docs":{"129":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{},"q":{"df":3,"docs":{"115":{"tf":1.0},"142":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"158":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"82":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"13":{"tf":1.0},"182":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"}":{"$":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"142":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"28":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"57":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"df":2,"docs":{"77":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":1,"docs":{"83":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"22":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"62":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"210":{"tf":1.0},"53":{"tf":3.7416573867739413},"56":{"tf":1.4142135623730951},"62":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"j":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.0},"182":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"70":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"47":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"115":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"91":{"tf":3.872983346207417}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"212":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":2.8284271247461903}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"59":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"139":{"tf":2.0},"157":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":21,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"13":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"210":{"tf":1.4142135623730951},"22":{"tf":1.0},"53":{"tf":3.4641016151377544},"54":{"tf":2.0},"56":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"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":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"'":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":8,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"53":{"tf":1.0}},"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":{"3":{"tf":1.0},"53":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":21,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":4.123105625617661},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"75":{"tf":1.0},"85":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"y":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"1":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"2":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"3":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"4":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":27,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"128":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"139":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"2":{"9":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"0":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"(":{"(":{"a":{"c":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"142":{"tf":1.0},"161":{"tf":1.0},"19":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":3.4641016151377544},"31":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"17":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"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":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"175":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"85":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"85":{"tf":2.6457513110645907}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":2.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"53":{"tf":2.23606797749979}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":2.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"df":8,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":2.449489742783178}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"111":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"53":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":34,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":3.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":2.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"187":{"tf":1.0},"210":{"tf":1.0}}},"y":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":160,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":2.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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":2.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.8284271247461903},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":3.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":3.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":2.0},"85":{"tf":2.8284271247461903},"91":{"tf":3.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"'":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"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":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"188":{"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":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":2.23606797749979},"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"@":{"0":{".":{"2":{"1":{".":{"1":{"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":{}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}}},"df":4,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"59":{"tf":2.6457513110645907},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"32":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"36":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"1":{"0":{"0":{"2":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"6":{"4":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"2":{"8":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"5":{"5":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"1":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"6":{"1":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"32":{"tf":1.0},"37":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"39":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"32":{"tf":1.0},"40":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"44":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"142":{"tf":1.0},"16":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"d":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"162":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"53":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"48":{"tf":2.449489742783178},"54":{"tf":1.0},"7":{"tf":1.0}}},"h":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"58":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"54":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"161":{"tf":1.0},"54":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"184":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"85":{"tf":1.0},"91":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"104":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"91":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.4142135623730951},"53":{"tf":2.6457513110645907}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"a":{"df":6,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"100":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"91":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"83":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"228":{"tf":2.0},"53":{"tf":2.23606797749979},"73":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":2.23606797749979},"115":{"tf":1.0},"118":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"53":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"53":{"tf":1.0}},"o":{"b":{"df":31,"docs":{"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"137":{"tf":3.4641016151377544},"139":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"194":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"93":{"tf":2.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"53":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"179":{"tf":2.0},"180":{"tf":2.0},"200":{"tf":1.0},"27":{"tf":1.4142135623730951},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"l":{"df":29,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"121":{"tf":2.0},"135":{"tf":2.0},"136":{"tf":1.0},"138":{"tf":3.4641016151377544},"154":{"tf":1.7320508075688772},"158":{"tf":2.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"214":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"52":{"tf":1.0},"54":{"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":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"g":{"df":4,"docs":{"105":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.0},"228":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.0},"77":{"tf":2.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"31":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":3.7416573867739413},"54":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":2.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"2":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"6":{"9":{"df":0,"docs":{},"f":{"4":{"4":{"2":{"9":{"9":{"8":{"df":0,"docs":{},"e":{"4":{"c":{"d":{"a":{"4":{"6":{"1":{"9":{"1":{"6":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"a":{"9":{"b":{"c":{"9":{"1":{"4":{"1":{"8":{"b":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"\"":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"91":{"tf":2.449489742783178}}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"142":{"tf":1.0},"17":{"tf":1.4142135623730951},"179":{"tf":2.0},"180":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"93":{"tf":2.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":66,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.449489742783178},"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},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"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.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":2.0},"17":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"22":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979},"62":{"tf":3.1622776601683795},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":3.3166247903554},"82":{"tf":3.0},"83":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":4.58257569495584},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"111":{"tf":1.0},"120":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":46,"docs":{"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"11":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":2.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":3.4641016151377544},"85":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"103":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":169,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"150":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":2.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":2.449489742783178},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":2.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":2.8284271247461903},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":2.0},"31":{"tf":2.449489742783178},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":3.0},"54":{"tf":2.8284271247461903},"55":{"tf":1.4142135623730951},"56":{"tf":2.0},"58":{"tf":2.0},"59":{"tf":1.7320508075688772},"62":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"8":{"tf":2.449489742783178},"80":{"tf":3.3166247903554},"82":{"tf":4.0},"83":{"tf":3.0},"85":{"tf":2.6457513110645907},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979},"91":{"tf":6.324555320336759},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979},"96":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":10,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.7320508075688772},"31":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"188":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"190":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"47":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"190":{"tf":1.0},"195":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"165":{"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":{"26":{"tf":1.0}}}}}}},"i":{"d":{"df":14,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"97":{"tf":2.23606797749979}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"154":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"228":{"tf":1.0},"53":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"3":{"tf":1.0},"47":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.0}},"k":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"49":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"162":{"tf":1.0},"169":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"174":{"tf":1.4142135623730951}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"n":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":15,"docs":{"210":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"62":{"tf":2.449489742783178},"7":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":2.6457513110645907},"85":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"57":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":3,"docs":{"107":{"tf":1.0},"110":{"tf":2.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"210":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"53":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}},"u":{"d":{"df":3,"docs":{"53":{"tf":3.3166247903554},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":19,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"210":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"53":{"tf":2.6457513110645907},"56":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"73":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"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":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}}},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"228":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"53":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"36":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.449489742783178},"73":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}},"x":{"df":2,"docs":{"53":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"107":{"tf":1.0},"29":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"34":{"tf":1.0},"47":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"62":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"i":{"d":{"df":3,"docs":{"24":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"n":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}}}}},"`":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":23,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}}}}}}}},"df":6,"docs":{"227":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}}}},"df":35,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"179":{"tf":2.8284271247461903},"180":{"tf":2.8284271247461903},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"20":{"tf":2.8284271247461903},"205":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":4.898979485566356},"91":{"tf":4.0},"93":{"tf":2.8284271247461903},"94":{"tf":2.449489742783178},"97":{"tf":3.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"160":{"tf":1.0},"34":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"162":{"tf":1.0},"171":{"tf":1.4142135623730951},"209":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":2.0},"19":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"11":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"54":{"tf":1.0},"98":{"tf":2.6457513110645907}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"162":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.0},"82":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"54":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":2.449489742783178},"90":{"tf":1.0},"91":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"176":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"158":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":3.3166247903554}}}}},"u":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"47":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"13":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":8,"docs":{"11":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":30,"docs":{"111":{"tf":2.449489742783178},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":2.23606797749979},"127":{"tf":2.23606797749979},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":2.0},"94":{"tf":1.4142135623730951},"98":{"tf":3.1622776601683795}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979}}}},"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":{"169":{"tf":1.0}}}}}}}},"df":17,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"139":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"82":{"tf":2.449489742783178}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"228":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":31,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"62":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":123,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.8284271247461903},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"62":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"62":{"tf":1.0},"91":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":1.7320508075688772},"85":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"26":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"df":0,"docs":{},"y":{"df":32,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":2.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":2.449489742783178},"31":{"tf":2.23606797749979},"44":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"65":{"tf":2.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"7":{"tf":2.6457513110645907},"71":{"tf":2.23606797749979},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"76":{"tf":2.449489742783178},"77":{"tf":2.0},"8":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":2.449489742783178}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":1.0},"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"210":{"tf":1.4142135623730951},"29":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":3.1622776601683795},"69":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":2.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"11":{"tf":2.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"6":{".":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":52,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"2":{"tf":2.0},"3":{"tf":2.0},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"57":{"tf":2.0},"59":{"tf":2.0},"6":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.6457513110645907},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"i":{"a":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"l":{"\\":{"0":{"0":{"\\":{"0":{"0":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"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":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"4":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"78":{"tf":1.0}}}},"y":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"176":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"100":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"10":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"54":{"tf":1.0},"62":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"52":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"28":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"228":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"62":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"54":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"83":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"108":{"tf":1.0},"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}},"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"131":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":3.605551275463989},"62":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"7":{"tf":1.0},"85":{"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":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"154":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"162":{"tf":1.0},"164":{"tf":1.4142135623730951},"18":{"tf":1.0},"62":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"103":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"53":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"10":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"53":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"170":{"tf":1.0},"82":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"188":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"102":{"tf":1.7320508075688772},"106":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"54":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"154":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"158":{"tf":1.0},"85":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.7320508075688772},"139":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":3.605551275463989},"27":{"tf":3.3166247903554},"28":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":2.449489742783178}}}}}},"s":{"2":{"0":{"2":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":9,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}}},"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":{"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"53":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":110,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979},"83":{"tf":1.7320508075688772},"85":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"161":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"170":{"tf":1.0},"176":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":2.0},"62":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979},"91":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"54":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"54":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"210":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772},"88":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"82":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"55":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":120,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":2.0},"91":{"tf":2.8284271247461903},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"210":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"16":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"27":{"tf":2.449489742783178},"4":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"31":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"139":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"121":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"82":{"tf":1.0},"91":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"13":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"78":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":19,"docs":{"0":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"19":{"tf":2.0},"28":{"tf":2.0},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}}}}},"l":{"(":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"193":{"tf":1.0},"85":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"24":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":1.0},"34":{"tf":1.0}}}},"d":{"df":6,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"160":{"tf":2.23606797749979}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"142":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.4142135623730951},"96":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}},"x":{"df":2,"docs":{"10":{"tf":1.0},"103":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"136":{"tf":1.0},"140":{"tf":3.7416573867739413},"83":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"136":{"tf":1.0},"141":{"tf":3.7416573867739413},"83":{"tf":2.6457513110645907},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":1,"docs":{"69":{"tf":1.0}}}}},"m":{"a":{"a":{"a":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":27,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"210":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.449489742783178},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"df":6,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"a":{"a":{"a":{"df":5,"docs":{"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"101":{"tf":1.0}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":2.23606797749979}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"4":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":5,"docs":{"110":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"n":{"c":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"115":{"tf":1.0},"181":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":6,"docs":{"136":{"tf":1.0},"142":{"tf":3.3166247903554},"179":{"tf":1.0},"180":{"tf":1.0},"83":{"tf":2.6457513110645907},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"142":{"tf":1.0}}},"df":23,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"85":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"210":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":13,"docs":{"18":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"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":1,"docs":{"191":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"m":{"b":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.4142135623730951},"80":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"i":{"b":{"df":6,"docs":{"19":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"49":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":2.23606797749979},"82":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":8,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":1.0}},"o":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"53":{"tf":3.3166247903554},"55":{"tf":1.0}}}},"w":{"df":4,"docs":{"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"220":{"tf":1.0},"228":{"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":{"53":{"tf":1.0},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"64":{"tf":1.0}}}}}},"h":{"1":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"28":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":6,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":4.242640687119285},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"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":1,"docs":{"10":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":2.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"48":{"tf":1.0},"55":{"tf":1.0}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"179":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"22":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"29":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.23606797749979},"204":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"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":6,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"228":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"8":{"tf":1.0}}}},"p":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"228":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":14,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"228":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"91":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":8,"docs":{"139":{"tf":1.4142135623730951},"29":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"103":{"tf":1.0},"135":{"tf":1.0},"29":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":2,"docs":{"22":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"228":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"17":{"tf":1.0}}}}}}}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"/":{"?":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"214":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":4,"docs":{"177":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":8,"docs":{"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"190":{"tf":1.0},"200":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"df":24,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":2.0}}}}}}}}},"s":{":":{"/":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"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":{"/":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"2":{"0":{"6":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"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":{}},"s":{"d":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"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":{},"h":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"k":{"c":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"6":{"4":{"2":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"0":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"c":{"'":{"df":2,"docs":{"54":{"tf":1.0},"80":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"120":{"tf":1.0},"158":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"91":{"tf":2.0},"97":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"118":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"204":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"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":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"135":{"tf":1.0}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"168":{"tf":1.0},"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"121":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.0},"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":2,"docs":{"123":{"tf":1.0},"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"d":{"1":{"2":{"8":{"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":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"158":{"tf":1.0},"91":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"130":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"173":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"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":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.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":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"227":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"97":{"tf":1.0}}}}}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"222":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"218":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"175":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"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":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"0":{"5":{"0":{"6":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":16,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":99,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":5.477225575051661},"54":{"tf":3.0},"55":{"tf":2.6457513110645907},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":2.0},"9":{"tf":1.4142135623730951},"91":{"tf":3.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"p":{"df":12,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"r":{"c":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}}},"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":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"\"":{">":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":2.23606797749979},"162":{"tf":1.0},"168":{"tf":1.7320508075688772},"3":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":4.58257569495584},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"104":{"tf":1.0},"53":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":131,"docs":{"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.4142135623730951},"119":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"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.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.7320508075688772},"85":{"tf":2.6457513110645907},"91":{"tf":3.3166247903554},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"228":{"tf":1.0}},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"24":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"101":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.7320508075688772},"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"78":{"tf":1.0},"93":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"19":{"tf":1.0},"228":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"58":{"tf":1.0},"62":{"tf":1.0}}}},"df":2,"docs":{"80":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":7,"docs":{"53":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":1,"docs":{"8":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"95":{"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":1,"docs":{"53":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"115":{"tf":2.0},"177":{"tf":1.0},"181":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}},"i":{"df":6,"docs":{"181":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"115":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"28":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"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":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"177":{"tf":1.0},"182":{"tf":1.0},"28":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"2":{"tf":2.6457513110645907},"201":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":3.0},"57":{"tf":2.6457513110645907},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"77":{"tf":1.0},"96":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"161":{"tf":1.0},"28":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"36":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"1":{"6":{"df":3,"docs":{"136":{"tf":1.0},"145":{"tf":3.7416573867739413},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"3":{"2":{"df":4,"docs":{"136":{"tf":1.0},"146":{"tf":3.7416573867739413},"161":{"tf":3.4641016151377544},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"136":{"tf":1.0},"147":{"tf":3.7416573867739413},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"136":{"tf":1.0},"144":{"tf":3.7416573867739413},"83":{"tf":2.6457513110645907},"97":{"tf":1.7320508075688772}}},"df":4,"docs":{"135":{"tf":2.0},"136":{"tf":1.0},"143":{"tf":3.7416573867739413},"83":{"tf":3.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"107":{"tf":1.0},"109":{"tf":1.7320508075688772},"53":{"tf":2.6457513110645907}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"n":{"d":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"f":{"a":{"c":{"df":4,"docs":{"68":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"27":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"107":{"tf":1.0},"20":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"53":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"56":{"tf":1.0},"80":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"77":{"tf":1.0}}}}},"t":{"'":{"df":7,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"75":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":1.7320508075688772},"36":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.449489742783178},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}},"s":{"df":5,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"85":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"85":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"16":{"tf":1.4142135623730951},"48":{"tf":1.0},"85":{"tf":1.0}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.7320508075688772}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"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":8,"docs":{"158":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":2.6457513110645907},"53":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"85":{"tf":3.3166247903554}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"6":{"tf":2.0},"70":{"tf":2.0}}}},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"142":{"tf":1.0},"53":{"tf":1.0}},"n":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"51":{"tf":1.7320508075688772},"85":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}},"m":{"df":0,"docs":{},"j":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"29":{"tf":1.0},"54":{"tf":2.6457513110645907},"56":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"91":{"tf":1.0}},"y":{"=":{"1":{"0":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"114":{"tf":1.0},"217":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"24":{"tf":1.0},"48":{"tf":1.0}}}},"t":{"'":{"df":6,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"25":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":1.0},"228":{"tf":2.0},"29":{"tf":3.0},"53":{"tf":2.0},"54":{"tf":2.23606797749979},"80":{"tf":2.449489742783178},"82":{"tf":2.8284271247461903}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":10,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"k":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}}}},"o":{"a":{"d":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.0},"65":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"8":{"tf":1.0}}},"t":{"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"101":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"228":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"57":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":4,"docs":{"135":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"t":{";":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"98":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"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":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"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":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0}}}}}}}},"df":5,"docs":{"131":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"31":{"tf":1.0},"89":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"p":{"(":{"(":{"_":{"df":1,"docs":{"85":{"tf":1.0}}},"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":2.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"h":{".":{"df":2,"docs":{"141":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"140":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}},"y":{"b":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"106":{"tf":1.0},"213":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"82":{"tf":2.0},"85":{"tf":3.872983346207417},"89":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":2.23606797749979},"53":{"tf":1.4142135623730951},"62":{"tf":2.8284271247461903},"67":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}}},"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"df":37,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"142":{"tf":1.0},"158":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":2.23606797749979},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":2.6457513110645907},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":3.1622776601683795},"81":{"tf":1.0},"82":{"tf":2.8284271247461903},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":4.123105625617661},"93":{"tf":1.0},"94":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"b":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"29":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":6,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"102":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"188":{"tf":1.0},"82":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"62":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0}}}}},"s":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}},"g":{"df":7,"docs":{"111":{"tf":2.449489742783178},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.7320508075688772},"82":{"tf":1.0}},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}},"v":{"df":1,"docs":{"47":{"tf":1.0}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":3.0},"74":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"205":{"tf":1.0},"34":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.0}}}},"t":{"1":{"6":{"df":6,"docs":{"136":{"tf":1.0},"150":{"tf":3.7416573867739413},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"136":{"tf":1.0},"151":{"tf":3.7416573867739413},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":2.6457513110645907},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{">":{"(":{"0":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"115":{"tf":2.23606797749979},"116":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"136":{"tf":1.0},"152":{"tf":3.7416573867739413},"165":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"91":{"tf":4.358898943540674}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"149":{"tf":3.7416573867739413},"214":{"tf":1.4142135623730951},"83":{"tf":3.0},"85":{"tf":2.6457513110645907}}},"df":7,"docs":{"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"136":{"tf":1.0},"148":{"tf":3.7416573867739413},"166":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951}},"e":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":5.196152422706632}}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":5.196152422706632}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"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":{"228":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"110":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"31":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"109":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}},"w":{"df":11,"docs":{"134":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":2.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"186":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"216":{"tf":1.0},"220":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":3.4641016151377544}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"n":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":2.449489742783178}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":11,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"2":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":2.6457513110645907},"57":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"154":{"tf":2.0},"169":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":2.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"139":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.0}},"i":{"df":5,"docs":{"111":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"91":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"129":{"tf":1.0},"164":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}},"w":{"df":7,"docs":{"110":{"tf":1.0},"210":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"101":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"3":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}},"x":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"153":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.0},"153":{"tf":3.872983346207417},"154":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":2.6457513110645907},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"83":{"tf":3.605551275463989},"94":{"tf":1.4142135623730951}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"167":{"tf":1.0},"170":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"103":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"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.7320508075688772},"155":{"tf":1.0},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"161":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":2.23606797749979},"85":{"tf":3.3166247903554},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":2,"docs":{"158":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}},"df":7,"docs":{"15":{"tf":1.0},"160":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"101":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"104":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"154":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"6":{"4":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"154":{"tf":1.0}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":2.0}}}}}}}},"df":11,"docs":{"136":{"tf":1.0},"154":{"tf":2.8284271247461903},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"85":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"228":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"135":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":1,"docs":{"53":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"78":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"200":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"173":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":1,"docs":{"54":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":2.8284271247461903}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":2.23606797749979},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"62":{"tf":1.0},"80":{"tf":2.23606797749979},"83":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"53":{"tf":1.7320508075688772},"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"139":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{"$":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"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":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":1.0}}}},"y":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"130":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"r":{"df":5,"docs":{"178":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"158":{"tf":1.0},"162":{"tf":1.0},"172":{"tf":1.0},"22":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"80":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"181":{"tf":1.0},"214":{"tf":1.0},"53":{"tf":2.6457513110645907},"62":{"tf":2.23606797749979},"80":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}},"n":{"df":1,"docs":{"85":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"53":{"tf":2.6457513110645907},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772}}}}}}},"o":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"170":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"53":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"18":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":6,"docs":{"177":{"tf":1.0},"183":{"tf":1.0},"3":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"183":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"54":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"177":{"tf":1.0},"184":{"tf":1.0},"27":{"tf":1.0},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"228":{"tf":1.0}},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":3,"docs":{"142":{"tf":1.0},"155":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":3,"docs":{"129":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":29,"docs":{"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"129":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"155":{"tf":4.0},"156":{"tf":2.23606797749979},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"53":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"85":{"tf":3.872983346207417},"91":{"tf":2.8284271247461903},"94":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":2.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"162":{"tf":1.0},"173":{"tf":1.7320508075688772},"27":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}},"df":1,"docs":{"143":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":1,"docs":{"148":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.7320508075688772}}},"m":{"b":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"54":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"85":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":2.0},"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"77":{"tf":1.0},"91":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"53":{"tf":1.0}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":87,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{".":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"11":{"tf":1.4142135623730951},"17":{"tf":1.0},"211":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"154":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.449489742783178},"20":{"tf":1.7320508075688772},"228":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":1.7320508075688772},"55":{"tf":2.0}}}}},"df":1,"docs":{"47":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":3.7416573867739413},"54":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":1.0},"202":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"53":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"212":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":2,"docs":{"139":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"q":{"a":{"a":{"a":{"df":0,"docs":{},"q":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":73,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":2.8284271247461903},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.23606797749979},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.6457513110645907},"159":{"tf":2.0},"160":{"tf":2.0},"161":{"tf":2.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.0},"17":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":2.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"200":{"tf":1.0},"214":{"tf":2.449489742783178},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":3.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":4.898979485566356},"82":{"tf":3.0},"83":{"tf":2.8284271247461903},"85":{"tf":3.3166247903554},"91":{"tf":4.358898943540674},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"y":{"(":{"[":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"137":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"179":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":1,"docs":{"143":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"151":{"tf":1.0},"217":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"152":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"155":{"tf":1.0},"171":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"159":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"j":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":2.0}},"s":{"_":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"18":{"tf":1.0},"55":{"tf":1.0}}}},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"190":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"111":{"tf":2.449489742783178},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"160":{"tf":3.1622776601683795}}}}}}},"d":{"df":9,"docs":{"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"221":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":2.0},"89":{"tf":1.0}},"i":{"df":3,"docs":{"54":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"101":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"142":{"tf":1.0},"80":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.0},"124":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":2,"docs":{"123":{"tf":1.0},"125":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"129":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"15":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":13,"docs":{"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"156":{"tf":3.0},"179":{"tf":2.449489742783178},"180":{"tf":2.449489742783178},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"54":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":3.0},"85":{"tf":4.358898943540674},"93":{"tf":2.449489742783178},"97":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"1":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"85":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":1,"docs":{"85":{"tf":2.449489742783178}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":7,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"20":{"tf":1.0},"27":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"106":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"5":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"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":{"54":{"tf":1.7320508075688772}}}}}}}}}}},"df":3,"docs":{"228":{"tf":1.0},"29":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"214":{"tf":1.0},"53":{"tf":2.449489742783178},"73":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"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":1,"docs":{"97":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"'":{"df":2,"docs":{"173":{"tf":1.0},"26":{"tf":1.0}}},"df":16,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"5":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"53":{"tf":2.449489742783178},"55":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":3,"docs":{"111":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":2,"docs":{"211":{"tf":1.0},"49":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"78":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.0},"93":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"108":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"29":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"139":{"tf":1.0},"22":{"tf":1.7320508075688772},"31":{"tf":1.0},"47":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"b":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"d":{"b":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"14":{"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":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"136":{"tf":1.0},"157":{"tf":3.605551275463989},"18":{"tf":1.0},"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"20":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":8,"docs":{"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":1.0},"91":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":2.0}}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"df":2,"docs":{"48":{"tf":1.0},"62":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":6,"docs":{"17":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"105":{"tf":1.0},"53":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":104,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"17":{"tf":2.6457513110645907},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.23606797749979},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":3.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"62":{"tf":2.23606797749979},"80":{"tf":2.449489742783178},"82":{"tf":2.6457513110645907},"83":{"tf":1.7320508075688772},"85":{"tf":5.196152422706632},"91":{"tf":3.872983346207417},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"v":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}}}},"f":{"df":1,"docs":{"10":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"28":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"53":{"tf":2.0},"54":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"31":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"36":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":27,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"49":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"210":{"tf":1.4142135623730951},"47":{"tf":1.0},"75":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"53":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"54":{"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":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"10":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":1,"docs":{"47":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"142":{"tf":1.0},"178":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"80":{"tf":2.0},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"199":{"tf":1.0},"205":{"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":85,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"100":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":2.23606797749979},"54":{"tf":2.0},"55":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"13":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":1,"docs":{"54":{"tf":1.0}}},"m":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}},"n":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"d":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"127":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"16":{"tf":1.4142135623730951},"53":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"139":{"tf":1.0},"16":{"tf":1.0},"48":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"103":{"tf":1.0},"85":{"tf":3.4641016151377544},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}}}}}}}},"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":4.0},"27":{"tf":1.0}}}},"i":{"c":{"df":28,"docs":{"110":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.6457513110645907},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"83":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":22,"docs":{"14":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"209":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"115":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"0":{".":{"3":{"9":{".":{"7":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"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":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"58":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"98":{"tf":2.449489742783178}},"n":{"df":2,"docs":{"5":{"tf":1.0},"91":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":2.0},"22":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"205":{"tf":1.0}}}}}}}}}}}}},"df":2,"docs":{"205":{"tf":1.0},"53":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"24":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"53":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"210":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":6,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.7320508075688772},"80":{"tf":2.0},"82":{"tf":1.4142135623730951},"97":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"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":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"19":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"228":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"0":{"5":{"0":{"6":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"2":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"154":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"91":{"tf":3.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"55":{"tf":1.0},"91":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":10,"docs":{"10":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"73":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"212":{"tf":1.0},"4":{"tf":1.0}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"228":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"11":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"106":{"tf":1.0},"213":{"tf":2.6457513110645907},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":3.1622776601683795}},"e":{"6":{"4":{"df":5,"docs":{"213":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"222":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0}}}}}}}},"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":2,"docs":{"214":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":2.0},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}}}},"df":12,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"214":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.0},"85":{"tf":4.795831523312719},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"218":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"28":{"tf":1.0},"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"6":{"tf":2.6457513110645907},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"77":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"176":{"tf":1.0},"210":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"56":{"tf":3.0},"58":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":2.0},"70":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"18":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"97":{"tf":2.449489742783178}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"47":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"10":{"tf":1.0},"176":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"181":{"tf":1.0},"214":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"105":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.7320508075688772},"58":{"tf":1.0},"62":{"tf":2.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"142":{"tf":1.7320508075688772},"159":{"tf":2.23606797749979},"163":{"tf":1.0},"164":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"62":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.7320508075688772},"16":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"108":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":3.0},"62":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"102":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":5,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"101":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"135":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"83":{"tf":1.0}}},"3":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"228":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"63":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"161":{"tf":1.0}},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":2.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":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":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{">":{"(":{"0":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":2.0},"117":{"tf":2.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"142":{"tf":2.8284271247461903},"156":{"tf":1.7320508075688772},"158":{"tf":2.6457513110645907},"159":{"tf":3.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.7320508075688772},"173":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":2.6457513110645907},"180":{"tf":2.6457513110645907},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":1.0},"214":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":3.0},"80":{"tf":2.449489742783178},"82":{"tf":3.4641016151377544},"83":{"tf":3.4641016151377544},"85":{"tf":3.7416573867739413},"93":{"tf":2.6457513110645907},"94":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"j":{"df":1,"docs":{"4":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"62":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}},"k":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"r":{"d":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"102":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"104":{"tf":1.0},"53":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"53":{"tf":1.0},"55":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"72":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":8,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"53":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"173":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":2.449489742783178},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"w":{"df":7,"docs":{"121":{"tf":1.0},"139":{"tf":1.4142135623730951},"182":{"tf":1.0},"27":{"tf":1.4142135623730951},"82":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"161":{"tf":1.0},"22":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"82":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"162":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.0},"54":{"tf":1.7320508075688772},"91":{"tf":1.0}},"r":{"df":10,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":2.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.7320508075688772}},"i":{"d":{"df":4,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"97":{"tf":3.3166247903554}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"1":{".":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":2.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"53":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":2.23606797749979},"91":{"tf":3.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"91":{"tf":1.4142135623730951},"93":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"1":{".":{"7":{"3":{".":{"0":{"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":5,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0}}}},"p":{"df":1,"docs":{"18":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}}},"k":{"df":4,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"115":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"91":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"162":{"tf":1.0},"176":{"tf":1.7320508075688772},"82":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":31,"docs":{"11":{"tf":1.0},"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"83":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"y":{".":{".":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.7320508075688772},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":7,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0}}}},"y":{"a":{"a":{"a":{"df":5,"docs":{"129":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":46,"docs":{"11":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.7320508075688772},"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.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"214":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":3.872983346207417},"91":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":7,"docs":{"115":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"214":{"tf":1.4142135623730951},"85":{"tf":2.8284271247461903},"97":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"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":5,"docs":{"210":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":31,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"62":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"58":{"tf":1.0},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"[":{"8":{"3":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"6":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}}},"df":3,"docs":{"137":{"tf":1.4142135623730951},"161":{"tf":1.0},"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"r":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"210":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"73":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"52":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"50":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":72,"docs":{"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"174":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.0},"186":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"62":{"tf":2.8284271247461903},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":4.58257569495584},"83":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"91":{"tf":4.123105625617661},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"[":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"174":{"tf":1.0},"194":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"220":{"tf":1.0},"223":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":9,"docs":{"115":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"186":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"62":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"209":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"174":{"tf":1.0},"19":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"177":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"13":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"94":{"tf":2.0}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"105":{"tf":1.0},"54":{"tf":1.7320508075688772},"88":{"tf":1.0}}}},"df":53,"docs":{"0":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"161":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":2.23606797749979},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"85":{"tf":2.8284271247461903},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},">":{"(":{"0":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"85":{"tf":2.23606797749979}}}}}}}}}}}}}},"df":5,"docs":{"156":{"tf":3.1622776601683795},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"85":{"tf":4.358898943540674}},"i":{"d":{"df":1,"docs":{"85":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":2.23606797749979},"85":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"85":{"tf":2.449489742783178}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"v":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":20,"docs":{"105":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"142":{"tf":1.0},"154":{"tf":1.4142135623730951},"158":{"tf":1.0},"214":{"tf":2.6457513110645907},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"62":{"tf":2.449489742783178},"80":{"tf":2.23606797749979},"82":{"tf":3.7416573867739413},"83":{"tf":2.0},"85":{"tf":4.358898943540674},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},">":{"(":{"0":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"106":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"135":{"tf":2.23606797749979},"136":{"tf":1.0},"154":{"tf":1.7320508075688772},"158":{"tf":1.0},"160":{"tf":3.3166247903554},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"85":{"tf":2.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"55":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.6457513110645907},"83":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"136":{"tf":1.0},"137":{"tf":2.0},"161":{"tf":3.0},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.6457513110645907},"85":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"85":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"162":{"tf":1.0},"167":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":2,"docs":{"68":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"3":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":3.4641016151377544},"91":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.0}}}},"s":{"df":2,"docs":{"53":{"tf":1.0},"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"139":{"tf":1.4142135623730951},"18":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"m":{"3":{"2":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":2.23606797749979},"53":{"tf":3.1622776601683795},"56":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":2.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"139":{"tf":1.0},"15":{"tf":1.0},"53":{"tf":1.7320508075688772},"72":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"58":{"tf":1.4142135623730951},"62":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":1,"docs":{"54":{"tf":1.0}}},"v":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}},"b":{"3":{"df":1,"docs":{"51":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"31":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"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":{"0":{"tf":1.0},"171":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":7,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":2.0},"91":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"77":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"5":{"0":{"0":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"176":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.7320508075688772},"62":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"49":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":96,"docs":{"101":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"l":{"d":{"df":14,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":2.0},"3":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"210":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"x":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"k":{"c":{"d":{"df":1,"docs":{"200":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":4,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":1,"docs":{"61":{"tf":1.0}}},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772}}},"df":6,"docs":{"137":{"tf":2.0},"161":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"129":{"tf":1.0},"16":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"x":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"6":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"1":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"'":{"*":{"'":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":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":{"80":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"134":{"tf":1.0}}},"5":{"df":1,"docs":{"134":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"29":{"tf":1.0}}}},"1":{"0":{"6":{"4":{"3":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"134":{"tf":1.0}}},"4":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"134":{"tf":1.0}}},"7":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"6":{"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":2,"docs":{"144":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"8":{"df":9,"docs":{"111":{"tf":2.449489742783178},"117":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"162":{"tf":1.0},"166":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.4142135623730951}}},"4":{":":{"3":{"5":{":":{"3":{"0":{".":{"4":{"3":{"3":{"5":{"0":{"1":{"9":{"8":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"3":{"4":{".":{"6":{"5":{"2":{"5":{"8":{"7":{"4":{"1":{"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"_":{"1":{"4":{"1":{"_":{"1":{"8":{"3":{"_":{"4":{"6":{"0":{"_":{"4":{"6":{"9":{"_":{"2":{"3":{"1":{"_":{"7":{"3":{"1":{"_":{"6":{"8":{"7":{"_":{"3":{"0":{"3":{"_":{"7":{"1":{"5":{"_":{"8":{"8":{"4":{"_":{"1":{"0":{"5":{"_":{"7":{"2":{"7":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"143":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"27":{"tf":1.4142135623730951}},"t":{"1":{"4":{":":{"3":{"5":{":":{"3":{"1":{".":{"9":{"8":{"3":{"5":{"9":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"1":{":":{"3":{"9":{".":{"1":{"9":{"4":{"3":{"7":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"_":{"4":{"4":{"6":{"_":{"7":{"4":{"4":{"_":{"0":{"7":{"3":{"_":{"7":{"0":{"9":{"_":{"5":{"5":{"1":{"_":{"6":{"1":{"5":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"152":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"161":{"tf":1.7320508075688772},"178":{"tf":1.0},"228":{"tf":2.0},"29":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"2":{".":{"0":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"7":{"1":{"8":{"2":{"8":{"1":{"8":{"2":{"8":{"4":{"5":{"9":{"0":{"4":{"5":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"228":{"tf":1.0}}},"4":{"df":4,"docs":{"0":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"54":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"57":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}},"5":{"4":{"df":1,"docs":{"85":{"tf":1.0}}},"5":{"df":2,"docs":{"149":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"4":{"7":{"_":{"4":{"8":{"3":{"_":{"6":{"4":{"7":{"df":2,"docs":{"146":{"tf":1.7320508075688772},"83":{"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":8,"docs":{"103":{"tf":1.0},"161":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0},"82":{"tf":1.4142135623730951},"88":{"tf":1.0}},"i":{"a":{"a":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"7":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0}}},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"3":{".":{"1":{"4":{"1":{"5":{"9":{"2":{"7":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"7":{"6":{"7":{"df":2,"docs":{"145":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"174":{"tf":1.0},"205":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"3":{"df":1,"docs":{"134":{"tf":1.0}}},"4":{"0":{"_":{"2":{"8":{"2":{"_":{"3":{"6":{"6":{"_":{"9":{"2":{"0":{"_":{"9":{"3":{"8":{"_":{"4":{"6":{"3":{"_":{"4":{"6":{"3":{"_":{"3":{"7":{"4":{"_":{"6":{"0":{"7":{"_":{"4":{"3":{"1":{"_":{"7":{"6":{"8":{"_":{"2":{"1":{"1":{"_":{"4":{"5":{"5":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"6":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":4,"docs":{"161":{"tf":1.7320508075688772},"18":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}},"2":{"df":1,"docs":{"135":{"tf":1.0}}},"_":{"2":{"9":{"4":{"_":{"9":{"6":{"7":{"_":{"2":{"9":{"5":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"83":{"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":5,"docs":{"228":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772}}},"5":{"0":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}},"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":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"a":{"a":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"2":{"6":{"9":{"2":{"3":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"1":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"_":{"5":{"3":{"5":{"df":2,"docs":{"150":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"a":{"a":{"a":{"a":{"df":3,"docs":{"115":{"tf":1.0},"142":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"6":{"c":{"3":{"5":{"5":{"8":{"a":{"a":{"d":{"2":{"4":{"2":{"2":{"4":{"8":{"5":{"2":{"a":{"9":{"5":{"8":{"2":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"1":{"7":{"8":{"4":{"0":{"2":{"c":{"b":{"3":{"6":{"7":{"9":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"27":{"tf":1.0},"94":{"tf":2.0}}},"9":{"0":{"0":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":1,"docs":{"19":{"tf":1.0}}},"6":{"df":3,"docs":{"56":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"_":{"2":{"2":{"3":{"_":{"3":{"7":{"2":{"_":{"0":{"3":{"6":{"_":{"8":{"5":{"4":{"_":{"7":{"7":{"5":{"_":{"8":{"0":{"7":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"147":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}},"_":{"df":1,"docs":{"80":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"17":{"tf":2.0},"27":{"tf":1.4142135623730951}}}}}},"a":{"a":{"a":{"a":{"a":{"df":14,"docs":{"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"68":{"tf":2.0},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"91":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"q":{"df":5,"docs":{"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"b":{"a":{"df":5,"docs":{"129":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{},"q":{"df":3,"docs":{"115":{"tf":1.0},"142":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"158":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"82":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"13":{"tf":1.0},"182":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"}":{"$":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"142":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"28":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"57":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"df":2,"docs":{"77":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":1,"docs":{"83":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"22":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"62":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"210":{"tf":1.0},"53":{"tf":3.7416573867739413},"56":{"tf":1.4142135623730951},"62":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"j":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.0},"182":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"70":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"47":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"115":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"91":{"tf":3.872983346207417}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"212":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":2.8284271247461903}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"59":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"139":{"tf":2.0},"157":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":59,"docs":{"101":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"210":{"tf":1.4142135623730951},"22":{"tf":1.0},"53":{"tf":3.4641016151377544},"54":{"tf":2.0},"56":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"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":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"'":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":8,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"53":{"tf":1.0}},"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":{"3":{"tf":1.0},"53":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":21,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":4.123105625617661},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"75":{"tf":1.0},"85":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"y":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"1":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"2":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"3":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"4":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":27,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"128":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"139":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"2":{"9":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"0":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"(":{"(":{"a":{"c":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"142":{"tf":1.0},"161":{"tf":1.0},"19":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":3.7416573867739413},"31":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"17":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"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":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"175":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"85":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"85":{"tf":2.6457513110645907}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":2.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":1.7320508075688772},"22":{"tf":2.0},"53":{"tf":2.23606797749979}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":2.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"df":8,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":2.449489742783178}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.6457513110645907},"33":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"111":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"53":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":34,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":3.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":2.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"187":{"tf":1.0},"210":{"tf":1.0}}},"y":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":160,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":2.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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":2.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.8284271247461903},"48":{"tf":1.0},"49":{"tf":2.0},"50":{"tf":2.23606797749979},"51":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"53":{"tf":2.0},"54":{"tf":3.1622776601683795},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":3.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":2.0},"85":{"tf":2.8284271247461903},"91":{"tf":3.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"'":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"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":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"188":{"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":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":2.23606797749979},"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"@":{"0":{".":{"2":{"1":{".":{"1":{"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":{}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}}},"df":4,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"59":{"tf":2.6457513110645907},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"32":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"1":{"0":{"0":{"2":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"6":{"4":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"2":{"8":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"5":{"5":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"1":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"6":{"1":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"32":{"tf":1.0},"37":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"32":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"41":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"142":{"tf":1.0},"16":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"d":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"162":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":184,"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.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},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"48":{"tf":2.8284271247461903},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"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},"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},"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},"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}}},"h":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"58":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"54":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"161":{"tf":1.0},"54":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"184":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"85":{"tf":1.0},"91":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"104":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"91":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.7320508075688772},"53":{"tf":2.8284271247461903}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"a":{"df":9,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"100":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"91":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"83":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"228":{"tf":2.449489742783178},"53":{"tf":2.23606797749979},"73":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":13,"docs":{"106":{"tf":1.0},"107":{"tf":2.23606797749979},"108":{"tf":1.0},"109":{"tf":2.6457513110645907},"110":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"53":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"53":{"tf":1.0}},"o":{"b":{"df":31,"docs":{"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"137":{"tf":3.7416573867739413},"139":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"194":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"93":{"tf":2.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"53":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"179":{"tf":2.0},"180":{"tf":2.0},"200":{"tf":1.0},"27":{"tf":1.4142135623730951},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":2.23606797749979},"83":{"tf":1.0}}},"l":{"df":29,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"121":{"tf":2.0},"135":{"tf":2.0},"136":{"tf":1.0},"138":{"tf":3.7416573867739413},"154":{"tf":1.7320508075688772},"158":{"tf":2.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"214":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"52":{"tf":1.0},"54":{"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":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"g":{"df":4,"docs":{"105":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.0},"228":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.0},"77":{"tf":2.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"31":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":3.7416573867739413},"54":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":2.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":2.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"2":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"6":{"9":{"df":0,"docs":{},"f":{"4":{"4":{"2":{"9":{"9":{"8":{"df":0,"docs":{},"e":{"4":{"c":{"d":{"a":{"4":{"6":{"1":{"9":{"1":{"6":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"a":{"9":{"b":{"c":{"9":{"1":{"4":{"1":{"8":{"b":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"\"":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"91":{"tf":2.449489742783178}}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"142":{"tf":1.0},"17":{"tf":1.4142135623730951},"179":{"tf":2.0},"180":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"93":{"tf":2.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":83,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.8284271247461903},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"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},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"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.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":2.0},"17":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"22":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979},"62":{"tf":3.1622776601683795},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":3.3166247903554},"82":{"tf":3.0},"83":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":4.58257569495584},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"111":{"tf":1.0},"120":{"tf":2.0},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":184,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"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},"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},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":2.0},"137":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":2.23606797749979},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":2.0},"160":{"tf":2.0},"161":{"tf":2.0},"162":{"tf":1.7320508075688772},"163":{"tf":2.449489742783178},"164":{"tf":2.449489742783178},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"31":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"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.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":3.872983346207417},"84":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.0},"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}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"103":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":169,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"150":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":2.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":2.449489742783178},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"162":{"tf":2.6457513110645907},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":2.6457513110645907},"166":{"tf":2.6457513110645907},"167":{"tf":2.449489742783178},"168":{"tf":2.449489742783178},"169":{"tf":2.0},"17":{"tf":1.4142135623730951},"170":{"tf":2.0},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":2.0},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"184":{"tf":2.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":2.8284271247461903},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":2.0},"31":{"tf":2.449489742783178},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":3.0},"54":{"tf":2.8284271247461903},"55":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"58":{"tf":2.0},"59":{"tf":1.7320508075688772},"62":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":2.449489742783178},"69":{"tf":1.0},"7":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"8":{"tf":2.6457513110645907},"80":{"tf":3.3166247903554},"82":{"tf":4.0},"83":{"tf":3.0},"85":{"tf":2.6457513110645907},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":2.449489742783178},"91":{"tf":6.48074069840786},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":2.6457513110645907},"96":{"tf":2.8284271247461903},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":10,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.7320508075688772},"31":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"188":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"190":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"47":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"190":{"tf":1.0},"195":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"165":{"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":{"26":{"tf":1.0}}}}}}},"i":{"d":{"df":14,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"97":{"tf":2.23606797749979}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"154":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"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},"228":{"tf":1.0},"53":{"tf":1.0},"86":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"3":{"tf":1.0},"47":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.0}},"k":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"49":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"162":{"tf":1.0},"169":{"tf":2.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"174":{"tf":2.0}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"n":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":15,"docs":{"210":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"62":{"tf":2.449489742783178},"7":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":2.6457513110645907},"85":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"57":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":3,"docs":{"107":{"tf":1.0},"110":{"tf":2.23606797749979},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"210":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"53":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}},"u":{"d":{"df":3,"docs":{"53":{"tf":3.3166247903554},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":19,"docs":{"111":{"tf":1.0},"132":{"tf":1.7320508075688772},"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"210":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"53":{"tf":2.6457513110645907},"56":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"73":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"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":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"3":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}}},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"228":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":2.8284271247461903},"53":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"36":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.449489742783178},"73":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}},"x":{"df":2,"docs":{"53":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"107":{"tf":1.0},"29":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"34":{"tf":1.0},"47":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"62":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"i":{"d":{"df":3,"docs":{"24":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"n":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}}}}},"`":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":23,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}}}}}}}},"df":6,"docs":{"227":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}}}},"df":35,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"179":{"tf":2.8284271247461903},"180":{"tf":2.8284271247461903},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"20":{"tf":2.8284271247461903},"205":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":4.898979485566356},"91":{"tf":4.0},"93":{"tf":2.8284271247461903},"94":{"tf":2.449489742783178},"97":{"tf":3.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"160":{"tf":1.0},"34":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"162":{"tf":1.0},"171":{"tf":2.0},"209":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":2.0},"19":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"11":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"54":{"tf":1.0},"98":{"tf":2.6457513110645907}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"162":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"54":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":2.449489742783178},"90":{"tf":1.0},"91":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"196":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"176":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"158":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":3.605551275463989}}}}},"u":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"47":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"13":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":8,"docs":{"11":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":30,"docs":{"111":{"tf":2.449489742783178},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":2.23606797749979},"125":{"tf":2.23606797749979},"126":{"tf":2.6457513110645907},"127":{"tf":2.6457513110645907},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":2.0},"94":{"tf":1.4142135623730951},"98":{"tf":3.4641016151377544}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979}}}},"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":{"169":{"tf":1.0}}}}}}}},"df":17,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":2.0},"139":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.4142135623730951},"169":{"tf":2.0},"174":{"tf":2.23606797749979},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"82":{"tf":2.449489742783178}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"228":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":31,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.0},"62":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":123,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.8284271247461903},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"62":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"62":{"tf":1.0},"91":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"197":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":2.0},"85":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"26":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"df":0,"docs":{},"y":{"df":36,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":2.6457513110645907},"31":{"tf":2.23606797749979},"44":{"tf":1.0},"5":{"tf":2.6457513110645907},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"6":{"tf":1.0},"65":{"tf":2.23606797749979},"66":{"tf":2.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":2.6457513110645907},"7":{"tf":3.0},"70":{"tf":1.0},"71":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":2.23606797749979},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":2.8284271247461903},"77":{"tf":2.449489742783178},"8":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":2.8284271247461903}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":1.0},"198":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"210":{"tf":1.4142135623730951},"29":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":3.1622776601683795},"69":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":2.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"11":{"tf":2.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"6":{".":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":52,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"2":{"tf":2.0},"3":{"tf":2.0},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"57":{"tf":2.0},"59":{"tf":2.0},"6":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.8284271247461903},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"i":{"a":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"l":{"\\":{"0":{"0":{"\\":{"0":{"0":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"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":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"4":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":1.0}}}},"y":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"176":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"100":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"10":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"54":{"tf":1.0},"62":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":182,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"48":{"tf":2.23606797749979},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.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},"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}}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"52":{"tf":1.7320508075688772},"54":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"28":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"228":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"62":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"54":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"83":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"108":{"tf":1.0},"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}},"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"131":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":3.872983346207417},"62":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"7":{"tf":1.0},"85":{"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":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"154":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"162":{"tf":1.0},"164":{"tf":2.0},"18":{"tf":1.0},"62":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"103":{"tf":2.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"103":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"53":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"10":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"53":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"170":{"tf":1.0},"82":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"188":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":31,"docs":{"102":{"tf":2.0},"106":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"2":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"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},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"54":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"154":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"158":{"tf":1.0},"85":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.7320508075688772},"139":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":3.605551275463989},"27":{"tf":3.4641016151377544},"28":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":2.449489742783178}}}}}},"s":{"2":{"0":{"2":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":9,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}}},"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":{"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"53":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":110,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979},"8":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979},"83":{"tf":1.7320508075688772},"85":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"161":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"170":{"tf":1.0},"176":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":2.0},"62":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979},"91":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"54":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"54":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"210":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772},"88":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"82":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"55":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":120,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":2.0},"91":{"tf":2.8284271247461903},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"210":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"16":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"27":{"tf":2.449489742783178},"4":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"31":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"139":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"121":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"82":{"tf":1.0},"91":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"13":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"78":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":19,"docs":{"0":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"19":{"tf":2.0},"28":{"tf":2.0},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}}}}},"l":{"(":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"193":{"tf":1.0},"85":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"24":{"tf":1.0},"28":{"tf":2.23606797749979},"31":{"tf":1.0},"34":{"tf":1.0}}}},"d":{"df":6,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"160":{"tf":2.23606797749979}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"142":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.4142135623730951},"96":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}},"x":{"df":2,"docs":{"10":{"tf":1.0},"103":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"136":{"tf":1.0},"140":{"tf":4.0},"83":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"105":{"tf":1.7320508075688772},"136":{"tf":1.0},"141":{"tf":4.0},"83":{"tf":2.6457513110645907},"87":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":1,"docs":{"69":{"tf":1.0}}}}},"m":{"a":{"a":{"a":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":27,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"210":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.449489742783178},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"df":6,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"a":{"a":{"a":{"df":5,"docs":{"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"101":{"tf":1.0}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":2.23606797749979}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"4":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":5,"docs":{"110":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"n":{"c":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"115":{"tf":1.0},"181":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":6,"docs":{"136":{"tf":1.0},"142":{"tf":3.605551275463989},"179":{"tf":1.0},"180":{"tf":1.0},"83":{"tf":2.6457513110645907},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"142":{"tf":1.0}}},"df":23,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"85":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"210":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":13,"docs":{"18":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"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":1,"docs":{"191":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"m":{"b":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.4142135623730951},"80":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"i":{"b":{"df":6,"docs":{"19":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"49":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":2.23606797749979},"82":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":8,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":1.0}},"o":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"53":{"tf":3.3166247903554},"55":{"tf":1.0}}}},"w":{"df":4,"docs":{"213":{"tf":1.4142135623730951},"216":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"228":{"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":{"53":{"tf":1.0},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"64":{"tf":1.0}}}}}},"h":{"1":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"28":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":6,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":4.242640687119285},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"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":1,"docs":{"10":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":2.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"48":{"tf":1.0},"55":{"tf":1.0}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"179":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"22":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"29":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.6457513110645907},"204":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"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":6,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"228":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"8":{"tf":1.0}}}},"p":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"228":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":14,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"228":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"91":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":8,"docs":{"139":{"tf":1.4142135623730951},"29":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"135":{"tf":1.0},"29":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"228":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":2.0},"17":{"tf":1.0}}}}}}}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"/":{"?":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"214":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":4,"docs":{"177":{"tf":1.0},"180":{"tf":1.4142135623730951},"22":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":8,"docs":{"177":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":1.4142135623730951},"190":{"tf":1.0},"200":{"tf":1.7320508075688772},"22":{"tf":1.0},"31":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"df":24,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":2.0}}}}}}}}},"s":{":":{"/":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"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":{"/":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"2":{"0":{"6":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"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":{}},"s":{"d":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"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":{},"h":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"k":{"c":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"6":{"4":{"2":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"0":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"c":{"'":{"df":2,"docs":{"54":{"tf":1.0},"80":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"120":{"tf":1.0},"158":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"91":{"tf":2.0},"97":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"118":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"204":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"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":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"135":{"tf":1.0}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"168":{"tf":1.0},"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"121":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.0},"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":2,"docs":{"123":{"tf":1.0},"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"d":{"1":{"2":{"8":{"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":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"158":{"tf":1.0},"91":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"130":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"173":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"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":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.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":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"227":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"97":{"tf":1.0}}}}}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"222":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"218":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"175":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"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":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"0":{"5":{"0":{"6":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":16,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":99,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":5.477225575051661},"54":{"tf":3.0},"55":{"tf":2.6457513110645907},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":2.0},"9":{"tf":1.4142135623730951},"91":{"tf":3.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"p":{"df":12,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"r":{"c":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}}},"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":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"\"":{">":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":2.23606797749979},"162":{"tf":1.0},"168":{"tf":2.23606797749979},"3":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":4.58257569495584},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"104":{"tf":1.0},"53":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":131,"docs":{"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.4142135623730951},"119":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"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.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.7320508075688772},"85":{"tf":2.6457513110645907},"91":{"tf":3.3166247903554},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"228":{"tf":1.0}},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"24":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"101":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.7320508075688772},"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"78":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"19":{"tf":1.0},"228":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"58":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":2,"docs":{"80":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":7,"docs":{"53":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":1,"docs":{"8":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"95":{"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":1,"docs":{"53":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"115":{"tf":2.0},"177":{"tf":1.0},"181":{"tf":2.6457513110645907},"94":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}},"i":{"df":6,"docs":{"181":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"115":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"28":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"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":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"177":{"tf":1.0},"182":{"tf":1.7320508075688772},"28":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"2":{"tf":2.8284271247461903},"201":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":3.0},"57":{"tf":3.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"77":{"tf":1.0},"96":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"201":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"161":{"tf":1.0},"28":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":2.0},"29":{"tf":1.4142135623730951},"36":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"1":{"6":{"df":3,"docs":{"136":{"tf":1.0},"145":{"tf":4.0},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"3":{"2":{"df":4,"docs":{"136":{"tf":1.0},"146":{"tf":4.0},"161":{"tf":3.4641016151377544},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"136":{"tf":1.0},"147":{"tf":4.0},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"136":{"tf":1.0},"144":{"tf":4.0},"83":{"tf":2.6457513110645907},"97":{"tf":1.7320508075688772}}},"df":4,"docs":{"135":{"tf":2.0},"136":{"tf":1.0},"143":{"tf":4.0},"83":{"tf":3.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"107":{"tf":1.0},"109":{"tf":2.0},"53":{"tf":2.6457513110645907}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"n":{"d":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"75":{"tf":1.0},"8":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"f":{"a":{"c":{"df":4,"docs":{"68":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"27":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"107":{"tf":1.0},"20":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"224":{"tf":1.0},"227":{"tf":2.0},"97":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"53":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"56":{"tf":1.0},"80":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"10":{"tf":1.7320508075688772},"101":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"t":{"'":{"df":7,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"75":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"102":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":2.23606797749979},"31":{"tf":1.7320508075688772},"36":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.449489742783178},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}},"s":{"df":5,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"85":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"85":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"16":{"tf":1.4142135623730951},"48":{"tf":1.0},"85":{"tf":1.0}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":2.0}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"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":8,"docs":{"158":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":2.6457513110645907},"53":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"85":{"tf":3.3166247903554}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"6":{"tf":2.0},"70":{"tf":2.0}}}},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"142":{"tf":1.0},"53":{"tf":1.0}},"n":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"51":{"tf":2.0},"85":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}},"m":{"df":0,"docs":{},"j":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"29":{"tf":1.0},"54":{"tf":2.6457513110645907},"56":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"91":{"tf":1.0}},"y":{"=":{"1":{"0":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"114":{"tf":1.0},"217":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"24":{"tf":1.0},"48":{"tf":1.0}}}},"t":{"'":{"df":6,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"25":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":2.23606797749979},"19":{"tf":1.0},"228":{"tf":2.0},"29":{"tf":3.3166247903554},"53":{"tf":2.0},"54":{"tf":2.23606797749979},"80":{"tf":2.449489742783178},"82":{"tf":2.8284271247461903}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":10,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"k":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}}}},"o":{"a":{"d":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.4142135623730951},"43":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178},"7":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"t":{"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"101":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"228":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"57":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":4,"docs":{"135":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"t":{";":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"98":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.7320508075688772},"9":{"tf":2.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":28,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"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":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"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":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0}}}}}}}},"df":5,"docs":{"131":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"31":{"tf":1.0},"89":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"p":{"(":{"(":{"_":{"df":1,"docs":{"85":{"tf":1.0}}},"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":2.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"h":{".":{"df":2,"docs":{"141":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"140":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}},"y":{"b":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"106":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"82":{"tf":2.0},"85":{"tf":3.872983346207417},"89":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"182":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"62":{"tf":2.8284271247461903},"67":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}}},"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"df":42,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":2.0},"142":{"tf":1.0},"158":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":2.23606797749979},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":2.6457513110645907},"73":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":3.3166247903554},"81":{"tf":1.7320508075688772},"82":{"tf":3.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":4.123105625617661},"93":{"tf":1.0},"94":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"b":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"29":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":6,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"102":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"188":{"tf":1.0},"82":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"62":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0}}}}},"s":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}},"g":{"df":7,"docs":{"111":{"tf":2.449489742783178},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.7320508075688772},"82":{"tf":1.0}},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}},"v":{"df":1,"docs":{"47":{"tf":1.0}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":3.0},"74":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"121":{"tf":1.7320508075688772},"142":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"205":{"tf":1.0},"34":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.0}}}},"t":{"1":{"6":{"df":6,"docs":{"136":{"tf":1.0},"150":{"tf":4.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"136":{"tf":1.0},"151":{"tf":4.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":2.6457513110645907},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{">":{"(":{"0":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"115":{"tf":2.23606797749979},"116":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"136":{"tf":1.0},"152":{"tf":4.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"91":{"tf":4.358898943540674}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"149":{"tf":4.0},"214":{"tf":1.4142135623730951},"83":{"tf":3.0},"85":{"tf":2.6457513110645907}}},"df":7,"docs":{"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"136":{"tf":1.0},"148":{"tf":4.0},"166":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":2.6457513110645907},"56":{"tf":1.4142135623730951}},"e":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":5.196152422706632}}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":5.196152422706632}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"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":{"228":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"110":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"31":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"109":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}},"w":{"df":11,"docs":{"134":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":2.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"186":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"216":{"tf":1.0},"220":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":3.4641016151377544}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"n":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":2.449489742783178}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":11,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":2.0},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"2":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":2.6457513110645907},"57":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"154":{"tf":2.0},"169":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":2.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"139":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.0}},"i":{"df":5,"docs":{"111":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"91":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"129":{"tf":1.0},"164":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}},"w":{"df":7,"docs":{"110":{"tf":1.0},"210":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"101":{"tf":2.449489742783178},"19":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"3":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}},"x":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"153":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.0},"153":{"tf":4.123105625617661},"154":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":2.6457513110645907},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"83":{"tf":3.605551275463989},"94":{"tf":1.4142135623730951}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"167":{"tf":1.0},"170":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"103":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"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.7320508075688772},"155":{"tf":1.0},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"161":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":2.23606797749979},"85":{"tf":3.3166247903554},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":2,"docs":{"158":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"l":{"d":{"df":181,"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.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},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.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},"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}}},"df":0,"docs":{}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}},"df":7,"docs":{"15":{"tf":1.0},"160":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"101":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"104":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"154":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"6":{"4":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"154":{"tf":1.0}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":2.0}}}}}}}},"df":11,"docs":{"136":{"tf":1.0},"154":{"tf":3.1622776601683795},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"85":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"228":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"135":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":1,"docs":{"53":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"78":{"tf":1.0},"94":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"200":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"173":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":1,"docs":{"54":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"55":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":2.8284271247461903}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":2.449489742783178},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"62":{"tf":1.0},"80":{"tf":2.23606797749979},"83":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"53":{"tf":1.7320508075688772},"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"139":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{"$":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"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":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":1.0}}}},"y":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"r":{"df":5,"docs":{"178":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"158":{"tf":1.0},"162":{"tf":1.0},"172":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"80":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"181":{"tf":1.0},"214":{"tf":1.0},"53":{"tf":2.6457513110645907},"62":{"tf":2.23606797749979},"80":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}},"n":{"df":1,"docs":{"85":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"53":{"tf":2.6457513110645907},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"210":{"tf":2.6457513110645907},"211":{"tf":2.23606797749979},"212":{"tf":2.23606797749979}}}}}}},"o":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"170":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"53":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"18":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":6,"docs":{"177":{"tf":1.0},"183":{"tf":1.7320508075688772},"3":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"183":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"54":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"177":{"tf":1.0},"184":{"tf":1.7320508075688772},"27":{"tf":1.0},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"228":{"tf":1.0}},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":3,"docs":{"142":{"tf":1.0},"155":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":3,"docs":{"129":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":29,"docs":{"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"129":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"155":{"tf":4.242640687119285},"156":{"tf":2.23606797749979},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"53":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"85":{"tf":3.872983346207417},"91":{"tf":2.8284271247461903},"94":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":2.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"162":{"tf":1.0},"173":{"tf":2.23606797749979},"27":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}},"df":1,"docs":{"143":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":1,"docs":{"148":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.7320508075688772}}},"m":{"b":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"54":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"85":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":2.0},"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"77":{"tf":1.0},"91":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"53":{"tf":1.0}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":87,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{".":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"211":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"54":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"154":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.449489742783178},"20":{"tf":1.7320508075688772},"228":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":1.7320508075688772},"55":{"tf":2.0}}}}},"df":1,"docs":{"47":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":3.7416573867739413},"54":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":1.0},"202":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"203":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"53":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"212":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":2,"docs":{"139":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"q":{"a":{"a":{"a":{"df":0,"docs":{},"q":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":73,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":2.8284271247461903},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.23606797749979},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.6457513110645907},"159":{"tf":2.0},"160":{"tf":2.0},"161":{"tf":2.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.0},"17":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":2.449489742783178},"186":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"200":{"tf":1.0},"214":{"tf":2.449489742783178},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":3.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":5.0},"82":{"tf":3.0},"83":{"tf":2.8284271247461903},"85":{"tf":3.3166247903554},"91":{"tf":4.358898943540674},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"y":{"(":{"[":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"137":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"179":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":1,"docs":{"143":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"151":{"tf":1.0},"217":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"152":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"155":{"tf":1.0},"171":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"159":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.4142135623730951}},"j":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":2.0}},"s":{"_":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"18":{"tf":1.0},"55":{"tf":1.0}}}},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"190":{"tf":1.0},"204":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"111":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"160":{"tf":3.1622776601683795}}}}}}},"d":{"df":9,"docs":{"213":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":2.0},"89":{"tf":1.0}},"i":{"df":3,"docs":{"54":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"101":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"142":{"tf":1.0},"80":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.0},"124":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":2,"docs":{"123":{"tf":1.0},"125":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"129":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"15":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":13,"docs":{"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"156":{"tf":3.3166247903554},"179":{"tf":2.449489742783178},"180":{"tf":2.449489742783178},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"54":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":3.0},"85":{"tf":4.358898943540674},"93":{"tf":2.449489742783178},"97":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"1":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"85":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":1,"docs":{"85":{"tf":2.449489742783178}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":7,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"20":{"tf":1.0},"27":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":149,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.7320508075688772},"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},"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},"5":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"131":{"tf":2.23606797749979},"132":{"tf":2.0},"133":{"tf":2.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"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":{"54":{"tf":1.7320508075688772}}}}}}}}}}},"df":3,"docs":{"228":{"tf":1.0},"29":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"214":{"tf":1.0},"53":{"tf":2.449489742783178},"73":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"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":1,"docs":{"97":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"'":{"df":2,"docs":{"173":{"tf":1.0},"26":{"tf":1.0}}},"df":16,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"5":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":2.6457513110645907},"65":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":1.4142135623730951},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"53":{"tf":2.449489742783178},"55":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":3,"docs":{"111":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":2,"docs":{"211":{"tf":1.0},"49":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"78":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.0},"93":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"108":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"29":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"139":{"tf":1.0},"22":{"tf":1.7320508075688772},"31":{"tf":1.0},"47":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"b":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"d":{"b":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"14":{"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":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"136":{"tf":1.0},"157":{"tf":3.872983346207417},"18":{"tf":1.0},"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"20":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":8,"docs":{"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.0},"29":{"tf":1.0},"91":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":2.0}}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"df":2,"docs":{"48":{"tf":1.0},"62":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":6,"docs":{"17":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"105":{"tf":1.0},"53":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":104,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"17":{"tf":2.6457513110645907},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.23606797749979},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":3.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"62":{"tf":2.23606797749979},"80":{"tf":2.449489742783178},"82":{"tf":2.6457513110645907},"83":{"tf":1.7320508075688772},"85":{"tf":5.196152422706632},"91":{"tf":3.872983346207417},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"v":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}}}},"f":{"df":1,"docs":{"10":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"28":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"53":{"tf":2.0},"54":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"31":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"36":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":27,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"49":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"210":{"tf":1.4142135623730951},"47":{"tf":1.0},"75":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"53":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"54":{"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":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"10":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":1,"docs":{"47":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"142":{"tf":1.0},"178":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"80":{"tf":2.0},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"199":{"tf":1.0},"205":{"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":85,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"100":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":2.23606797749979},"54":{"tf":2.0},"55":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"13":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":1,"docs":{"54":{"tf":1.0}}},"m":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}},"n":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"d":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"127":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"16":{"tf":1.4142135623730951},"53":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"139":{"tf":1.0},"16":{"tf":1.0},"48":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"103":{"tf":1.0},"85":{"tf":3.4641016151377544},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}}}}}}}},"df":10,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":2.449489742783178},"13":{"tf":2.8284271247461903},"14":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":4.242640687119285},"18":{"tf":1.0},"27":{"tf":1.0}}}},"i":{"c":{"df":28,"docs":{"110":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":3.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"83":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":22,"docs":{"14":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":2.0},"18":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"209":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"115":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"0":{".":{"3":{"9":{".":{"7":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"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":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"58":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"98":{"tf":2.449489742783178}},"n":{"df":2,"docs":{"5":{"tf":1.0},"91":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":2.0},"22":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"205":{"tf":1.0}}}}}}}}}}}}},"df":2,"docs":{"205":{"tf":1.0},"53":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"24":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"53":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"210":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":6,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.7320508075688772},"80":{"tf":2.0},"82":{"tf":1.4142135623730951},"97":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"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":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"111":{"tf":1.0},"114":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"228":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"0":{"5":{"0":{"6":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"2":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"154":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"91":{"tf":3.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"55":{"tf":1.0},"91":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":10,"docs":{"10":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"73":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"212":{"tf":1.0},"4":{"tf":1.0}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"228":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"11":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":23,"docs":{"106":{"tf":1.0},"213":{"tf":3.0},"214":{"tf":2.0},"215":{"tf":2.0},"216":{"tf":2.0},"217":{"tf":2.0},"218":{"tf":2.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.7320508075688772},"85":{"tf":3.3166247903554},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"e":{"6":{"4":{"df":5,"docs":{"213":{"tf":2.0},"220":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"223":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"222":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0}}}}}}}},"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":2,"docs":{"214":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":2.0},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}}}},"df":12,"docs":{"103":{"tf":1.0},"105":{"tf":1.7320508075688772},"214":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.0},"85":{"tf":4.795831523312719},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"218":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"28":{"tf":1.0},"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"206":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"6":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.8284271247461903},"77":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"176":{"tf":1.0},"210":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"56":{"tf":3.0},"58":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":2.0},"70":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"18":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"97":{"tf":2.449489742783178}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"47":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"207":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"10":{"tf":1.0},"176":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"181":{"tf":1.0},"214":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"105":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.7320508075688772},"58":{"tf":1.0},"62":{"tf":2.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"142":{"tf":1.7320508075688772},"159":{"tf":2.23606797749979},"163":{"tf":1.0},"164":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"62":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":19,"docs":{"103":{"tf":1.0},"11":{"tf":2.23606797749979},"16":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"108":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":3.0},"62":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"102":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":5,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"101":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"135":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"83":{"tf":1.0}}},"3":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"228":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"63":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"161":{"tf":1.0}},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":2.23606797749979},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":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":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{">":{"(":{"0":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":2.0},"117":{"tf":2.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"142":{"tf":2.8284271247461903},"156":{"tf":1.7320508075688772},"158":{"tf":2.6457513110645907},"159":{"tf":3.3166247903554},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.7320508075688772},"173":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":2.6457513110645907},"180":{"tf":2.6457513110645907},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":1.0},"214":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":3.0},"80":{"tf":2.449489742783178},"82":{"tf":3.4641016151377544},"83":{"tf":3.4641016151377544},"85":{"tf":3.7416573867739413},"93":{"tf":2.6457513110645907},"94":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"j":{"df":1,"docs":{"4":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"62":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}},"k":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"r":{"d":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"102":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"104":{"tf":1.0},"53":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"53":{"tf":1.0},"55":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"72":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":8,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"53":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"173":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":2.449489742783178},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"w":{"df":7,"docs":{"121":{"tf":1.0},"139":{"tf":1.4142135623730951},"182":{"tf":1.0},"27":{"tf":1.4142135623730951},"82":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"161":{"tf":1.0},"22":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"82":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"162":{"tf":1.0},"175":{"tf":2.0},"178":{"tf":1.0},"54":{"tf":1.7320508075688772},"91":{"tf":1.0}},"r":{"df":10,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":2.449489742783178},"225":{"tf":2.23606797749979},"226":{"tf":2.23606797749979},"227":{"tf":2.23606797749979},"78":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":2.23606797749979}},"i":{"d":{"df":4,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"97":{"tf":3.3166247903554}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"1":{".":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":2.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"53":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":2.23606797749979},"91":{"tf":3.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"91":{"tf":1.4142135623730951},"93":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"1":{".":{"7":{"3":{".":{"0":{"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":5,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0}}}},"p":{"df":1,"docs":{"18":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}}},"k":{"df":4,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"115":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"91":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"162":{"tf":1.0},"176":{"tf":2.23606797749979},"82":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":31,"docs":{"11":{"tf":1.0},"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"83":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"y":{".":{".":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.7320508075688772},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":7,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0}}}},"y":{"a":{"a":{"a":{"df":5,"docs":{"129":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":46,"docs":{"11":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.7320508075688772},"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.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"214":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":3.872983346207417},"91":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":7,"docs":{"115":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"214":{"tf":1.4142135623730951},"85":{"tf":2.8284271247461903},"97":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"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":5,"docs":{"210":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":31,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"62":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"58":{"tf":1.0},"68":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"[":{"8":{"3":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"6":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}}},"df":3,"docs":{"137":{"tf":1.4142135623730951},"161":{"tf":1.0},"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"r":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"210":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"73":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"208":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"52":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":72,"docs":{"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"174":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.0},"186":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"62":{"tf":2.8284271247461903},"78":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":4.69041575982343},"83":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"91":{"tf":4.123105625617661},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"[":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"174":{"tf":1.0},"194":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"220":{"tf":1.0},"223":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":9,"docs":{"115":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"186":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"62":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"209":{"tf":1.7320508075688772}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"174":{"tf":1.0},"19":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"177":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"184":{"tf":2.0},"53":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"13":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"94":{"tf":2.0}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"105":{"tf":1.0},"54":{"tf":1.7320508075688772},"88":{"tf":1.0}}}},"df":53,"docs":{"0":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"161":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":2.23606797749979},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"85":{"tf":2.8284271247461903},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},">":{"(":{"0":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"85":{"tf":2.23606797749979}}}}}}}}}}}}}},"df":5,"docs":{"156":{"tf":3.1622776601683795},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"85":{"tf":4.358898943540674}},"i":{"d":{"df":1,"docs":{"85":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":2.23606797749979},"85":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"85":{"tf":2.449489742783178}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"v":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":20,"docs":{"105":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"142":{"tf":1.0},"154":{"tf":1.4142135623730951},"158":{"tf":1.0},"214":{"tf":2.6457513110645907},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"62":{"tf":2.449489742783178},"80":{"tf":2.23606797749979},"82":{"tf":3.7416573867739413},"83":{"tf":2.0},"85":{"tf":4.358898943540674},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},">":{"(":{"0":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"106":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"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},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"135":{"tf":2.23606797749979},"136":{"tf":1.0},"154":{"tf":1.7320508075688772},"158":{"tf":1.0},"160":{"tf":3.605551275463989},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"85":{"tf":2.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"55":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.6457513110645907},"83":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"136":{"tf":1.0},"137":{"tf":2.0},"161":{"tf":3.3166247903554},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.6457513110645907},"85":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"85":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"162":{"tf":1.0},"167":{"tf":2.0},"2":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":2,"docs":{"68":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"3":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":3.4641016151377544},"91":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.0}}}},"s":{"df":2,"docs":{"53":{"tf":1.0},"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"139":{"tf":1.4142135623730951},"18":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"m":{"3":{"2":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":2.6457513110645907},"53":{"tf":3.1622776601683795},"56":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":2.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"139":{"tf":1.0},"15":{"tf":1.0},"53":{"tf":1.7320508075688772},"72":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"58":{"tf":1.4142135623730951},"62":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":1,"docs":{"54":{"tf":1.0}}},"v":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}},"b":{"3":{"df":1,"docs":{"51":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"31":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"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":{"0":{"tf":1.0},"171":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":7,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":2.0},"91":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"77":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"5":{"0":{"0":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"176":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.7320508075688772},"62":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"49":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":96,"docs":{"101":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"l":{"d":{"df":21,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":2.0},"3":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"210":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"223":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"x":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"k":{"c":{"d":{"df":1,"docs":{"200":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":4,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":1,"docs":{"61":{"tf":1.0}}},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}}},"title":{"root":{"1":{"2":{"8":{"df":7,"docs":{"117":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"162":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"49":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"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":{}}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}}}}}}},"t":{"a":{"df":2,"docs":{"0":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"107":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}},"l":{"df":1,"docs":{"138":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"103":{"tf":1.0},"136":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"48":{"tf":1.0},"83":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"26":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"67":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"28":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"170":{"tf":1.0},"172":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":11,"docs":{"10":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"188":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"102":{"tf":1.0},"187":{"tf":1.0},"32":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"216":{"tf":1.0},"220":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"200":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"93":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":1,"docs":{"143":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"67":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}},"v":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"10":{"tf":1.0},"66":{"tf":1.0},"77":{"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":2,"docs":{"102":{"tf":1.0},"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}}}}}}}},"l":{"a":{"b":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"29":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"67":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"211":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"9":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"190":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"112":{"tf":1.0},"133":{"tf":1.0},"182":{"tf":1.0},"27":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"121":{"tf":1.0},"177":{"tf":1.0},"60":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"g":{"df":6,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"101":{"tf":1.0},"212":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"130":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"172":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"184":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"173":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"79":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"217":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.0},"30":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"126":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":4,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"94":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":3,"docs":{"174":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"114":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"84":{"tf":1.0}},"e":{"6":{"4":{"df":4,"docs":{"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"1":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"214":{"tf":1.0},"61":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"175":{"tf":1.0}},"r":{"df":5,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"68":{"tf":1.0},"74":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"186":{"tf":1.0},"81":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"183":{"tf":1.0},"184":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"187":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"68":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"219":{"tf":1.0},"223":{"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":["the_azle_book.html#the-azle-book-beta","get_started.html#get-started","get_started.html#installation","get_started.html#deployment","rest_based_examples.html#examples","deployment.html#deployment","deployment.html#starting-the-local-replica","deployment.html#deploying-to-the-local-replica","deployment.html#interacting-with-your-canister","deployment.html#deploying-to-mainnet","deployment.html#common-deployment-issues","project_structure.html#project-structure-tldr","servers.html#servers-tldr","servers.html#servers","servers.html#nodejs-httpserver","servers.html#express","servers.html#jsonstringify","servers.html#server","servers.html#limitations","assets.html#assets-tldr","authentication.html#authentication-tldr","authentication.html#authentication","authentication.html#under-the-hood","fetch.html#fetch-tldr","fetch.html#fetch","fetch.html#cross-canister-calls-to-a-candid-canister","fetch.html#cross-canister-calls-to-an-http-canister","fetch.html#https-outcalls","debugging.html#debugging-tldr","debugging.html#debugging","debugging.html#consolelog-and-trycatch","debugging.html#canister-did-not-produce-a-response","debugging.html#no-error-message","debugging.html#final-compiled-and-bundled-javascript","limitations.html#limitations-tldr","reference_http/reference.html#reference","reference_http/autoreload.html#autoreload","reference_http/environment_variables.html#environment-variables","reference_http/environment_variables.html#azle_autoreload","reference_http/environment_variables.html#azle_dockerfile_hash","reference_http/environment_variables.html#azle_identity_storage_mode","reference_http/environment_variables.html#azle_instruction_count","reference_http/environment_variables.html#azle_proptest_num_runs","reference_http/environment_variables.html#azle_proptest_path","reference_http/environment_variables.html#azle_proptest_quiet","reference_http/environment_variables.html#azle_proptest_seed","reference_http/environment_variables.html#azle_proptest_verbose","reference_http/environment_variables.html#azle_test_fetch","reference_http/environment_variables.html#azle_use_dockerfile","reference_http/environment_variables.html#azle_verbose","reference_http/environment_variables.html#azle_wasmedge_quickjs_dir","reference_http/native_compilation.html#native-compilation-tldr","reference_http/native_compilation.html#native-compilation","candid_based_documentation.html#old-candid-based-documentation","azle.html#azle-beta","azle.html#disclaimer","azle.html#demergent-labs","azle.html#benefits-and-drawbacks","azle.html#benefits","azle.html#drawbacks","internet_computer_overview.html#internet-computer-overview","canisters_overview.html#canisters-overview","installation.html#installation","hello_world.html#hello-world","hello_world.html#quick-start","hello_world.html#methodical-start","hello_world.html#the-project-directory-and-file-structure","hello_world.html#indexts","hello_world.html#tsconfigjson","hello_world.html#dfxjson","hello_world.html#local-deployment","hello_world.html#common-deployment-issues","hello_world.html#interacting-with-your-canister-from-the-command-line","hello_world.html#interacting-with-your-canister-from-the-web-ui","deployment_candid_based.html#deployment","deployment_candid_based.html#starting-the-local-replica","deployment_candid_based.html#deploying-to-the-local-replica","deployment_candid_based.html#interacting-with-your-canister","deployment_candid_based.html#dfx-command-line","deployment_candid_based.html#dfx-web-ui","deployment_candid_based.html#dfinityagent","deployment_candid_based.html#deploying-to-mainnet","deployment_candid_based.html#common-deployment-issues","examples.html#examples","query_methods.html#query-methods","query_methods.html#tldr","update_methods.html#update-methods","update_methods.html#tldr","candid.html#candid","stable_structures.html#stable-structures","stable_structures.html#tldr","stable_structures.html#caveats","stable_structures.html#float64-values","stable_structures.html#candidtype-performance","stable_structures.html#migrations","stable_structures.html#canister","cross_canister.html#cross-canister","http.html#http","http.html#incoming-http-requests","http.html#outgoing-http-requests","management_canister.html#management-canister","canister_lifecycle.html#canister-lifecycle","timers.html#timers","cycles.html#cycles","caveats.html#caveats","caveats.html#unknown-security-vulnerabilities","caveats.html#npm-packages","caveats.html#javascript-environment-apis","caveats.html#high-candid-encodingdecoding-costs","caveats.html#promises","caveats.html#jsonparse-and-stablebtreemap-float64-values","reference/reference.html#reference","reference/bitcoin.html#bitcoin","reference/bitcoin.html#tecdsa","reference/bitcoin.html#bitcoin-integration","reference/bitcoin.html#ckbtc","reference/call_apis/call_apis.html#call-apis","reference/call_apis/accept_message.html#accept-message","reference/call_apis/arg_data_raw.html#arg-data-raw","reference/call_apis/arg_data_raw_size.html#arg-data-raw-size","reference/call_apis/call.html#call","reference/call_apis/call_raw.html#call-raw","reference/call_apis/call_raw128.html#call-raw-128","reference/call_apis/call_with_payment.html#call-with-payment","reference/call_apis/call_with_payment128.html#call-with-payment-128","reference/call_apis/caller.html#caller","reference/call_apis/method_name.html#method-name","reference/call_apis/msg_cycles_accept.html#msg-cycles-accept","reference/call_apis/msg_cycles_accept128.html#msg-cycles-accept-128","reference/call_apis/msg_cycles_available.html#msg-cycles-available","reference/call_apis/msg_cycles_available128.html#msg-cycles-available-128","reference/call_apis/msg_cycles_refunded.html#msg-cycles-refunded","reference/call_apis/msg_cycles_refunded128.html#msg-cycles-refunded-128","reference/call_apis/notify.html#notify","reference/call_apis/notify_raw.html#notify-raw","reference/call_apis/notify_with_payment_128.html#notify-with-payment-128","reference/call_apis/reject.html#reject","reference/call_apis/reject_code.html#reject-code","reference/call_apis/reject_message.html#reject-message","reference/call_apis/reply.html#reply","reference/call_apis/reply_raw.html#reply-raw","reference/candid/candid.html#candid","reference/candid/blob.html#blob","reference/candid/bool.html#bool","reference/candid/empty.html#empty","reference/candid/float32.html#float32","reference/candid/float64.html#float64","reference/candid/func.html#func","reference/candid/int.html#int","reference/candid/int8.html#int8","reference/candid/int16.html#int16","reference/candid/int32.html#int32","reference/candid/int64.html#int64","reference/candid/nat.html#nat","reference/candid/nat8.html#nat8","reference/candid/nat16.html#nat16","reference/candid/nat32.html#nat32","reference/candid/nat64.html#nat64","reference/candid/null.html#null","reference/candid/opt.html#opt","reference/candid/principal.html#principal","reference/candid/record.html#record","reference/candid/reserved.html#reserved","reference/candid/service.html#service","reference/candid/text.html#text","reference/candid/variant.html#variant","reference/candid/vec.html#vec","reference/canister_apis/canister_apis.html#canister-apis","reference/canister_apis/candid_decode.html#candid-decode","reference/canister_apis/candid_encode.html#candid-encode","reference/canister_apis/canister_balance.html#canister-balance","reference/canister_apis/canister_balance128.html#canister-balance-128","reference/canister_apis/canister_version.html#canister-version","reference/canister_apis/canister_id.html#canister-id","reference/canister_apis/data_certificate.html#data-certificate","reference/canister_apis/instruction_counter.html#instruction-counter","reference/canister_apis/is_controller.html#is-controller","reference/canister_apis/performance_counter.html#performance-counter","reference/canister_apis/print.html#print","reference/canister_apis/set_certified_data.html#set-certified-data","reference/canister_apis/time.html#time","reference/canister_apis/trap.html#trap","reference/canister_methods/canister_methods.html#canister-methods","reference/canister_methods/heartbeat.html#heartbeat","reference/canister_methods/http_request.html#http_request","reference/canister_methods/http_request_update.html#http_request","reference/canister_methods/init.html#init","reference/canister_methods/inspect_message.html#inspect-message","reference/canister_methods/post_upgrade.html#post-upgrade","reference/canister_methods/pre_upgrade.html#pre-upgrade","reference/canister_methods/query.html#query","reference/canister_methods/update.html#update","reference/environment_variables.html#environment-variables","reference/environment_variables.html#dfxjson","reference/environment_variables.html#processenv","reference/management_canister/management_canister.html#management-canister","reference/management_canister/bitcoin_get_balance.html#bitcoin_get_balance","reference/management_canister/bitcoin_get_current_fee_percentiles.html#bitcoin_get_current_fee_percentiles","reference/management_canister/bitcoin_get_utxos.html#bitcoin_get_utxos","reference/management_canister/bitcoin_send_transaction.html#bitcoin_send_transaction","reference/management_canister/canister_status.html#canister_status","reference/management_canister/create_canister.html#create_canister","reference/management_canister/delete_canister.html#delete_canister","reference/management_canister/deposit_cycles.html#deposit_cycles","reference/management_canister/ecdsa_public_key.html#ecdsa_public_key","reference/management_canister/http_request.html#http_request","reference/management_canister/install_code.html#install_code","reference/management_canister/provisional_create_canister_with_cycles.html#provisional_create_canister_with_cycles","reference/management_canister/provisional_top_up_canister.html#provisional_top_up_canister","reference/management_canister/raw_rand.html#raw_rand","reference/management_canister/sign_with_ecdsa.html#sign_with_ecdsa","reference/management_canister/start_canister.html#start_canister","reference/management_canister/stop_canister.html#stop_canister","reference/management_canister/uninstall_code.html#uninstall_code","reference/management_canister/update_settings.html#update_settings","reference/plugins.html#plugins","reference/plugins.html#local-plugin","reference/plugins.html#npm-plugin","reference/stable_memory/stable_memory.html#stable-memory","reference/stable_memory/stable_structures.html#stable-structures","reference/stable_memory/stable_bytes.html#stable-bytes","reference/stable_memory/stable_grow.html#stable-grow","reference/stable_memory/stable_read.html#stable-read","reference/stable_memory/stable_size.html#stable-size","reference/stable_memory/stable_write.html#stable-write","reference/stable_memory/stable64_grow.html#stable64-grow","reference/stable_memory/stable64_read.html#stable64-read","reference/stable_memory/stable64_size.html#stable64-size","reference/stable_memory/stable64_write.html#stable64-write","reference/timers/timers.html#timers","reference/timers/clear_timer.html#clear-timer","reference/timers/set_timer.html#set-timer","reference/timers/set_timer_interval.html#set-timer-interval","reference/wasm_binary_optimization.html#wasm-binary-optimization"],"index":{"documentStore":{"docInfo":{"0":{"body":155,"breadcrumbs":6,"title":3},"1":{"body":48,"breadcrumbs":2,"title":1},"10":{"body":75,"breadcrumbs":4,"title":3},"100":{"body":32,"breadcrumbs":8,"title":2},"101":{"body":29,"breadcrumbs":8,"title":2},"102":{"body":163,"breadcrumbs":6,"title":1},"103":{"body":83,"breadcrumbs":6,"title":1},"104":{"body":0,"breadcrumbs":6,"title":1},"105":{"body":7,"breadcrumbs":8,"title":3},"106":{"body":36,"breadcrumbs":7,"title":2},"107":{"body":12,"breadcrumbs":8,"title":3},"108":{"body":27,"breadcrumbs":9,"title":4},"109":{"body":17,"breadcrumbs":6,"title":1},"11":{"body":63,"breadcrumbs":5,"title":3},"110":{"body":17,"breadcrumbs":9,"title":4},"111":{"body":19,"breadcrumbs":6,"title":1},"112":{"body":15,"breadcrumbs":7,"title":1},"113":{"body":26,"breadcrumbs":7,"title":1},"114":{"body":27,"breadcrumbs":8,"title":2},"115":{"body":30,"breadcrumbs":7,"title":1},"116":{"body":58,"breadcrumbs":9,"title":2},"117":{"body":17,"breadcrumbs":11,"title":2},"118":{"body":34,"breadcrumbs":13,"title":3},"119":{"body":36,"breadcrumbs":15,"title":4},"12":{"body":42,"breadcrumbs":3,"title":2},"120":{"body":68,"breadcrumbs":9,"title":1},"121":{"body":39,"breadcrumbs":11,"title":2},"122":{"body":38,"breadcrumbs":13,"title":3},"123":{"body":47,"breadcrumbs":11,"title":2},"124":{"body":42,"breadcrumbs":13,"title":3},"125":{"body":26,"breadcrumbs":9,"title":1},"126":{"body":46,"breadcrumbs":11,"title":2},"127":{"body":24,"breadcrumbs":13,"title":3},"128":{"body":24,"breadcrumbs":15,"title":4},"129":{"body":24,"breadcrumbs":13,"title":3},"13":{"body":74,"breadcrumbs":2,"title":1},"130":{"body":24,"breadcrumbs":15,"title":4},"131":{"body":33,"breadcrumbs":13,"title":3},"132":{"body":33,"breadcrumbs":15,"title":4},"133":{"body":25,"breadcrumbs":9,"title":1},"134":{"body":28,"breadcrumbs":11,"title":2},"135":{"body":24,"breadcrumbs":13,"title":3},"136":{"body":26,"breadcrumbs":9,"title":1},"137":{"body":25,"breadcrumbs":11,"title":2},"138":{"body":25,"breadcrumbs":11,"title":2},"139":{"body":33,"breadcrumbs":9,"title":1},"14":{"body":47,"breadcrumbs":3,"title":2},"140":{"body":62,"breadcrumbs":11,"title":2},"141":{"body":25,"breadcrumbs":7,"title":1},"142":{"body":78,"breadcrumbs":8,"title":1},"143":{"body":54,"breadcrumbs":8,"title":1},"144":{"body":90,"breadcrumbs":8,"title":1},"145":{"body":56,"breadcrumbs":8,"title":1},"146":{"body":56,"breadcrumbs":8,"title":1},"147":{"body":120,"breadcrumbs":8,"title":1},"148":{"body":56,"breadcrumbs":8,"title":1},"149":{"body":56,"breadcrumbs":8,"title":1},"15":{"body":44,"breadcrumbs":2,"title":1},"150":{"body":56,"breadcrumbs":8,"title":1},"151":{"body":56,"breadcrumbs":8,"title":1},"152":{"body":56,"breadcrumbs":8,"title":1},"153":{"body":56,"breadcrumbs":8,"title":1},"154":{"body":56,"breadcrumbs":8,"title":1},"155":{"body":56,"breadcrumbs":8,"title":1},"156":{"body":56,"breadcrumbs":8,"title":1},"157":{"body":56,"breadcrumbs":8,"title":1},"158":{"body":55,"breadcrumbs":8,"title":1},"159":{"body":79,"breadcrumbs":8,"title":1},"16":{"body":60,"breadcrumbs":2,"title":1},"160":{"body":69,"breadcrumbs":8,"title":1},"161":{"body":95,"breadcrumbs":8,"title":1},"162":{"body":54,"breadcrumbs":8,"title":1},"163":{"body":100,"breadcrumbs":8,"title":1},"164":{"body":57,"breadcrumbs":8,"title":1},"165":{"body":103,"breadcrumbs":8,"title":1},"166":{"body":90,"breadcrumbs":8,"title":1},"167":{"body":26,"breadcrumbs":9,"title":2},"168":{"body":27,"breadcrumbs":11,"title":2},"169":{"body":30,"breadcrumbs":11,"title":2},"17":{"body":146,"breadcrumbs":2,"title":1},"170":{"body":25,"breadcrumbs":11,"title":2},"171":{"body":25,"breadcrumbs":13,"title":3},"172":{"body":23,"breadcrumbs":11,"title":2},"173":{"body":26,"breadcrumbs":11,"title":2},"174":{"body":35,"breadcrumbs":11,"title":2},"175":{"body":27,"breadcrumbs":11,"title":2},"176":{"body":27,"breadcrumbs":9,"title":1},"177":{"body":19,"breadcrumbs":11,"title":2},"178":{"body":29,"breadcrumbs":9,"title":1},"179":{"body":26,"breadcrumbs":13,"title":3},"18":{"body":43,"breadcrumbs":2,"title":1},"180":{"body":23,"breadcrumbs":9,"title":1},"181":{"body":35,"breadcrumbs":9,"title":1},"182":{"body":12,"breadcrumbs":9,"title":2},"183":{"body":21,"breadcrumbs":9,"title":1},"184":{"body":105,"breadcrumbs":9,"title":1},"185":{"body":105,"breadcrumbs":9,"title":1},"186":{"body":26,"breadcrumbs":9,"title":1},"187":{"body":46,"breadcrumbs":11,"title":2},"188":{"body":19,"breadcrumbs":11,"title":2},"189":{"body":19,"breadcrumbs":11,"title":2},"19":{"body":180,"breadcrumbs":3,"title":2},"190":{"body":17,"breadcrumbs":9,"title":1},"191":{"body":25,"breadcrumbs":9,"title":1},"192":{"body":25,"breadcrumbs":9,"title":2},"193":{"body":40,"breadcrumbs":8,"title":1},"194":{"body":27,"breadcrumbs":8,"title":1},"195":{"body":20,"breadcrumbs":9,"title":2},"196":{"body":39,"breadcrumbs":9,"title":1},"197":{"body":35,"breadcrumbs":9,"title":1},"198":{"body":39,"breadcrumbs":9,"title":1},"199":{"body":44,"breadcrumbs":9,"title":1},"2":{"body":93,"breadcrumbs":2,"title":1},"20":{"body":221,"breadcrumbs":3,"title":2},"200":{"body":29,"breadcrumbs":9,"title":1},"201":{"body":30,"breadcrumbs":9,"title":1},"202":{"body":30,"breadcrumbs":9,"title":1},"203":{"body":32,"breadcrumbs":9,"title":1},"204":{"body":50,"breadcrumbs":9,"title":1},"205":{"body":56,"breadcrumbs":9,"title":1},"206":{"body":43,"breadcrumbs":9,"title":1},"207":{"body":31,"breadcrumbs":9,"title":1},"208":{"body":35,"breadcrumbs":9,"title":1},"209":{"body":27,"breadcrumbs":9,"title":1},"21":{"body":4,"breadcrumbs":2,"title":1},"210":{"body":57,"breadcrumbs":9,"title":1},"211":{"body":30,"breadcrumbs":9,"title":1},"212":{"body":30,"breadcrumbs":9,"title":1},"213":{"body":30,"breadcrumbs":9,"title":1},"214":{"body":40,"breadcrumbs":9,"title":1},"215":{"body":40,"breadcrumbs":7,"title":1},"216":{"body":9,"breadcrumbs":8,"title":2},"217":{"body":12,"breadcrumbs":8,"title":2},"218":{"body":20,"breadcrumbs":9,"title":2},"219":{"body":98,"breadcrumbs":11,"title":2},"22":{"body":91,"breadcrumbs":3,"title":2},"220":{"body":19,"breadcrumbs":11,"title":2},"221":{"body":20,"breadcrumbs":11,"title":2},"222":{"body":24,"breadcrumbs":11,"title":2},"223":{"body":19,"breadcrumbs":11,"title":2},"224":{"body":24,"breadcrumbs":11,"title":2},"225":{"body":20,"breadcrumbs":11,"title":2},"226":{"body":24,"breadcrumbs":11,"title":2},"227":{"body":19,"breadcrumbs":11,"title":2},"228":{"body":24,"breadcrumbs":11,"title":2},"229":{"body":7,"breadcrumbs":7,"title":1},"23":{"body":179,"breadcrumbs":3,"title":2},"230":{"body":20,"breadcrumbs":10,"title":2},"231":{"body":42,"breadcrumbs":10,"title":2},"232":{"body":44,"breadcrumbs":12,"title":3},"233":{"body":94,"breadcrumbs":11,"title":3},"24":{"body":42,"breadcrumbs":2,"title":1},"25":{"body":19,"breadcrumbs":6,"title":5},"26":{"body":17,"breadcrumbs":6,"title":5},"27":{"body":4,"breadcrumbs":3,"title":2},"28":{"body":42,"breadcrumbs":3,"title":2},"29":{"body":28,"breadcrumbs":2,"title":1},"3":{"body":74,"breadcrumbs":2,"title":1},"30":{"body":14,"breadcrumbs":3,"title":2},"31":{"body":99,"breadcrumbs":4,"title":3},"32":{"body":340,"breadcrumbs":3,"title":2},"33":{"body":54,"breadcrumbs":5,"title":4},"34":{"body":74,"breadcrumbs":3,"title":2},"35":{"body":5,"breadcrumbs":2,"title":1},"36":{"body":106,"breadcrumbs":3,"title":1},"37":{"body":13,"breadcrumbs":5,"title":2},"38":{"body":12,"breadcrumbs":4,"title":1},"39":{"body":26,"breadcrumbs":4,"title":1},"4":{"body":26,"breadcrumbs":2,"title":1},"40":{"body":3,"breadcrumbs":4,"title":1},"41":{"body":11,"breadcrumbs":4,"title":1},"42":{"body":3,"breadcrumbs":4,"title":1},"43":{"body":3,"breadcrumbs":4,"title":1},"44":{"body":3,"breadcrumbs":4,"title":1},"45":{"body":3,"breadcrumbs":4,"title":1},"46":{"body":3,"breadcrumbs":4,"title":1},"47":{"body":3,"breadcrumbs":4,"title":1},"48":{"body":15,"breadcrumbs":4,"title":1},"49":{"body":9,"breadcrumbs":4,"title":1},"5":{"body":42,"breadcrumbs":2,"title":1},"50":{"body":13,"breadcrumbs":4,"title":1},"51":{"body":19,"breadcrumbs":6,"title":3},"52":{"body":174,"breadcrumbs":5,"title":2},"53":{"body":66,"breadcrumbs":8,"title":4},"54":{"body":24,"breadcrumbs":8,"title":2},"55":{"body":31,"breadcrumbs":7,"title":1},"56":{"body":20,"breadcrumbs":8,"title":2},"57":{"body":21,"breadcrumbs":8,"title":2},"58":{"body":866,"breadcrumbs":7,"title":1},"59":{"body":361,"breadcrumbs":7,"title":1},"6":{"body":73,"breadcrumbs":4,"title":3},"60":{"body":137,"breadcrumbs":10,"title":3},"61":{"body":104,"breadcrumbs":8,"title":2},"62":{"body":93,"breadcrumbs":6,"title":1},"63":{"body":68,"breadcrumbs":8,"title":2},"64":{"body":80,"breadcrumbs":8,"title":2},"65":{"body":0,"breadcrumbs":8,"title":2},"66":{"body":43,"breadcrumbs":10,"title":4},"67":{"body":271,"breadcrumbs":7,"title":1},"68":{"body":14,"breadcrumbs":7,"title":1},"69":{"body":19,"breadcrumbs":7,"title":1},"7":{"body":27,"breadcrumbs":4,"title":3},"70":{"body":14,"breadcrumbs":8,"title":2},"71":{"body":9,"breadcrumbs":9,"title":3},"72":{"body":36,"breadcrumbs":10,"title":4},"73":{"body":44,"breadcrumbs":10,"title":4},"74":{"body":39,"breadcrumbs":6,"title":1},"75":{"body":65,"breadcrumbs":8,"title":3},"76":{"body":12,"breadcrumbs":8,"title":3},"77":{"body":13,"breadcrumbs":7,"title":2},"78":{"body":59,"breadcrumbs":8,"title":3},"79":{"body":39,"breadcrumbs":8,"title":3},"8":{"body":65,"breadcrumbs":3,"title":2},"80":{"body":21,"breadcrumbs":6,"title":1},"81":{"body":22,"breadcrumbs":7,"title":2},"82":{"body":64,"breadcrumbs":8,"title":3},"83":{"body":51,"breadcrumbs":6,"title":1},"84":{"body":0,"breadcrumbs":8,"title":2},"85":{"body":304,"breadcrumbs":7,"title":1},"86":{"body":0,"breadcrumbs":8,"title":2},"87":{"body":483,"breadcrumbs":7,"title":1},"88":{"body":421,"breadcrumbs":6,"title":1},"89":{"body":0,"breadcrumbs":8,"title":2},"9":{"body":28,"breadcrumbs":3,"title":2},"90":{"body":794,"breadcrumbs":7,"title":1},"91":{"body":0,"breadcrumbs":7,"title":1},"92":{"body":12,"breadcrumbs":8,"title":2},"93":{"body":50,"breadcrumbs":8,"title":2},"94":{"body":25,"breadcrumbs":7,"title":1},"95":{"body":24,"breadcrumbs":7,"title":1},"96":{"body":538,"breadcrumbs":8,"title":2},"97":{"body":3,"breadcrumbs":6,"title":1},"98":{"body":102,"breadcrumbs":8,"title":3},"99":{"body":149,"breadcrumbs":8,"title":3}},"docs":{"0":{"body":"Welcome to The Azle Book! This is a guide for building secure decentralized/replicated servers in TypeScript or JavaScript on ICP . The current replication factor is 13-40 times . Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP The Azle Book is subject to the following license and Azle's License Extension : MIT License Copyright (c) 2024 AZLE token holders (nlhft-2iaaa-aaaae-qaaua-cai) Permission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.","breadcrumbs":"The Azle Book (Beta) » The Azle Book (Beta)","id":"0","title":"The Azle Book (Beta)"},"1":{"body":"Installation Deployment Azle helps you to build secure decentralized/replicated servers in TypeScript or JavaScript on ICP . The current replication factor is 13-40 times . Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP","breadcrumbs":"Get Started » Get Started","id":"1","title":"Get Started"},"10":{"body":"If you run into an error during deployment, try the following: Ensure that you have followed the installation instructions exactly as specified in the Get Started chapter Start the whole deployment process from scratch and look for more error output by doing the following: In your replica terminal: Terminate the replica in your terminal or run dfx stop if your replica is running in the background dfx start --clean --host 127.0.0.1:8000 In your project terminal at the root directory of your project: rm -rf node_modules npm install npx azle clean AZLE_VERBOSE=true dfx deploy If the build process hangs on Waiting for VM ..., see this issue for possible fixes If the problem is still not resolved, reach out with the error output in the Discord channel","breadcrumbs":"Deployment » Common deployment issues","id":"10","title":"Common deployment issues"},"100":{"body":"This chapter is a work in progress. You can access the management canister like this: import { blob, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ randomBytes: update([], blob, async () => { return await ic.call(managementCanister.raw_rand); })\n}); See the management canister reference section for more information.","breadcrumbs":"Old Candid-based Documentation » Management Canister » Management Canister","id":"100","title":"Management Canister"},"101":{"body":"This chapter is a work in progress. import { Canister, init, postUpgrade, preUpgrade } from 'azle'; export default Canister({ init: init([], () => { console.log('runs on first canister install'); }), preUpgrade: preUpgrade(() => { console.log('runs before canister upgrade'); }), postUpgrade: postUpgrade([], () => { console.log('runs after canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Canister Lifecycle » Canister Lifecycle","id":"101","title":"Canister Lifecycle"},"102":{"body":"This chapter is a work in progress. import { blob, bool, Canister, Duration, ic, int8, query, Record, text, TimerId, update, Void\n} from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const StatusReport = Record({ single: bool, inline: int8, capture: text, repeat: int8, singleCrossCanister: blob, repeatCrossCanister: blob\n}); const TimerIds = Record({ single: TimerId, inline: TimerId, capture: TimerId, repeat: TimerId, singleCrossCanister: TimerId, repeatCrossCanister: TimerId\n}); let statusReport: typeof StatusReport = { single: false, inline: 0, capture: '', repeat: 0, singleCrossCanister: Uint8Array.from([]), repeatCrossCanister: Uint8Array.from([])\n}; export default Canister({ clearTimer: update([TimerId], Void, (timerId) => { ic.clearTimer(timerId); console.log(`timer ${timerId} cancelled`); }), setTimers: update([Duration, Duration], TimerIds, (delay, interval) => { const capturedValue = '🚩'; const singleId = ic.setTimer(delay, oneTimeTimerCallback); const inlineId = ic.setTimer(delay, () => { statusReport.inline = 1; console.log('Inline timer called'); }); const captureId = ic.setTimer(delay, () => { statusReport.capture = capturedValue; console.log(`Timer captured value ${capturedValue}`); }); const repeatId = ic.setTimerInterval(interval, () => { statusReport.repeat++; console.log(`Repeating timer. Call ${statusReport.repeat}`); }); const singleCrossCanisterId = ic.setTimer( delay, singleCrossCanisterTimerCallback ); const repeatCrossCanisterId = ic.setTimerInterval( interval, repeatCrossCanisterTimerCallback ); return { single: singleId, inline: inlineId, capture: captureId, repeat: repeatId, singleCrossCanister: singleCrossCanisterId, repeatCrossCanister: repeatCrossCanisterId }; }), statusReport: query([], StatusReport, () => { return statusReport; })\n}); function oneTimeTimerCallback() { statusReport.single = true; console.log('oneTimeTimerCallback called');\n} async function singleCrossCanisterTimerCallback() { console.log('singleCrossCanisterTimerCallback'); statusReport.singleCrossCanister = await ic.call( managementCanister.raw_rand );\n} async function repeatCrossCanisterTimerCallback() { console.log('repeatCrossCanisterTimerCallback'); statusReport.repeatCrossCanister = Uint8Array.from([ ...statusReport.repeatCrossCanister, ...(await ic.call(managementCanister.raw_rand)) ]);\n}","breadcrumbs":"Old Candid-based Documentation » Timers » Timers","id":"102","title":"Timers"},"103":{"body":"This chapter is a work in progress. Cycles are essentially units of computational resources such as bandwidth, memory, and CPU instructions. Costs are generally metered on the Internet Computer (IC) by cycles. You can see a breakdown of all cycle costs here . Currently queries do not have any cycle costs. Most important to you will probably be update costs. TODO break down some cycle scenarios maybe? Perhaps we should show some of our analyses for different types of applications. Maybe show how to send and receive cycles, exactly how to do it. Show all of the APIs for sending or receiving cycles? Perhaps we don't need to do that here, since each API will show this information. Maybe here we just show the basic concept of cycles, link to the main cycles cost page, and show a few examples of how to break down these costs or estimate these costs.","breadcrumbs":"Old Candid-based Documentation » Cycles » Cycles","id":"103","title":"Cycles"},"104":{"body":"","breadcrumbs":"Old Candid-based Documentation » Caveats » Caveats","id":"104","title":"Caveats"},"105":{"body":"Azle is a beta project. See the disclaimer for more information.","breadcrumbs":"Old Candid-based Documentation » Caveats » Unknown security vulnerabilities","id":"105","title":"Unknown security vulnerabilities"},"106":{"body":"Some npm packages will work and some will not work. It is our long-term goal to support as many npm packages as possible. There are various reasons why an npm package may not currently work, including the small Wasm binary limit of the IC and unimplemented web or Node.js APIs. Feel free to open issues if your npm package does not work in Azle.","breadcrumbs":"Old Candid-based Documentation » Caveats » npm packages","id":"106","title":"npm packages"},"107":{"body":"You may encounter various missing JavaScript environment APIs, such as those you would expect in the web or Node.js environments.","breadcrumbs":"Old Candid-based Documentation » Caveats » JavaScript environment APIs","id":"107","title":"JavaScript environment APIs"},"108":{"body":"Candid encoding/decoding is currently very unoptimized. This will most likely lead to a ~1-2 million extra fixed instruction cost for all calls. Be careful using CandidType Serializable objects with StableBTreeMap, or using any other API or data structure that engages in Candid encoding/decoding.","breadcrumbs":"Old Candid-based Documentation » Caveats » High Candid encoding/decoding costs","id":"108","title":"High Candid encoding/decoding costs"},"109":{"body":"Though promises are implemented, the underlying queue that handles asynchronous operations is very simple. This queue will not behave exactly as queues from the major JS engines.","breadcrumbs":"Old Candid-based Documentation » Caveats » Promises","id":"109","title":"Promises"},"11":{"body":"Your project is just a directory with a dfx.json file that points to your .ts or .js entrypoint. Here's what your directory structure might look like: hello_world/\n|\n├── dfx.json\n|\n└── src/ └── api.ts And the corresponding dfx.json file: { \"canisters\": { \"api\": { \"type\": \"custom\", \"main\": \"src/api.ts\", \"candid\": \"src/api.did\", \"candid_gen\": \"http\", \"build\": \"npx azle api\", \"wasm\": \".azle/api/api.wasm\", \"gzip\": true, \"metadata\": [ { \"name\": \"candid:service\", \"path\": \"src/api.did\" }, { \"name\": \"cdk:name\", \"content\": \"azle\" } ] } }\n} Once you have created this directory structure you can deploy to mainnet or a locally running replica by running the dfx deploy command in the same directory as your dfx.json file.","breadcrumbs":"Project Structure » Project Structure TL;DR","id":"11","title":"Project Structure TL;DR"},"110":{"body":"It seems to be only some float64 values cannot be successfully stored and retrieved with a StableBTreeMap using stableJson because of this bug with JSON.parse: https://github.com/bellard/quickjs/issues/206 This will also affect stand-alone usage of JSON.parse.","breadcrumbs":"Old Candid-based Documentation » Caveats » JSON.parse and StableBTreeMap float64 values","id":"110","title":"JSON.parse and StableBTreeMap float64 values"},"111":{"body":"Bitcoin Call APIs Candid Canister APIs Canister Methods Environment Variables Management Canister Plugins Stable Memory Timers Wasm Binary Optimization","breadcrumbs":"Old Candid-based Documentation » Reference » Reference","id":"111","title":"Reference"},"112":{"body":"The Internet Computer (IC) interacts with the Bitcoin blockchain through the use of tECDSA, the Bitcoin integration, and a ledger canister called ckBTC.","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » Bitcoin","id":"112","title":"Bitcoin"},"113":{"body":"tECDSA on the IC allows canisters to request access to threshold ECDSA keypairs on the tECDSA subnet. This functionality is exposed through two management canister methods: ecdsa_public_key sign_with_ecdsa The following are examples using tECDSA: basic_bitcoin threshold_ecdsa","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » tECDSA","id":"113","title":"tECDSA"},"114":{"body":"The Bitcoin integration allows canisters on the IC to interact directly with the Bitcoin network. This functionality is exposed through the following management canister methods: bitcoin_get_balance bitcoin_get_current_fee_percentiles bitcoin_get_utxos bitcoin_send_transaction The following are examples using the Bitcoin integration: basic_bitcoin bitcoin","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » Bitcoin integration","id":"114","title":"Bitcoin integration"},"115":{"body":"ckBTC is a ledger canister deployed to the IC. It follows the ICRC standard, and can be accessed easily from an Azle canister using azle/canisters/ICRC if you only need the ICRC methods. For access to the full ledger methods you will need to create your own Service for now. The following are examples using ckBTC: ckBTC","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » ckBTC","id":"115","title":"ckBTC"},"116":{"body":"accept message arg data raw arg data raw size call call raw call raw 128 call with payment call with payment 128 caller method name msg cycles accept msg cycles accept 128 msg cycles available msg cycles available 128 msg cycles refunded msg cycles refunded 128 notify notify raw notify with payment 128 reject reject code reject message reply reply raw","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » Call APIs","id":"116","title":"Call APIs"},"117":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { Canister, ic, inspectMessage } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { ic.acceptMessage(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » accept message » accept message","id":"117","title":"accept message"},"118":{"body":"This section is a work in progress. Examples: ic_api import { blob, bool, Canister, ic, int8, query, text } from 'azle'; export default Canister({ // returns the argument data as bytes. argDataRaw: query( [blob, int8, bool, text], blob, (arg1, arg2, arg3, arg4) => { return ic.argDataRaw(); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » arg data raw » arg data raw","id":"118","title":"arg data raw"},"119":{"body":"This section is a work in progress. Examples: ic_api import { blob, bool, Canister, ic, int8, nat, query, text } from 'azle'; export default Canister({ // returns the length of the argument data in bytes argDataRawSize: query( [blob, int8, bool, text], nat, (arg1, arg2, arg3, arg4) => { return ic.argDataRawSize(); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » arg data raw size » arg data raw size","id":"119","title":"arg data raw size"},"12":{"body":"Just write Node.js servers like this: import { createServer } from 'http'; const server = createServer((req, res) => { res.write('Hello World!'); res.end();\n}); server.listen(); or write Express servers like this: import express, { Request } from 'express'; let db = { hello: ''\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.json(db);\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.json(db);\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » Servers TL;DR","id":"12","title":"Servers TL;DR"},"120":{"body":"This section is a work in progress. Examples: async_await bitcoin composite_queries cross_canister_calls cycles ethereum_json_rpc func_types heartbeat inline_types ledger_canister management_canister outgoing_http_requests threshold_ecdsa rejections timers tuple_types whoami import { Canister, ic, init, nat64, Principal, update } from 'azle'; const TokenCanister = Canister({ transfer: update([Principal, nat64], nat64)\n}); let tokenCanister: typeof TokenCanister; export default Canister({ init: init([], setup), postDeploy: init([], setup), payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); function setup() { tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai') );\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call » call","id":"120","title":"call"},"121":{"body":"This section is a work in progress. Examples: call_raw outgoing_http_requests import { Canister, ic, nat64, Principal, text, update } from 'azle'; export default Canister({ executeCallRaw: update( [Principal, text, text, nat64], text, async (canisterId, method, candidArgs, payment) => { const candidBytes = await ic.callRaw( canisterId, method, ic.candidEncode(candidArgs), payment ); return ic.candidDecode(candidBytes); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call raw » call raw","id":"121","title":"call raw"},"122":{"body":"This section is a work in progress. Examples: call_raw import { Canister, ic, nat, Principal, text, update } from 'azle'; export default Canister({ executeCallRaw128: update( [Principal, text, text, nat], text, async (canisterId, method, candidArgs, payment) => { const candidBytes = await ic.callRaw128( canisterId, method, ic.candidEncode(candidArgs), payment ); return ic.candidDecode(candidBytes); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call raw 128 » call raw 128","id":"122","title":"call raw 128"},"123":{"body":"This section is a work in progress. Examples: bitcoin cycles ethereum_json_rpc management_canister outgoing_http_requests threshold_ecdsa import { blob, Canister, ic, Principal, update, Void } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], Void, async (canisterId, wasmModule) => { return await ic.call(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call with payment » call with payment","id":"123","title":"call with payment"},"124":{"body":"This section is a work in progress. Examples: cycles import { blob, Canister, ic, Principal, update, Void } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], Void, async (canisterId, wasmModule) => { return await ic.call128(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call with payment 128 » call with payment 128","id":"124","title":"call with payment 128"},"125":{"body":"This section is a work in progress. Examples: ic_api threshold_ecdsa whoami import { Canister, ic, Principal, update } from 'azle'; export default Canister({ // returns the principal of the identity that called this function caller: update([], Principal, () => { return ic.caller(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » caller » caller","id":"125","title":"caller"},"126":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { bool, Canister, ic, inspectMessage, update } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { console.log('inspectMessage called'); if (ic.methodName() === 'accessible') { ic.acceptMessage(); return; } if (ic.methodName() === 'inaccessible') { return; } throw `Method \"${ic.methodName()}\" not allowed`; }), accessible: update([], bool, () => { return true; }), inaccessible: update([], bool, () => { return false; }), alsoInaccessible: update([], bool, () => { return false; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » method name » method name","id":"126","title":"method name"},"127":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles: update([], nat64, () => { return ic.msgCyclesAccept(ic.msgCyclesAvailable() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles accept » msg cycles accept","id":"127","title":"msg cycles accept"},"128":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles128: update([], nat64, () => { return ic.msgCyclesAccept128(ic.msgCyclesAvailable128() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles accept 128 » msg cycles accept 128","id":"128","title":"msg cycles accept 128"},"129":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles: update([], nat64, () => { return ic.msgCyclesAccept(ic.msgCyclesAvailable() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles available » msg cycles available","id":"129","title":"msg cycles available"},"13":{"body":"Node.js http.server Express Server Limitations Azle supports building HTTP servers on ICP using the Node.js http.Server class as the foundation. These servers can serve static files or act as API backends, or both. Azle currently has good but not comprehensive support for Node.js http.Server and Express . Support for other libraries like Nest are works-in-progress. Once deployed you can access your server at a URL like this locally http://bkyz2-fmaaa-aaaaa-qaaaq-cai.localhost:8000 or like this on mainnet https://bkyz2-fmaaa-aaaaa-qaaaq-cai.raw.icp0.io. You can use any HTTP client to interact with your server, such as curl, fetch, or a web browser. See the Interacting with your canister section of the deployment chapter for help in constructing your canister URL.","breadcrumbs":"Servers » Servers","id":"13","title":"Servers"},"130":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles128: update([], nat64, () => { return ic.msgCyclesAccept128(ic.msgCyclesAvailable128() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles available 128 » msg cycles available 128","id":"130","title":"msg cycles available 128"},"131":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ // Reports the number of cycles returned from the Cycles canister sendCycles: update([], nat64, async () => { await ic.call(otherCanister.receiveCycles, { cycles: 1_000_000n }); return ic.msgCyclesRefunded(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles refunded » msg cycles refunded","id":"131","title":"msg cycles refunded"},"132":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ // Reports the number of cycles returned from the Cycles canister sendCycles128: update([], nat64, async () => { await ic.call128(otherCanister.receiveCycles128, { cycles: 1_000_000n }); return ic.msgCyclesRefunded128(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles refunded 128 » msg cycles refunded 128","id":"132","title":"msg cycles refunded 128"},"133":{"body":"This section is a work in progress. Examples: cross_canister_calls cycles import { Canister, ic, update, Void } from 'azle';\nimport { otherCanister } from './otherCanister'; export default Canister({ sendNotification: update([], Void, () => { return ic.notify(otherCanister.receiveNotification, { args: ['This is the notification'] }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify » notify","id":"133","title":"notify"},"134":{"body":"This section is a work in progress. Examples: notify_raw import { Canister, ic, Principal, update, Void } from 'azle'; export default Canister({ sendNotification: update([], Void, () => { return ic.notifyRaw( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai'), 'receiveNotification', Uint8Array.from(ic.candidEncode('()')), 0n ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify raw » notify raw","id":"134","title":"notify raw"},"135":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, update, Void } from 'azle';\nimport { otherCanister } from './otherCanister'; export default Canister({ sendCycles128Notify: update([], Void, () => { return ic.notify(otherCanister.receiveCycles128, { cycles: 1_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify with payment 128 » notify with payment 128","id":"135","title":"notify with payment 128"},"136":{"body":"This section is a work in progress. Examples: ic_api manual_reply rejections import { Canister, empty, ic, Manual, query, text } from 'azle'; export default Canister({ reject: query( [text], Manual(empty), (message) => { ic.reject(message); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject » reject","id":"136","title":"reject"},"137":{"body":"This section is a work in progress. Examples: rejections import { Canister, ic, RejectionCode, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ getRejectionCodeDestinationInvalid: update([], RejectionCode, async () => { await ic.call(otherCanister.method); return ic.rejectCode(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject code » reject code","id":"137","title":"reject code"},"138":{"body":"This section is a work in progress. Examples: rejections import { Canister, ic, text, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ getRejectionMessage: update([], text, async () => { await ic.call(otherCanister.method); return ic.rejectMessage(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject message » reject message","id":"138","title":"reject message"},"139":{"body":"This section is a work in progress. Examples: composite_queries manual_reply import { blob, Canister, ic, Manual, update } from 'azle'; export default Canister({ updateBlob: update( [], Manual(blob), () => { ic.reply( new Uint8Array([83, 117, 114, 112, 114, 105, 115, 101, 33]), blob ); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reply » reply","id":"139","title":"reply"},"14":{"body":"Azle supports instances of Node.js http.Server . listen() must be called on the server instance for Azle to use it to handle HTTP requests. Azle does not respect a port being passed into listen(). The port is set by the ICP replica (e.g. dfx start --host 127.0.0.1:8000), not by Azle. Here's an example of a very simple Node.js http.Server : import { createServer } from 'http'; const server = createServer((req, res) => { res.write('Hello World!'); res.end();\n}); server.listen();","breadcrumbs":"Servers » Node.js http.server","id":"14","title":"Node.js http.server"},"140":{"body":"This section is a work in progress. Examples: manual_reply outgoing_http_requests import { blob, bool, Canister, ic, int, Manual, Null, Record, text, update, Variant\n} from 'azle'; const Options = Variant({ High: Null, Medium: Null, Low: Null\n}); export default Canister({ replyRaw: update( [], Manual( Record({ int: int, text: text, bool: bool, blob: blob, variant: Options }) ), () => { ic.replyRaw( ic.candidEncode( '(record { \"int\" = 42; \"text\" = \"text\"; \"bool\" = true; \"blob\" = blob \"Surprise!\"; \"variant\" = variant { Medium } })' ) ); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reply raw » reply raw","id":"140","title":"reply raw"},"141":{"body":"blob bool empty float32 float64 func int int8 int16 int32 int64 nat nat8 nat16 nat32 nat64 null opt principal record reserved service text variant vec","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » Candid","id":"141","title":"Candid"},"142":{"body":"The CandidType object blob corresponds to the Candid type blob , is inferred to be a TypeScript Uint8Array and will be decoded into a JavaScript Uint8Array at runtime. TypeScript or JavaScript: import { blob, Canister, query } from 'azle'; export default Canister({ getBlob: query([], blob, () => { return Uint8Array.from([68, 73, 68, 76, 0, 0]); }), printBlob: query([blob], blob, (blob) => { console.log(typeof blob); return blob; })\n}); Candid: service : () -> { getBlob : () -> (vec nat8) query; printBlob : (vec nat8) -> (vec nat8) query;\n} dfx: dfx canister call candid_canister printBlob '(vec { 68; 73; 68; 76; 0; 0; })'\n(blob \"DIDL\\00\\00\") dfx canister call candid_canister printBlob '(blob \"DIDL\\00\\00\")'\n(blob \"DIDL\\00\\00\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » blob » blob","id":"142","title":"blob"},"143":{"body":"The CandidType object bool corresponds to the Candid type bool , is inferred to be a TypeScript boolean, and will be decoded into a JavaScript Boolean at runtime. TypeScript or JavaScript: import { bool, Canister, query } from 'azle'; export default Canister({ getBool: query([], bool, () => { return true; }), printBool: query([bool], bool, (bool) => { console.log(typeof bool); return bool; })\n}); Candid: service : () -> { getBool : () -> (bool) query; printBool : (bool) -> (bool) query;\n} dfx: dfx canister call candid_canister printBool '(true)'\n(true)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » bool » bool","id":"143","title":"bool"},"144":{"body":"The CandidType object empty corresponds to the Candid type empty , is inferred to be a TypeScript never, and has no JavaScript value at runtime. TypeScript or JavaScript: import { Canister, empty, query } from 'azle'; export default Canister({ getEmpty: query([], empty, () => { throw 'Anything you want'; }), // Note: It is impossible to call this function because it requires an argument // but there is no way to pass an \"empty\" value as an argument. printEmpty: query([empty], empty, (empty) => { console.log(typeof empty); throw 'Anything you want'; })\n}); Candid: service : () -> { getEmpty : () -> (empty) query; printEmpty : (empty) -> (empty) query;\n} dfx: dfx canister call candid_canister printEmpty '(\"You can put anything here\")'\nError: Failed to create argument blob.\nCaused by: Failed to create argument blob. Invalid data: Unable to serialize Candid values: type mismatch: \"You can put anything here\" cannot be of type empty","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » empty » empty","id":"144","title":"empty"},"145":{"body":"The CandidType object float32 corresponds to the Candid type float32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, float32, query } from 'azle'; export default Canister({ getFloat32: query([], float32, () => { return Math.PI; }), printFloat32: query([float32], float32, (float32) => { console.log(typeof float32); return float32; })\n}); Candid: service : () -> { getFloat32 : () -> (float32) query; printFloat32 : (float32) -> (float32) query;\n} dfx: dfx canister call candid_canister printFloat32 '(3.1415927 : float32)'\n(3.1415927 : float32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » float32 » float32","id":"145","title":"float32"},"146":{"body":"The CandidType object float64 corresponds to the Candid type float64 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, float64, query } from 'azle'; export default Canister({ getFloat64: query([], float64, () => { return Math.E; }), printFloat64: query([float64], float64, (float64) => { console.log(typeof float64); return float64; })\n}); Candid: service : () -> { getFloat64 : () -> (float64) query; printFloat64 : (float64) -> (float64) query;\n} dfx: dfx canister call candid_canister printFloat64 '(2.718281828459045 : float64)'\n(2.718281828459045 : float64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » float64 » float64","id":"146","title":"float64"},"147":{"body":"Values created by the CandidType function Func correspond to the Candid type func , are inferred to be TypeScript [Principal, string] tuples, and will be decoded into JavaScript array with two elements at runtime. The first element is an @dfinity/principal and the second is a JavaScript string . The @dfinity/principal represents the principal of the canister/service where the function exists, and the string represents the function's name. A func acts as a callback, allowing the func receiver to know which canister instance and method must be used to call back. TypeScript or JavaScript: import { Canister, Func, Principal, query, text } from 'azle'; const BasicFunc = Func([text], text, 'query'); export default Canister({ getBasicFunc: query([], BasicFunc, () => { return [ Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'), 'getBasicFunc' ]; }), printBasicFunc: query([BasicFunc], BasicFunc, (basicFunc) => { console.log(typeof basicFunc); return basicFunc; })\n}); Candid: service : () -> { getBasicFunc : () -> (func (text) -> (text) query) query; printBasicFunc : (func (text) -> (text) query) -> ( func (text) -> (text) query, ) query;\n} dfx: dfx canister call candid_canister printBasicFunc '(func \"r7inp-6aaaa-aaaaa-aaabq-cai\".getBasicFunc)'\n(func \"r7inp-6aaaa-aaaaa-aaabq-cai\".getBasicFunc)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » func » func","id":"147","title":"func"},"148":{"body":"The CandidType object int corresponds to the Candid type int , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, int, query } from 'azle'; export default Canister({ getInt: query([], int, () => { return 170_141_183_460_469_231_731_687_303_715_884_105_727n; }), printInt: query([int], int, (int) => { console.log(typeof int); return int; })\n}); Candid: service : () -> { getInt : () -> (int) query; printInt : (int) -> (int) query;\n} dfx: dfx canister call candid_canister printInt '(170_141_183_460_469_231_731_687_303_715_884_105_727 : int)'\n(170_141_183_460_469_231_731_687_303_715_884_105_727 : int)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int » int","id":"148","title":"int"},"149":{"body":"The CandidType object int8 corresponds to the Candid type int8 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int8, query } from 'azle'; export default Canister({ getInt8: query([], int8, () => { return 127; }), printInt8: query([int8], int8, (int8) => { console.log(typeof int8); return int8; })\n}); Candid: service : () -> { getInt8 : () -> (int8) query; printInt8 : (int8) -> (int8) query;\n} dfx: dfx canister call candid_canister printInt8 '(127 : int8)'\n(127 : int8)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int8 » int8","id":"149","title":"int8"},"15":{"body":"Express is one of the most popular backend JavaScript web frameworks, and it's the recommended way to get started building servers in Azle. Here's the main code from the hello_world example : import express, { Request } from 'express'; let db = { hello: ''\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.json(db);\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.json(db);\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » Express","id":"15","title":"Express"},"150":{"body":"The CandidType object int16 corresponds to the Candid type int16 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int16, query } from 'azle'; export default Canister({ getInt16: query([], int16, () => { return 32_767; }), printInt16: query([int16], int16, (int16) => { console.log(typeof int16); return int16; })\n}); Candid: service : () -> { getInt16 : () -> (int16) query; printInt16 : (int16) -> (int16) query;\n} dfx: dfx canister call candid_canister printInt16 '(32_767 : int16)'\n(32_767 : int16)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int16 » int16","id":"150","title":"int16"},"151":{"body":"The CandidType object int32 corresponds to the Candid type int32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int32, query } from 'azle'; export default Canister({ getInt32: query([], int32, () => { return 2_147_483_647; }), printInt32: query([int32], int32, (int32) => { console.log(typeof int32); return int32; })\n}); Candid: service : () -> { getInt32 : () -> (int32) query; printInt32 : (int32) -> (int32) query;\n} dfx: dfx canister call candid_canister printInt32 '(2_147_483_647 : int32)'\n(2_147_483_647 : int32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int32 » int32","id":"151","title":"int32"},"152":{"body":"The CandidType object int64 corresponds to the Candid type int64 , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, int64, query } from 'azle'; export default Canister({ getInt64: query([], int64, () => { return 9_223_372_036_854_775_807n; }), printInt64: query([int64], int64, (int64) => { console.log(typeof int64); return int64; })\n}); Candid: service : () -> { getInt64 : () -> (int64) query; printInt64 : (int64) -> (int64) query;\n} dfx: dfx canister call candid_canister printInt64 '(9_223_372_036_854_775_807 : int64)'\n(9_223_372_036_854_775_807 : int64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int64 » int64","id":"152","title":"int64"},"153":{"body":"The CandidType object nat corresponds to the Candid type nat , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, nat, query } from 'azle'; export default Canister({ getNat: query([], nat, () => { return 340_282_366_920_938_463_463_374_607_431_768_211_455n; }), printNat: query([nat], nat, (nat) => { console.log(typeof nat); return nat; })\n}); Candid: service : () -> { getNat : () -> (nat) query; printNat : (nat) -> (nat) query;\n} dfx: dfx canister call candid_canister printNat '(340_282_366_920_938_463_463_374_607_431_768_211_455 : nat)'\n(340_282_366_920_938_463_463_374_607_431_768_211_455 : nat)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat » nat","id":"153","title":"nat"},"154":{"body":"The CandidType object nat8 corresponds to the Candid type nat8 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat8, query } from 'azle'; export default Canister({ getNat8: query([], nat8, () => { return 255; }), printNat8: query([nat8], nat8, (nat8) => { console.log(typeof nat8); return nat8; })\n}); Candid: service : () -> { getNat8 : () -> (nat8) query; printNat8 : (nat8) -> (nat8) query;\n} dfx: dfx canister call candid_canister printNat8 '(255 : nat8)'\n(255 : nat8)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat8 » nat8","id":"154","title":"nat8"},"155":{"body":"The CandidType object nat16 corresponds to the Candid type nat16 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat16, query } from 'azle'; export default Canister({ getNat16: query([], nat16, () => { return 65_535; }), printNat16: query([nat16], nat16, (nat16) => { console.log(typeof nat16); return nat16; })\n}); Candid: service : () -> { getNat16 : () -> (nat16) query; printNat16 : (nat16) -> (nat16) query;\n} dfx: dfx canister call candid_canister printNat16 '(65_535 : nat16)'\n(65_535 : nat16)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat16 » nat16","id":"155","title":"nat16"},"156":{"body":"The CandidType object nat32 corresponds to the Candid type nat32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat32, query } from 'azle'; export default Canister({ getNat32: query([], nat32, () => { return 4_294_967_295; }), printNat32: query([nat32], nat32, (nat32) => { console.log(typeof nat32); return nat32; })\n}); Candid: service : () -> { getNat32 : () -> (nat32) query; printNat32 : (nat32) -> (nat32) query;\n} dfx: dfx canister call candid_canister printNat32 '(4_294_967_295 : nat32)'\n(4_294_967_295 : nat32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat32 » nat32","id":"156","title":"nat32"},"157":{"body":"The CandidType object nat64 corresponds to the Candid type nat64 , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, nat64, query } from 'azle'; export default Canister({ getNat64: query([], nat64, () => { return 18_446_744_073_709_551_615n; }), printNat64: query([nat64], nat64, (nat64) => { console.log(typeof nat64); return nat64; })\n}); Candid: service : () -> { getNat64 : () -> (nat64) query; printNat64 : (nat64) -> (nat64) query;\n} dfx: dfx canister call candid_canister printNat64 '(18_446_744_073_709_551_615 : nat64)'\n(18_446_744_073_709_551_615 : nat64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat64 » nat64","id":"157","title":"nat64"},"158":{"body":"The CandidType object null corresponds to the Candid type null , is inferred to be a TypeScript null, and will be decoded into a JavaScript null at runtime. TypeScript or JavaScript: import { Canister, Null, query } from 'azle'; export default Canister({ getNull: query([], Null, () => { return null; }), printNull: query([Null], Null, (null_) => { console.log(typeof null_); return null_; })\n}); Candid: service : () -> { getNull : () -> (null) query; printNull : (null) -> (null) query;\n} dfx: dfx canister call candid_canister printNull '(null)'\n(null : null)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » null » null","id":"158","title":"null"},"159":{"body":"The CandidType object Opt corresponds to the Candid type opt , is inferred to be a TypeScript Opt, and will be decoded into a JavaScript Object at runtime. It is a variant with Some and None cases. At runtime if the value of the variant is Some, the Some property of the variant object will have a value of the enclosed Opt type at runtime. TypeScript or JavaScript: import { bool, Canister, None, Opt, query, Some } from 'azle'; export default Canister({ getOptSome: query([], Opt(bool), () => { return Some(true); // equivalent to { Some: true } }), getOptNone: query([], Opt(bool), () => { return None; //equivalent to { None: null} })\n}); Candid: service : () -> { getOptNone : () -> (opt bool) query; getOptSome : () -> (opt bool) query;\n} dfx: dfx canister call candid_canister getOptSome\n(opt true) dfx canister call candid_canister getOptNone\n(null)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » opt » opt","id":"159","title":"opt"},"16":{"body":"When working with res.json you may run into errors because of attempting to send back JavaScript objects that are not strictly JSON. This can happen when trying to send back an object with a BigInt for example. Azle has created a special function called jsonStringify that will serialize many ICP-specific data structures to JSON for you: import { jsonStringify } from 'azle';\nimport express, { Request } from 'express'; let db = { bigInt: 0n\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.send(jsonStringify(db));\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.send(jsonStringify(db));\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » jsonStringify","id":"16","title":"jsonStringify"},"160":{"body":"The CandidType object Principal corresponds to the Candid type principal , is inferred to be a TypeScript @dfinity/principal Principal, and will be decoded into an @dfinity/principal Principal at runtime. TypeScript or JavaScript: import { Canister, Principal, query } from 'azle'; export default Canister({ getPrincipal: query([], Principal, () => { return Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'); }), printPrincipal: query([Principal], Principal, (principal) => { console.log(typeof principal); return principal; })\n}); Candid: service : () -> { getPrincipal : () -> (principal) query; printPrincipal : (principal) -> (principal) query;\n} dfx: dfx canister call candid_canister printPrincipal '(principal \"rrkah-fqaaa-aaaaa-aaaaq-cai\")'\n(principal \"rrkah-fqaaa-aaaaa-aaaaq-cai\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » principal » principal","id":"160","title":"principal"},"161":{"body":"Objects created by the CandidType function Record correspond to the Candid record type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The shape of the object will match the object literal passed to the Record function. TypeScript or JavaScript: import { Canister, Principal, query, Record, text } from 'azle'; const User = Record({ id: Principal, username: text\n}); export default Canister({ getUser: query([], User, () => { return { id: Principal.fromUint8Array(Uint8Array.from([0])), username: 'lastmjs' }; }), printUser: query([User], User, (user) => { console.log(typeof user); return user; })\n}); Candid: type User = record { id : principal; username : text };\nservice : () -> { getUser : () -> (User) query; printUser : (User) -> (User) query;\n} dfx: dfx canister call candid_canister printUser '(record { id = principal \"2ibo7-dia\"; username = \"lastmjs\" })'\n(record { id = principal \"2ibo7-dia\"; username = \"lastmjs\" })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » record » record","id":"161","title":"record"},"162":{"body":"The CandidType object reserved corresponds to the Candid type reserved , is inferred to be a TypeScript any, and will be decoded into a JavaScript null at runtime. TypeScript or JavaScript: import { Canister, query, reserved } from 'azle'; export default Canister({ getReserved: query([], reserved, () => { return 'anything'; }), printReserved: query([reserved], reserved, (reserved) => { console.log(typeof reserved); return reserved; })\n}); Candid: service : () -> { getReserved : () -> (reserved) query; printReserved : (reserved) -> (reserved) query;\n} dfx: dfx canister call candid_canister printReserved '(null)'\n(null : reserved)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » reserved » reserved","id":"162","title":"reserved"},"163":{"body":"Values created by the CandidType function Canister correspond to the Candid service type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The properties of this object that match the keys of the service's query and update methods can be passed into ic.call and ic.notify to perform cross-canister calls. TypeScript or JavaScript: import { bool, Canister, ic, Principal, query, text, update } from 'azle'; const SomeCanister = Canister({ query1: query([], bool), update1: update([], text)\n}); export default Canister({ getService: query([], SomeCanister, () => { return SomeCanister(Principal.fromText('aaaaa-aa')); }), callService: update([SomeCanister], text, (service) => { return ic.call(service.update1); })\n}); Candid: type ManualReply = variant { Ok : text; Err : text };\nservice : () -> { callService : ( service { query1 : () -> (bool) query; update1 : () -> (text) }, ) -> (ManualReply); getService : () -> ( service { query1 : () -> (bool) query; update1 : () -> (text) }, ) query;\n} dfx: dfx canister call candid_canister getService\n(service \"aaaaa-aa\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » service » service","id":"163","title":"service"},"164":{"body":"The CandidType object text corresponds to the Candid type text , is inferred to be a TypeScript string, and will be decoded into a JavaScript String at runtime. TypeScript or JavaScript: import { Canister, query, text } from 'azle'; export default Canister({ getString: query([], text, () => { return 'Hello world!'; }), printString: query([text], text, (string) => { console.log(typeof string); return string; })\n}); Candid: service : () -> { getString : () -> (text) query; printString : (text) -> (text) query;\n} dfx: dfx canister call candid_canister printString '(\"Hello world!\")'\n(\"Hello world!\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » text » text","id":"164","title":"text"},"165":{"body":"Objects created by the CandidType function Variant correspond to the Candid variant type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The shape of the object will match the object literal passed to the Variant function, however it will contain only one of the enumerated properties. TypeScript or JavaScript: import { Canister, Null, query, Variant } from 'azle'; const Emotion = Variant({ Happy: Null, Indifferent: Null, Sad: Null\n}); const Reaction = Variant({ Fire: Null, ThumbsUp: Null, Emotion: Emotion\n}); export default Canister({ getReaction: query([], Reaction, () => { return { Fire: null }; }), printReaction: query([Reaction], Reaction, (reaction) => { console.log(typeof reaction); return reaction; })\n}); Candid: type Emotion = variant { Sad; Indifferent; Happy };\ntype Reaction = variant { Emotion : Emotion; Fire; ThumbsUp };\nservice : () -> { getReaction : () -> (Reaction) query; printReaction : (Reaction) -> (Reaction) query;\n} dfx: dfx canister call candid_canister printReaction '(variant { Fire })'\n(variant { Fire })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » variant » variant","id":"165","title":"variant"},"166":{"body":"The CandidType object Vec corresponds to the Candid type vec , is inferred to be a TypeScript T[], and will be decoded into a JavaScript array of the specified type at runtime (except for Vec which will become a Uint8Array, thus it is recommended to use the blob type instead of Vec). TypeScript or JavaScript: import { Canister, int32, Vec, query } from 'azle'; export default Canister({ getNumbers: query([], Vec(int32), () => { return [0, 1, 2, 3]; }), printNumbers: query([Vec(int32)], Vec(int32), (numbers) => { console.log(typeof numbers); return numbers; })\n}); Candid: service : () -> { getNumbers : () -> (vec int32) query; printNumbers : (vec int32) -> (vec int32) query;\n} dfx: dfx canister call candid_canister printNumbers '(vec { 0 : int32; 1 : int32; 2 : int32; 3 : int32 })'\n(vec { 0 : int32; 1 : int32; 2 : int32; 3 : int32 })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » vec » vec","id":"166","title":"vec"},"167":{"body":"candid decode candid encode canister balance canister balance 128 canister version canister id data certificate instruction counter is controller performance counter print set certified data time trap","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » Canister APIs","id":"167","title":"Canister APIs"},"168":{"body":"This section is a work in progress. Examples: call_raw candid_encoding import { blob, Canister, ic, query, text } from 'azle'; export default Canister({ // decodes Candid bytes to a Candid string candidDecode: query([blob], text, (candidEncoded) => { return ic.candidDecode(candidEncoded); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » candid decode » candid decode","id":"168","title":"candid decode"},"169":{"body":"This section is a work in progress. Examples: call_raw candid_encoding manual_reply notify_raw outgoing_http_requests import { blob, Canister, ic, query, text } from 'azle'; export default Canister({ // encodes a Candid string to Candid bytes candidEncode: query([text], blob, (candidString) => { return ic.candidEncode(candidString); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » candid encode » candid encode","id":"169","title":"candid encode"},"17":{"body":"If you need to add canister methods to your HTTP server, the Server function imported from azle allows you to do so. Here's an example of a very simple HTTP server: import { Server } from 'azle';\nimport express from 'express'; export default Server(() => { const app = express(); app.get('/http-query', (_req, res) => { res.send('http-query-server'); }); app.post('/http-update', (_req, res) => { res.send('http-update-server'); }); return app.listen();\n}); You can add canister methods like this: import { query, Server, text, update } from 'azle';\nimport express from 'express'; export default Server( () => { const app = express(); app.get('/http-query', (_req, res) => { res.send('http-query-server'); }); app.post('/http-update', (_req, res) => { res.send('http-update-server'); }); return app.listen(); }, { candidQuery: query([], text, () => { return 'candidQueryServer'; }), candidUpdate: update([], text, () => { return 'candidUpdateServer'; }) }\n); The default export of your main module must be the result of calling Server, and the callback argument to Server must return a Node.js http.Server . The main module is specified by the main property of your project's dfx.json file . The dfx.json file must be at the root directory of your project. The callback argument to Server can be asynchronous: import { Server } from 'azle';\nimport { createServer } from 'http'; export default Server(async () => { const message = await asynchronousHelloWorld(); return createServer((req, res) => { res.write(message); res.end(); });\n}); async function asynchronousHelloWorld() { // do some asynchronous task return 'Hello World Asynchronous!';\n}","breadcrumbs":"Servers » Server","id":"17","title":"Server"},"170":{"body":"This section is a work in progress. Examples: cycles ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the amount of cycles available in the canister canisterBalance: query([], nat64, () => { return ic.canisterBalance(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister balance » canister balance","id":"170","title":"canister balance"},"171":{"body":"This section is a work in progress. Examples: cycles ic_api import { Canister, ic, nat, query } from 'azle'; export default Canister({ // returns the amount of cycles available in the canister canisterBalance128: query([], nat, () => { return ic.canisterBalance128(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister balance 128 » canister balance 128","id":"171","title":"canister balance 128"},"172":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the canister's version number canisterVersion: query([], nat64, () => { return ic.canisterVersion(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister version » canister version","id":"172","title":"canister version"},"173":{"body":"This section is a work in progress. Examples: ethereum_json_rpc ic_api http_counter outgoing_http_requests whoami import { Canister, ic, Principal, query } from 'azle'; export default Canister({ // returns this canister's id id: query([], Principal, () => { return ic.id(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister id » canister id","id":"173","title":"canister id"},"174":{"body":"This section is a work in progress. Examples: ic_api import { blob, Canister, ic, Opt, query } from 'azle'; export default Canister({ // When called from a query call, returns the data certificate // authenticating certified_data set by this canister. Returns None if not // called from a query call. dataCertificate: query([], Opt(blob), () => { return ic.dataCertificate(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » data certificate » data certificate","id":"174","title":"data certificate"},"175":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // Returns the number of instructions that the canister executed since the // last entry point. instructionCounter: query([], nat64, () => { return ic.instructionCounter(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » instruction counter » instruction counter","id":"175","title":"instruction counter"},"176":{"body":"This section is a work in progress. Examples: ic_api import { bool, Canister, ic, Principal, query } from 'azle'; export default Canister({ // determines whether the given principal is a controller of the canister isController: query([Principal], bool, (principal) => { return ic.isController(principal); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » is controller » is controller","id":"176","title":"is controller"},"177":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ performanceCounter: query([], nat64, () => { return ic.performanceCounter(0); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » performance counter » performance counter","id":"177","title":"performance counter"},"178":{"body":"This section is a work in progress. Examples: ic_api null_example import { bool, Canister, ic, query, text } from 'azle'; export default Canister({ // prints a message through the local replica's output print: query([text], bool, (message) => { ic.print(message); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » print » print","id":"178","title":"print"},"179":{"body":"This section is a work in progress. Examples: ic_api import { blob, Canister, ic, update, Void } from 'azle'; export default Canister({ // sets up to 32 bytes of certified data setCertifiedData: update([blob], Void, (data) => { ic.setCertifiedData(data); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » set certified data » set certified data","id":"179","title":"set certified data"},"18":{"body":"For a deeper understanding of possible limitations you may want to refer to The HTTP Gateway Protocol Specification . The top-level route /api is currently reserved by the replica locally The Transfer-Encoding header is not supported gzip responses most likely do not work HTTP requests are generally limited to ~2 MiB HTTP responses are generally limited to ~3 MiB You cannot set HTTP status codes in the 1xx range","breadcrumbs":"Servers » Limitations","id":"18","title":"Limitations"},"180":{"body":"This section is a work in progress. Examples: audio_recorder ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the current timestamp time: query([], nat64, () => { return ic.time(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » time » time","id":"180","title":"time"},"181":{"body":"This section is a work in progress. Examples: cross_canister_calls ethereum_json_rpc http_counter ic_api outgoing_http_requests threshold_ecdsa import { bool, Canister, ic, query, text } from 'azle'; export default Canister({ // traps with a message, stopping execution and discarding all state within the call trap: query([text], bool, (message) => { ic.trap(message); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » trap » trap","id":"181","title":"trap"},"182":{"body":"heartbeat http_request http_request_update init inspect message post upgrade pre upgrade query update","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » Canister Methods","id":"182","title":"Canister Methods"},"183":{"body":"This section is a work in progress. Examples: heartbeat run_time_errors import { Canister, heartbeat } from 'azle'; export default Canister({ heartbeat: heartbeat(() => { console.log('this runs ~1 time per second'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » heartbeat » heartbeat","id":"183","title":"heartbeat"},"184":{"body":"This section is a work in progress. Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, query, Record, text, Tuple, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request: query([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » http_request » http_request","id":"184","title":"http_request"},"185":{"body":"This section is a work in progress. Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, Record, text, Tuple, update, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request_update: update([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » http_request_update » http_request","id":"185","title":"http_request"},"186":{"body":"This section is a work in progress. Examples: ethereum_json_rpc func_types init persistent-storage pre_and_post_upgrade whoami import { Canister, init } from 'azle'; export default Canister({ init: init([], () => { console.log('This runs once when the canister is first initialized'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » init » init","id":"186","title":"init"},"187":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { bool, Canister, ic, inspectMessage, update } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { console.log('inspectMessage called'); if (ic.methodName() === 'accessible') { ic.acceptMessage(); return; } if (ic.methodName() === 'inaccessible') { return; } throw `Method \"${ic.methodName()}\" not allowed`; }), accessible: update([], bool, () => { return true; }), inaccessible: update([], bool, () => { return false; }), alsoInaccessible: update([], bool, () => { return false; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » inspect message » inspect message","id":"187","title":"inspect message"},"188":{"body":"This section is a work in progress. Examples: pre_and_post_upgrade whoami import { Canister, postUpgrade } from 'azle'; export default Canister({ postUpgrade: postUpgrade([], () => { console.log('This runs after every canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » post upgrade » post upgrade","id":"188","title":"post upgrade"},"189":{"body":"This section is a work in progress. Examples: pre_and_post_upgrade import { Canister, preUpgrade } from 'azle'; export default Canister({ preUpgrade: preUpgrade(() => { console.log('This runs before every canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » pre upgrade » pre upgrade","id":"189","title":"pre upgrade"},"19":{"body":"You can automatically copy static assets (essentially files and folders) into your canister's filesystem during deploy by using the assets, assets_large and build_assets properties of the canister object in your project's dfx.json file. Here's an example that copies the src/frontend/dist directory on the deploying machine into the dist directory of the canister, using the assets and build_assets properties: { \"canisters\": { \"backend\": { \"type\": \"custom\", \"main\": \"src/backend/index.ts\", \"candid\": \"src/backend/index.did\", \"candid_gen\": \"http\", \"build\": \"npx azle backend\", \"wasm\": \".azle/backend/backend.wasm\", \"gzip\": true, \"assets\": [[\"src/frontend/dist\", \"dist\"]], \"build_assets\": \"npm run build\", \"metadata\": [ { \"name\": \"candid:service\", \"path\": \"src/backend/index.did\" }, { \"name\": \"cdk:name\", \"content\": \"azle\" } ] } }\n} The assets property is an array of tuples, where the first element of the tuple is the source directory on the deploying machine, and the second element of the tuple is the destination directory in the canister. Use assets for total assets under ~90 MiB in size. The build_assets property allows you to specify custom terminal commands that will run before Azle copies the assets into the canister. You can use build_assets to build your frontend code for example. In this case we are running npm run build, which refers to an npm script that we have specified in our package.json file. There is also an assets_large property that works similarly to the assets property, but allows for total assets up to ~2 GiB in size. We are working on increasing this limit further. Once you have loaded assets into your canister, they are accessible from that canister's filesystem. Here's an example of using the Express static middleware to serve a frontend from the canister's filesystem: import express from 'express'; const app = express(); app.use(express.static('/dist')); app.listen(); Assuming the /dist directory in the canister has an appropriate index.html file, this canister would serve a frontend at its URL when loaded in a web browser.","breadcrumbs":"Assets » Assets TL;DR","id":"19","title":"Assets TL;DR"},"190":{"body":"This section is a work in progress. import { Canister, query, text } from 'azle'; export default Canister({ simpleQuery: query([], text, () => { return 'This is a query method'; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » query » query","id":"190","title":"query"},"191":{"body":"This section is a work in progress. import { Canister, query, text, update, Void } from 'azle'; let message = ''; export default Canister({ getMessage: query([], text, () => { return message; }), setMessage: update([text], Void, (newMessage) => { message = newMessage; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » update » update","id":"191","title":"update"},"192":{"body":"You can provide environment variables to Azle canisters by specifying their names in your dfx.json file and then using the process.env object in Azle. Be aware that the environment variables that you specify in your dfx.json file will be included in plain text in your canister's Wasm binary.","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » Environment Variables","id":"192","title":"Environment Variables"},"193":{"body":"Modify your dfx.json file with the env property to specify which environment variables you would like included in your Azle canister's binary. In this case, CANISTER1_PRINCIPAL and CANISTER2_PRINCIPAL will be included: { \"canisters\": { \"canister1\": { \"type\": \"custom\", \"main\": \"src/canister1/index.ts\", \"build\": \"npx azle canister1\", \"candid\": \"src/canister1/index.did\", \"wasm\": \".azle/canister1/canister1.wasm\", \"gzip\": true, \"declarations\": { \"output\": \"test/dfx_generated/canister1\", \"node_compatibility\": true }, \"env\": [\"CANISTER1_PRINCIPAL\", \"CANISTER2_PRINCIPAL\"] } }\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » dfx.json","id":"193","title":"dfx.json"},"194":{"body":"You can access the specified environment variables in Azle like so: import { Canister, query, text } from 'azle'; export default Canister({ canister1PrincipalEnvVar: query([], text, () => { return ( process.env.CANISTER1_PRINCIPAL ?? 'process.env.CANISTER1_PRINCIPAL is undefined' ); }), canister2PrincipalEnvVar: query([], text, () => { return ( process.env.CANISTER2_PRINCIPAL ?? 'process.env.CANISTER2_PRINCIPAL is undefined' ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » process.env","id":"194","title":"process.env"},"195":{"body":"bitcoin_get_balance bitcoin_get_current_fee_percentiles bitcoin_get_utxos bitcoin_send_transaction canister_info canister_status create_canister delete_canister deposit_cycles ecdsa_public_key http_request install_code provisional_create_canister_with_cycles provisional_top_up_canister raw_rand sign_with_ecdsa start_canister stop_canister uninstall_code update_settings","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » Management Canister","id":"195","title":"Management Canister"},"196":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, None, text, update } from 'azle';\nimport { managementCanister, Satoshi } from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getBalance: update([text], Satoshi, async (address) => { return await ic.call(managementCanister.bitcoin_get_balance, { args: [ { address, min_confirmations: None, network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_balance » bitcoin_get_balance","id":"196","title":"bitcoin_get_balance"},"197":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, update, Vec } from 'azle';\nimport { managementCanister, MillisatoshiPerByte\n} from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getCurrentFeePercentiles: update([], Vec(MillisatoshiPerByte), async () => { return await ic.call( managementCanister.bitcoin_get_current_fee_percentiles, { args: [ { network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST } ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_current_fee_percentiles » bitcoin_get_current_fee_percentiles","id":"197","title":"bitcoin_get_current_fee_percentiles"},"198":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, None, text, update } from 'azle';\nimport { GetUtxosResult, managementCanister } from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getUtxos: update([text], GetUtxosResult, async (address) => { return await ic.call(managementCanister.bitcoin_get_utxos, { args: [ { address, filter: None, network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_utxos » bitcoin_get_utxos","id":"198","title":"bitcoin_get_utxos"},"199":{"body":"This section is a work in progress. Examples: import { blob, bool, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const BITCOIN_BASE_TRANSACTION_COST = 5_000_000_000n;\nconst BITCOIN_CYCLE_COST_PER_TRANSACTION_BYTE = 20_000_000n; export default Canister({ sendTransaction: update([blob], bool, async (transaction) => { const transactionFee = BITCOIN_BASE_TRANSACTION_COST + BigInt(transaction.length) * BITCOIN_CYCLE_COST_PER_TRANSACTION_BYTE; await ic.call(managementCanister.bitcoin_send_transaction, { args: [ { transaction, network: { Regtest: null } } ], cycles: transactionFee }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_send_transaction » bitcoin_send_transaction","id":"199","title":"bitcoin_send_transaction"},"2":{"body":"Windows is only supported through a Linux virtual environment of some kind, such as WSL On Ubuntu/WSL: sudo apt-get install podman On Mac: brew install podman It's recommended to use nvm and Node.js 20: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash Restart your terminal and then run: nvm install 20 Check that the installation went smoothly by looking for clean output from the following command: node --version Install the dfx command line tools for managing ICP applications: DFX_VERSION=0.19.0 sh -ci \"$(curl -fsSL https://sdk.dfinity.org/install.sh)\" Check that the installation went smoothly by looking for clean output from the following command: dfx --version If after trying to run dfx --version you encounter an error such as dfx: command not found, you might need to add $HOME/bin to your path. Here's an example of doing this in your .bashrc: echo 'export PATH=\"$PATH:$HOME/bin\"' >> \"$HOME/.bashrc\"","breadcrumbs":"Get Started » Installation","id":"2","title":"Installation"},"20":{"body":"Azle canisters can import ic from azle and use ic.caller() to get the principal (public-key linked identifier) of the initiator of an HTTP request. HTTP requests are anonymous (principal 2vxsx-fae) by default, but authentication with web browsers (and maybe Node.js) can be done using a JWT-like API from azle/http_client. First you import toJwt from azle/http_client: import { toJwt } from 'azle/http_client'; Then you use fetch and construct an Authorization header using an @dfinity/agent Identity: const response = await fetch( `http://bkyz2-fmaaa-aaaaa-qaaaq-cai.localhost:8000/whoami`, { method: 'GET', headers: [['Authorization', toJwt(this.identity)]] }\n); Here's an example of the frontend of a simple web application using azle/http_client and Internet Identity : import { Identity } from '@dfinity/agent';\nimport { AuthClient } from '@dfinity/auth-client';\nimport { toJwt } from 'azle/http_client';\nimport { html, LitElement } from 'lit';\nimport { customElement, property } from 'lit/decorators.js'; @customElement('azle-app')\nexport class AzleApp extends LitElement { @property() identity: Identity | null = null; @property() whoami: string = ''; connectedCallback() { super.connectedCallback(); this.authenticate(); } async authenticate() { const authClient = await AuthClient.create(); const isAuthenticated = await authClient.isAuthenticated(); if (isAuthenticated === true) { this.handleIsAuthenticated(authClient); } else { await this.handleIsNotAuthenticated(authClient); } } handleIsAuthenticated(authClient: AuthClient) { this.identity = authClient.getIdentity(); } async handleIsNotAuthenticated(authClient: AuthClient) { await new Promise((resolve, reject) => { authClient.login({ identityProvider: import.meta.env.VITE_IDENTITY_PROVIDER, onSuccess: resolve as () => void, onError: reject, windowOpenerFeatures: `width=500,height=500` }); }); this.identity = authClient.getIdentity(); } async whoamiUnauthenticated() { const response = await fetch( `${import.meta.env.VITE_CANISTER_ORIGIN}/whoami` ); const responseText = await response.text(); this.whoami = responseText; } async whoamiAuthenticated() { const response = await fetch( `${import.meta.env.VITE_CANISTER_ORIGIN}/whoami`, { method: 'GET', headers: [['Authorization', toJwt(this.identity)]] } ); const responseText = await response.text(); this.whoami = responseText; } render() { return html`

Internet Identity

Whoami principal: ${this.whoami}

`; }\n} Here's an example of the backend of that same simple web application: import { ic } from 'azle';\nimport express from 'express'; const app = express(); app.get('/whoami', (req, res) => { res.send(ic.caller().toString());\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Authentication » Authentication TL;DR","id":"20","title":"Authentication TL;DR"},"200":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, update } from 'azle';\nimport { CanisterStatusArgs, CanisterStatusResult, managementCanister\n} from 'azle/canisters/management'; export default Canister({ getCanisterStatus: update( [CanisterStatusArgs], CanisterStatusResult, async (args) => { return await ic.call(managementCanister.canister_status, { args: [args] }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » canister_status » canister_status","id":"200","title":"canister_status"},"201":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, None, update } from 'azle';\nimport { CreateCanisterResult, managementCanister\n} from 'azle/canisters/management'; export default Canister({ executeCreateCanister: update([], CreateCanisterResult, async () => { return await ic.call(managementCanister.create_canister, { args: [{ settings: None }], cycles: 50_000_000_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » create_canister » create_canister","id":"201","title":"create_canister"},"202":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeDeleteCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.delete_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » delete_canister » delete_canister","id":"202","title":"delete_canister"},"203":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeDepositCycles: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.deposit_cycles, { args: [ { canister_id: canisterId } ], cycles: 10_000_000n }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » deposit_cycles » deposit_cycles","id":"203","title":"deposit_cycles"},"204":{"body":"This section is a work in progress. Examples: threshold_ecdsa import { blob, Canister, ic, None, Record, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const PublicKey = Record({ publicKey: blob\n}); export default Canister({ publicKey: update([], PublicKey, async () => { const caller = ic.caller().toUint8Array(); const publicKeyResult = await ic.call( managementCanister.ecdsa_public_key, { args: [ { canister_id: None, derivation_path: [caller], key_id: { curve: { secp256k1: null }, name: 'dfx_test_key' } } ] } ); return { publicKey: publicKeyResult.public_key }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » ecdsa_public_key » ecdsa_public_key","id":"204","title":"ecdsa_public_key"},"205":{"body":"This section is a work in progress. Examples: ethereum_json_rpc outgoing_http_requests import { Canister, ic, None, Principal, query, Some, update } from 'azle';\nimport { HttpResponse, HttpTransformArgs, managementCanister\n} from 'azle/canisters/management'; export default Canister({ xkcd: update([], HttpResponse, async () => { return await ic.call(managementCanister.http_request, { args: [ { url: `https://xkcd.com/642/info.0.json`, max_response_bytes: Some(2_000n), method: { get: null }, headers: [], body: None, transform: Some({ function: [ic.id(), 'xkcdTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); }), xkcdTransform: query([HttpTransformArgs], HttpResponse, (args) => { return { ...args.response, headers: [] }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » http_request » http_request","id":"205","title":"http_request"},"206":{"body":"This section is a work in progress. Examples: management_canister import { blob, bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], bool, async (canisterId, wasmModule) => { await ic.call(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); return true; } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » install_code » install_code","id":"206","title":"install_code"},"207":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, None, update } from 'azle';\nimport { managementCanister, ProvisionalCreateCanisterWithCyclesResult\n} from 'azle/canisters/management'; export default Canister({ provisionalCreateCanisterWithCycles: update( [], ProvisionalCreateCanisterWithCyclesResult, async () => { return await ic.call( managementCanister.provisional_create_canister_with_cycles, { args: [ { amount: None, settings: None } ] } ); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » provisional_create_canister_with_cycles » provisional_create_canister_with_cycles","id":"207","title":"provisional_create_canister_with_cycles"},"208":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, nat, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ provisionalTopUpCanister: update( [Principal, nat], bool, async (canisterId, amount) => { await ic.call(managementCanister.provisional_top_up_canister, { args: [ { canister_id: canisterId, amount } ] }); return true; } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » provisional_top_up_canister » provisional_top_up_canister","id":"208","title":"provisional_top_up_canister"},"209":{"body":"This section is a work in progress. Examples: async/await heartbeat management_canister timers import { blob, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ getRawRand: update([], blob, async () => { return await ic.call(managementCanister.raw_rand); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » raw_rand » raw_rand","id":"209","title":"raw_rand"},"21":{"body":"Examples: ckbtc fetch_ic internet_identity","breadcrumbs":"Authentication » Authentication","id":"21","title":"Authentication"},"210":{"body":"This section is a work in progress. Examples: threshold_ecdsa import { blob, Canister, ic, Record, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const Signature = Record({ signature: blob\n}); export default Canister({ sign: update([blob], Signature, async (messageHash) => { if (messageHash.length !== 32) { ic.trap('messageHash must be 32 bytes'); } const caller = ic.caller().toUint8Array(); const signatureResult = await ic.call( managementCanister.sign_with_ecdsa, { args: [ { message_hash: messageHash, derivation_path: [caller], key_id: { curve: { secp256k1: null }, name: 'dfx_test_key' } } ], cycles: 10_000_000_000n } ); return { signature: signatureResult.signature }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » sign_with_ecdsa » sign_with_ecdsa","id":"210","title":"sign_with_ecdsa"},"211":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeStartCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.start_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » start_canister » start_canister","id":"211","title":"start_canister"},"212":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeStopCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.stop_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » stop_canister » stop_canister","id":"212","title":"stop_canister"},"213":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeUninstallCode: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.uninstall_code, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » uninstall_code » uninstall_code","id":"213","title":"uninstall_code"},"214":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, None, Principal, Some, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeUpdateSettings: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.update_settings, { args: [ { canister_id: canisterId, settings: { controllers: None, compute_allocation: Some(1n), memory_allocation: Some(3_000_000n), freezing_threshold: Some(2_000_000n) } } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » update_settings » update_settings","id":"214","title":"update_settings"},"215":{"body":"Azle plugins allow developers to wrap Rust code in TypeScript/JavaScript APIs that can then be exposed to Azle canisters, providing a clean and simple developer experience with the underlying Rust code. Plugins are in a very early alpha state. You can create and use them now, but be aware that the API will be changing significantly in the near future. You can use the following example plugins as you create your own plugins:","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » Plugins","id":"215","title":"Plugins"},"216":{"body":"If you just want to create a plugin in the same repo as your project, see the plugins example .","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » Local plugin","id":"216","title":"Local plugin"},"217":{"body":"If you want to create a plugin that can be published and/or used with npm, see the ic-sqlite-plugin example .","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » npm plugin","id":"217","title":"npm plugin"},"218":{"body":"stable structures stable bytes stable grow stable read stable size stable write stable64 grow stable64 read stable64 size stable64 write","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » Stable Memory","id":"218","title":"Stable Memory"},"219":{"body":"This section is a work in progress. Examples: audio_recorder ethereum_json_rpc func_types http_counter inline_types persistent-storage pre_and_post_upgrade stable_structures import { bool, Canister, nat64, nat8, Opt, query, StableBTreeMap, text, Tuple, update, Vec\n} from 'azle'; const Key = nat8;\ntype Key = typeof Key.tsType; const Value = text;\ntype Value = typeof Value.tsType; let map = StableBTreeMap(0); export default Canister({ containsKey: query([Key], bool, (key) => { return map.containsKey(key); }), get: query([Key], Opt(Value), (key) => { return map.get(key); }), insert: update([Key, Value], Opt(Value), (key, value) => { return map.insert(key, value); }), isEmpty: query([], bool, () => { return map.isEmpty(); }), items: query([], Vec(Tuple(Key, Value)), () => { return map.items(); }), keys: query([], Vec(Key), () => { return Uint8Array.from(map.keys()); }), len: query([], nat64, () => { return map.len(); }), remove: update([Key], Opt(Value), (key) => { return map.remove(key); }), values: query([], Vec(Value), () => { return map.values(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable structures » stable structures","id":"219","title":"stable structures"},"22":{"body":"Authentication of ICP calls is done through signatures on messages. @dfinity/agent provides very nice abstractions for creating all of the required signatures in the correct formats when calling into canisters on ICP. Unfortunately this requires you to abandon traditional HTTP requests, as you must use the agent's APIs. Azle attempts to enable you to perform traditional HTTP requests with traditional libraries. Currently Azle focuses on fetch. When importing toJwt, azle/http_client will overwrite the global fetch function and will intercept fetch requests that have Authorization headers with an Identity as a value. Once intercepted, these requests are turned into @dfinity/agent requests that call the http_request and http_request_update canister methods directly, thus performing all of the required client-side authentication work. We are working to push for ICP to more natively understand JWTs for authentication, without the need to intercept fetch requests and convert them into agent requests.","breadcrumbs":"Authentication » Under-the-hood","id":"22","title":"Under-the-hood"},"220":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, query } from 'azle'; export default Canister({ stableBytes: query([], blob, () => { return ic.stableBytes(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable bytes » stable bytes","id":"220","title":"stable bytes"},"221":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat32, update } from 'azle'; export default Canister({ stableGrow: update([nat32], nat32, (newPages) => { return ic.stableGrow(newPages); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable grow » stable grow","id":"221","title":"stable grow"},"222":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat32, query } from 'azle'; export default Canister({ stableRead: query([nat32, nat32], blob, (offset, length) => { return ic.stableRead(offset, length); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable read » stable read","id":"222","title":"stable read"},"223":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat32, query } from 'azle'; export default Canister({ stableSize: query([], nat32, () => { return ic.stableSize(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable size » stable size","id":"223","title":"stable size"},"224":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat32, update, Void } from 'azle'; export default Canister({ stableWrite: update([nat32, blob], Void, (offset, buf) => { ic.stableWrite(offset, buf); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable write » stable write","id":"224","title":"stable write"},"225":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat64, update } from 'azle'; export default Canister({ stable64Grow: update([nat64], nat64, (newPages) => { return ic.stable64Grow(newPages); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 grow » stable64 grow","id":"225","title":"stable64 grow"},"226":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat64, query } from 'azle'; export default Canister({ stable64Read: query([nat64, nat64], blob, (offset, length) => { return ic.stable64Read(offset, length); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 read » stable64 read","id":"226","title":"stable64 read"},"227":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat64, query } from 'azle'; export default Canister({ stable64Size: query([], nat64, () => { return ic.stable64Size(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 size » stable64 size","id":"227","title":"stable64 size"},"228":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat64, update, Void } from 'azle'; export default Canister({ stable64Write: update([nat64, blob], Void, (offset, buf) => { ic.stable64Write(offset, buf); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 write » stable64 write","id":"228","title":"stable64 write"},"229":{"body":"clear timer set timer set timer interval","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » Timers","id":"229","title":"Timers"},"23":{"body":"Azle canisters use a custom fetch implementation to perform cross-canister calls and to perform HTTPS outcalls. Here's an example of performing a cross-canister call: import { serialize } from 'azle';\nimport express from 'express'; const app = express(); app.use(express.json()); app.post('/cross-canister-call', async (req, res) => { const to: string = req.body.to; const amount: number = req.body.amount; const response = await fetch(`icp://dfdal-2uaaa-aaaaa-qaama-cai/transfer`, { body: serialize({ candidPath: '/token.did', args: [to, amount] }) }); const responseJson = await response.json(); res.json(responseJson);\n}); app.listen(); Keep these important points in mind when performing a cross-canister call: Use the icp:// protocol in the URL The canister id of the canister that you are calling immediately follows icp:// in the URL The canister method that you are calling immediately follows the canister id in the URL The candidPath property of the body is the path to the Candid file defining the method signatures of the canister that you are calling. You must obtain this file and copy it into your canister. See the Assets chapter for info on copying files into your canister The args property of the body is an array of the arguments that will be passed to the canister method that you are calling Here's an example of performing an HTTPS outcall: import express from 'express'; const app = express(); app.use(express.json()); app.post('/https-outcall', async (_req, res) => { const response = await fetch(`https://httpbin.org/headers`, { headers: { 'X-Azle-Request-Key-0': 'X-Azle-Request-Value-0', 'X-Azle-Request-Key-1': 'X-Azle-Request-Value-1', 'X-Azle-Request-Key-2': 'X-Azle-Request-Value-2' } }); const responseJson = await response.json(); res.json(responseJson);\n}); app.listen();","breadcrumbs":"fetch » fetch TL;DR","id":"23","title":"fetch TL;DR"},"230":{"body":"This section is a work in progress. Examples: timers import { Canister, ic, TimerId, update, Void } from 'azle'; export default Canister({ clearTimer: update([TimerId], Void, (timerId) => { ic.clearTimer(timerId); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » clear timer » clear timer","id":"230","title":"clear timer"},"231":{"body":"This section is a work in progress. Examples: timers import { Canister, Duration, ic, TimerId, Tuple, update } from 'azle'; export default Canister({ setTimers: update([Duration], Tuple(TimerId, TimerId), (delay) => { const functionTimerId = ic.setTimer(delay, callback); const capturedValue = '🚩'; const closureTimerId = ic.setTimer(delay, () => { console.log(`closure called and captured value ${capturedValue}`); }); return [functionTimerId, closureTimerId]; })\n}); function callback() { console.log('callback called');\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » set timer » set timer","id":"231","title":"set timer"},"232":{"body":"This section is a work in progress. Examples: timers import { Canister, Duration, ic, TimerId, Tuple, update } from 'azle'; export default Canister({ setTimerIntervals: update( [Duration], Tuple(TimerId, TimerId), (interval) => { const functionTimerId = ic.setTimerInterval(interval, callback); const capturedValue = '🚩'; const closureTimerId = ic.setTimerInterval(interval, () => { console.log( `closure called and captured value ${capturedValue}` ); }); return [functionTimerId, closureTimerId]; } )\n}); function callback() { console.log('callback called');\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » set timer interval » set timer interval","id":"232","title":"set timer interval"},"233":{"body":"The IC currently limits Wasm binaries to a relatively small size of ~2MiB (with some caveats). You are likely to hit this limit as your Azle canisters grow in size. Azle provides some automatic optimizations to help you deal with this limit. It is hoped that the IC-imposed limit will be greatly increased sometime in 2023. To optimize the Wasm binary of an Azle canister, you can add the opt_level property to your dfx.json with the following options: \"0\", \"1\", \"2\", \"3\", or \"4\". \"0\" is the default option if opt_level is not specified. Each option is intended to reduce the size of your Wasm binary as the value increases. Each option is likely to take longer to compile than the previous option. It is recommended to start at \"1\" and increase only as necessary. Here's an example using opt_level \"1\": { \"canisters\": { \"hello_world\": { \"type\": \"custom\", \"main\": \"src/index.ts\", \"build\": \"npx azle hello_world\", \"candid\": \"src/index.did\", \"wasm\": \".azle/hello_world/hello_world.wasm.gz\", \"opt_level\": \"1\" } }\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Wasm Binary Optimization » Wasm Binary Optimization","id":"233","title":"Wasm Binary Optimization"},"24":{"body":"Azle has custom fetch implementations for clients and canisters. The client fetch is used for authentication, and you can learn more about it in the Authentication chapter . Canister fetch is used to perform cross-canister calls and HTTPS outcalls . There are three main types of calls made with canister fetch: Cross-canister calls to a candid canister Cross-canister calls to an HTTP canister HTTPS outcalls","breadcrumbs":"fetch » fetch","id":"24","title":"fetch"},"25":{"body":"Examples: async_await bitcoin canister ckbtc composite_queries cross_canister_calls cycles func_types heartbeat ic_evm_rpc icrc ledger_canister management_canister threshold_ecdsa whoami recursion rejections timers","breadcrumbs":"fetch » Cross-canister calls to a candid canister","id":"25","title":"Cross-canister calls to a candid canister"},"26":{"body":"We are working on better abstractions for these types of calls. For now you would just make a cross-canister call using icp:// to the http_request and http_request_update methods of the canister that you are calling.","breadcrumbs":"fetch » Cross-canister calls to an HTTP canister","id":"26","title":"Cross-canister calls to an HTTP canister"},"27":{"body":"Examples: ethereum_json_rpc http_outcall_fetch outgoing_http_requests","breadcrumbs":"fetch » HTTPS outcalls","id":"27","title":"HTTPS outcalls"},"28":{"body":"If your terminal logs ever say did not produce a response or response failed classification=Status code: 502 Bad Gateway, it most likely means that your canister has thrown an error and halted execution for that call. Use console.log and try/catch liberally to track down problems and reveal error information. If your error logs do not have useful messages, use try/catch with a console.log of the catch error argument to reveal the underlying error message.","breadcrumbs":"Debugging » Debugging TL;DR","id":"28","title":"Debugging TL;DR"},"29":{"body":"console.log and try/catch Canister did not produce a response No error message Final Compiled and Bundled JavaScript Azle currently has less-than-elegant error reporting. We hope to improve this significantly in the future. In the meantime, consider the following tips when trying to debug your application.","breadcrumbs":"Debugging » Debugging","id":"29","title":"Debugging"},"3":{"body":"npx azle new hello_world\ncd hello_world npm install dfx start --clean --host 127.0.0.1:8000 In a separate terminal in the hello_world directory: dfx deploy If you are building an HTTP-based canister and would like your canister to autoreload on file changes (DO NOT deploy to mainnet with autoreload enabled): AZLE_AUTORELOAD=true dfx deploy If you have problems deploying see Common deployment issues . View your frontend in a web browser at http://[canisterId].localhost:8000. To obtain your application's [canisterId]: dfx canister id backend Communicate with your canister using any HTTP client library, for example using curl: curl http://[canisterId].localhost:8000/db\ncurl -X POST -H \"Content-Type: application/json\" -d \"{ \\\"hello\\\": \\\"world\\\" }\" http://[canisterId].localhost:8000/db/update","breadcrumbs":"Get Started » Deployment","id":"3","title":"Deployment"},"30":{"body":"At the highest level, the most important tip is this: use console.log and try/catch liberally to track down problems and reveal error information.","breadcrumbs":"Debugging » console.log and try/catch","id":"30","title":"console.log and try/catch"},"31":{"body":"If you ever see an error that looks like this: Replica Error: reject code CanisterError, reject message IC0506: Canister bkyz2-fmaaa-aaaaa-qaaaq-cai did not produce a response, error code Some(\"IC0506\") or this: 2024-04-17T15:01:39.194377Z WARN icx_proxy_dev::proxy::agent: Replica Error\n2024-04-17T15:01:39.194565Z ERROR tower_http::trace::on_failure: response failed classification=Status code: 502 Bad Gateway latency=61 ms it most likely means that your canister has thrown an error and halted execution for that call. First check the replica's logs for any errors messages. If there are no useful error messages, use console.log and try/catch liberally to track down the source of the error and to reveal more information about the error. Don't be surprised if you need to console.log after each of your program's statements (including dependencies found in node_modules) to find out where the error is coming from. And don't be surprised if you need to use try/catch with a console.log of the catch error argument to reveal useful error messaging.","breadcrumbs":"Debugging » Canister did not produce a response","id":"31","title":"Canister did not produce a response"},"32":{"body":"You might find yourself in a situation where an error is reported without a useful message like this: \n\n\n\nError\n\n\n
    at <anonymous> (azle_main:110643)
   at handle (azle_main:73283)
   at next (azle_main:73452)
   at dispatch (azle_main:73432)
   at handle (azle_main:73283)
   at <anonymous> (azle_main:73655)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at expressInit (azle_main:73910)
   at handle (azle_main:73283)
   at trim_prefix (azle_main:73684)
   at <anonymous> (azle_main:73657)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at query3 (azle_main:73938)
   at handle (azle_main:73283)
   at trim_prefix (azle_main:73684)
   at <anonymous> (azle_main:73657)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at handle (azle_main:73587)
   at handle (azle_main:76233)
   at app2 (azle_main:78091)
   at call (native)
   at emitTwo (azle_main:9782)
   at emit2 (azle_main:10023)
   at httpHandler (azle_main:87618)
\n\n or like this: 2024-04-17 14:35:30.433501980 UTC: [Canister bkyz2-fmaaa-aaaaa-qaaaq-cai] \" at (azle_main:110643)\\n at handle (azle_main:73283)\\n at next (azle_main:73452)\\n at dispatch (azle_main:73432)\\n at handle (azle_main:73283)\\n at (azle_main:73655)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at expressInit (azle_main:73910)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at query3 (azle_main:73938)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at handle (azle_main:73587)\\n at handle (azle_main:76233)\\n at app2 (azle_main:78091)\\n at call (native)\\n at emitTwo (azle_main:9782)\\n at emit2 (azle_main:10023)\\n at httpHandler (azle_main:87618)\\n\"\n2024-04-17T14:35:31.983590Z ERROR tower_http::trace::on_failure: response failed classification=Status code: 500 Internal Server Error latency=101 ms\n2024-04-17 14:36:34.652587412 UTC: [Canister bkyz2-fmaaa-aaaaa-qaaaq-cai] \" at (azle_main:110643)\\n at handle (azle_main:73283)\\n at next (azle_main:73452)\\n at dispatch (azle_main:73432)\\n at handle (azle_main:73283)\\n at (azle_main:73655)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at expressInit (azle_main:73910)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at query3 (azle_main:73938)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at handle (azle_main:73587)\\n at handle (azle_main:76233)\\n at app2 (azle_main:78091)\\n at call (native)\\n at emitTwo (azle_main:9782)\\n at emit2 (azle_main:10023)\\n at httpHandler (azle_main:87618)\\n\" In these situations you might be able to use try/catch with a console.log of the catch error argument to reveal the underlying error message. For example, this code without a try/catch will log errors without the message This is the error text: import express from 'express'; const app = express(); app.get('/hello-world', (_req, res) => { throw new Error('This is the error text'); res.send('Hello World!');\n}); app.listen(); You can get the message to print in the replica terminal like this: import express from 'express'; const app = express(); app.get('/hello-world', (_req, res) => { try { throw new Error('This is the error text'); res.send('Hello World!'); } catch (error) { console.log(error); }\n}); app.listen();","breadcrumbs":"Debugging » No error message","id":"32","title":"No error message"},"33":{"body":"Azle compiles and bundles your TypeScript/JavaScript into a final JavaScript file to be included and executed inside of your canister. Inspecting this final JavaScript code may help you to debug your application. When you see something like (azle_main:110643) in your error stack traces, it is a reference to the final compiled and bundled JavaScript file that is actually deployed with and executed by the canister. The right-hand side of azle_main e.g. :110643 is the line number in that file. You can find the file at [project_name]/.azle/[canister_name]/canister/src/main.js. If you have the AZLE_AUTORELOAD environment variable set to true then you should instead look at [project_name]/.azle/[canister_name]/canister/src/main_reloaded.js","breadcrumbs":"Debugging » Final Compiled and Bundled JavaScript","id":"33","title":"Final Compiled and Bundled JavaScript"},"34":{"body":"There are a number of limitations that you are likely to run into while you develop with Azle on ICP. These are generally the most limiting: 5 billion instruction limit for query calls (HTTP GET requests) (~1 second of computation) 20 billion instruction limit for update calls (HTTP POST/etc requests) (~5 seconds of computation) 2 MiB request size limit 3 MiB response size limit 4 GiB heap limit High request latency relative to traditional web applications (think seconds not milliseconds) High costs relative to traditional web applications (think ~10x traditional web costs) Read more here for in-depth information on current ICP limitations.","breadcrumbs":"Limitations » Limitations TL;DR","id":"34","title":"Limitations TL;DR"},"35":{"body":"Autoreload Environment Variables Native Compilation","breadcrumbs":"Reference » Reference","id":"35","title":"Reference"},"36":{"body":"Deploying to mainnet with AZLE_AUTORELOAD=true will expose your canister to arbitrary untrusted JavaScript code execution You can turn on automatic reloading of your canister's final compiled JavaScript by using the AZLE_AUTORELOAD environment variable during deploy: AZLE_AUTORELOAD=true dfx deploy The autoreload feature watches all .ts and .js files recursively in the directory with your dfx.json file (the root directory of your project), excluding files found in .azle, .dfx, and node_modules. Autoreload only works properly if you do not change the methods of your canister. HTTP-based canisters will generally work well with autoreload as the query and update methods http_request and http_request_update will not need to change often. Candid-based canisters with explicit query and update methods may require manual deploys more often. Autoreload will not reload assets uploaded through the assets property of your dfx.json. It is extremely important to keep in mind that setting AZLE_AUTORELOAD=true will create an update method in your canister called reload_js that has no authorization built into it. If you deploy this to mainnet, anyone will be able to call this method and change the JavaScript of your canister.","breadcrumbs":"Reference » Autoreload » Autoreload","id":"36","title":"Autoreload"},"37":{"body":"AZLE_AUTORELOAD AZLE_DOCKERFILE_HASH AZLE_IDENTITY_STORAGE_MODE AZLE_INSTRUCTION_COUNT AZLE_PROPTEST_NUM_RUNS AZLE_PROPTEST_PATH AZLE_PROPTEST_QUIET AZLE_PROPTEST_SEED AZLE_PROPTEST_VERBOSE AZLE_TEST_FETCH AZLE_USE_DOCKERFILE AZLE_VERBOSE AZLE_WASMEDGE_QUICKJS_DIR","breadcrumbs":"Reference » Environment Variables » Environment Variables","id":"37","title":"Environment Variables"},"38":{"body":"Set this to true to enable autoreloading of your TypeScript/JavaScript code when making any changes to .ts or .js files in your project.","breadcrumbs":"Reference » Environment Variables » AZLE_AUTORELOAD","id":"38","title":"AZLE_AUTORELOAD"},"39":{"body":"Set this to the hash that you would like Azle to use when determining the container image, container, and wasmedge-quickjs directory names. The container image file and wasmedge-quickjs directory will be stored at ~/.config/azle. The hash is the final part of each of those names.","breadcrumbs":"Reference » Environment Variables » AZLE_DOCKERFILE_HASH","id":"39","title":"AZLE_DOCKERFILE_HASH"},"4":{"body":"There are many Azle examples in the examples directory . We recommend starting with the following: apollo_server audio_and_video autoreload ethers ethers_base express fetch_ic file_protocol fs hello_world http_outcall_fetch hybrid_canister ic_evm_rpc internet_identity large_files sqlite tfjs web_assembly","breadcrumbs":"Examples » Examples","id":"4","title":"Examples"},"40":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_IDENTITY_STORAGE_MODE","id":"40","title":"AZLE_IDENTITY_STORAGE_MODE"},"41":{"body":"Set this to true to see rough instruction counts just before JavaScript execution completes for calls.","breadcrumbs":"Reference » Environment Variables » AZLE_INSTRUCTION_COUNT","id":"41","title":"AZLE_INSTRUCTION_COUNT"},"42":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_NUM_RUNS","id":"42","title":"AZLE_PROPTEST_NUM_RUNS"},"43":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_PATH","id":"43","title":"AZLE_PROPTEST_PATH"},"44":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_QUIET","id":"44","title":"AZLE_PROPTEST_QUIET"},"45":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_SEED","id":"45","title":"AZLE_PROPTEST_SEED"},"46":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_VERBOSE","id":"46","title":"AZLE_PROPTEST_VERBOSE"},"47":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_TEST_FETCH","id":"47","title":"AZLE_TEST_FETCH"},"48":{"body":"Set this to true to force Azle to build the container image locally from the internal Dockerfile instead of attempting to download the container image.","breadcrumbs":"Reference » Environment Variables » AZLE_USE_DOCKERFILE","id":"48","title":"AZLE_USE_DOCKERFILE"},"49":{"body":"Set this to true to enable more logging output during dfx deploy.","breadcrumbs":"Reference » Environment Variables » AZLE_VERBOSE","id":"49","title":"AZLE_VERBOSE"},"5":{"body":"Starting the local replica Deploying to the local replica Interacting with your canister Deploying to mainnet Common deployment issues There are two main ICP environments that you will generally interact with: the local replica and mainnet . We recommend using the dfx command line tools to deploy to these environments. Please note that not all dfx commands are shown here. See the dfx CLI reference for more information.","breadcrumbs":"Deployment » Deployment","id":"5","title":"Deployment"},"50":{"body":"Set this to the path that you would like Azle to use to find the wasmedge-quickjs directory. The default is ~/.config/azle/wasmedge-quickjs_[current Dockerfile hash].","breadcrumbs":"Reference » Environment Variables » AZLE_WASMEDGE_QUICKJS_DIR","id":"50","title":"AZLE_WASMEDGE_QUICKJS_DIR"},"51":{"body":"Add the --native-compilation option to the command in the build property of your canister object in your dfx.json file. Make sure you install the correct dependencies for your project's version of Azle.","breadcrumbs":"Reference » Native Compilation » Native Compilation TL;DR","id":"51","title":"Native Compilation TL;DR"},"52":{"body":"Examples: key_value_store primitive_types stable_structures Azle uses a container image and Podman to simplify the development environment experience. Because of this, Azle only requires dfx, node/npm, and podman to be installed on the developer's machine. But this setup isn't always desirable. For example, Podman has trouble running inside of a Docker container. If you would like to skip the container and run Azle's build process directly on your machine, you can do so as follows: Add the --native-compilation option to the command in the build property of your canister object in your dfx.json file, like this: npx azle canister_name --native-compilation. Install prerequisites: sudo apt-get update\nsudo apt-get install clang\nsudo apt-get install build-essential Install Rust: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.73.0 --profile=minimal Install wasm32-wasi: rustup target add wasm32-wasi Install wasi2ic: cargo install --git https://github.com/wasm-forge/wasi2ic --rev 806c3558aad24224852a9582f018178402cb3679 Download and rename wasmedge-quickjs: mkdir -p ~/.config/azle\ncd ~/.config/azle\ngit clone https://github.com/demergent-labs/wasmedge-quickjs\ncd wasmedge-quickjs\ngit checkout c21ff69f442998e4cda4619166e23a9bc91418be\ncd -\nmv wasmedge-quickjs wasmedge-quickjs_$(npx azle@0.21.1 dockerfile-hash) Keep in mind that much of this setup is Azle version-specific. The installation steps above are accurate as of version 0.21.1 of Azle. If your Azle project uses a different version of Azle then you might need to make changes to these instructions to ensure correct compilation and execution. If you are struggling to get --native-compilation to work, it may be helpful for you to view the following files from the Azle repository: Dockerfile test.yml , search for --native-compilation","breadcrumbs":"Reference » Native Compilation » Native Compilation","id":"52","title":"Native Compilation"},"53":{"body":"This entire section of the documentation may be out of date Azle is currently going through a transition to give higher priority to utilizing HTTP, REST, JSON, and other familiar web technologies. This is in contrast to having previously focused on ICP-specific technologies like Candid and explicitly creating Canister objects with query and update methods. We are calling these two paradigms HTTP-based and Candid-based. Many concepts from the Candid-based documentation are still applicable in the HTTP-based paradigm. The HTTP-based paradigm simply focuses on changing the communication and serialization strategies to be more web-focused and less custom.","breadcrumbs":"Old Candid-based Documentation » Old Candid-based Documentation","id":"53","title":"Old Candid-based Documentation"},"54":{"body":"Azle is a TypeScript and JavaScript Canister Development Kit (CDK) for the Internet Computer (IC). In other words, it's a TypeScript/JavaScript runtime for building applications ( canisters ) on the IC. npm package GitHub repo Discord channel","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Azle (Beta)","id":"54","title":"Azle (Beta)"},"55":{"body":"Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Disclaimer","id":"55","title":"Disclaimer"},"56":{"body":"Azle is currently developed by Demergent Labs , a for-profit company with a grant from DFINITY . Demergent Labs' vision is to accelerate the adoption of Web3, the Internet Computer, and sustainable open source.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Demergent Labs","id":"56","title":"Demergent Labs"},"57":{"body":"Azle and the IC provide unique benefits and drawbacks, and both are not currently suitable for all application use-cases. The following information will help you to determine when Azle and the IC might be beneficial for your use-case.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Benefits and drawbacks","id":"57","title":"Benefits and drawbacks"},"58":{"body":"Azle intends to be a full TypeScript and JavaScript environment for the IC (a decentralized cloud platform), with support for all of the TypeScript and JavaScript language and as many relevant environment APIs as possible. These environment APIs will be similar to those available in the Node.js and web browser environments. One of the core benefits of Azle is that it allows web developers to bring their TypeScript or JavaScript skills to the IC. For example, Azle allows the use of various npm packages and VS Code intellisense. As for the IC, we believe its main benefits can be broken down into the following categories: Ownership Security Developer Experience Most of these benefits stem from the decentralized nature of the IC, though the IC is best thought of as a progressively decentralizing cloud platform. As opposed to traditional cloud platforms, its goal is to be owned and controlled by many independent entities. Ownership Full-stack group ownership Autonomous ownership Permanent APIs Credible neutrality Reduced platform risk Full-stack group ownership The IC allows you to build applications that are controlled directly and only (with some caveats) by a group of people. This is in opposition to most cloud applications written today, which must be under the control of a very limited number of people and often a single legal entity that answers directly to a cloud provider, which itself is a single legal entity. In the blockchain world, group-owned applications are known as DAOs . As opposed to DAOs built on most blockchains, the IC allows full-stack applications to be controlled by groups. This means that the group fully controls the running instances of the frontend and the backend code. Autonomous ownership In addition to allowing applications to be owned by groups of people, the IC also allows applications to be owned by no one. This essentially creates autonomous applications or everlasting processes that execute indefinitely. The IC will essentially allow such an application to run indefinitely, unless it depletes its balance of cycles, or the NNS votes to shut it down, neither of which is inevitable. Permanent APIs Because most web APIs are owned and operated by individual entities, their fate is tied to that of their owners. If their owners go out of business, then those APIs may cease to exist. If their owners decide that they do not like or agree with certain users, they may restrict their access. In the end, they may decide to shut down or restrict access for arbitrary reasons. Because the IC allows for group and autonomous ownership of cloud software, the IC is able to produce potentially permanent web APIs. A decentralized group of independent entities will find it difficult to censor API consumers or shut down an API. An autonomous API would take those difficulties to the extreme, as it would continue operating as long as consumers were willing to pay for it. Credible neutrality Group and autonomous ownership makes it possible to build neutral cloud software on the IC. This type of software would allow independent parties to coordinate with reduced trust in each other or a single third-party coordinator. This removes the risk of the third-party coordinator acting in its own self-interest against the interests of the coordinating participants. The coordinating participants would also find it difficult to implement changes that would benefit themselves to the detriment of other participants. Examples could include mobile app stores, ecommerce marketplaces, and podcast directories. Reduced platform risk Because the IC is not owned or controlled by any one entity or individual, the risk of being deplatformed is reduced. This is in opposition to most cloud platforms, where the cloud provider itself generally has the power to arbitrarily remove users from its platform. While deplatforming can still occur on the IC, the only endogenous means of forcefully taking down an application is through an NNS vote. Security Built-in replication Built-in authentication Built-in firewall/port management Built-in sandboxing Threshold protocols Verifiable source code Blockchain integration Built-in replication Replication has many benefits that stem from reducing various central points of failure. The IC is at its core a Byzantine Fault Tolerant replicated compute environment. Applications are deployed to subnets which are composed of nodes running replicas. Each replica is an independent replicated state machine that executes an application's state transitions (usually initiated with HTTP requests) and persists the results. This replication provides a high level of security out-of-the-box. It is also the foundation of a number of protocols that provide threshold cryptographic operations to IC applications. Built-in authentication IC client tooling makes it easy to sign and send messages to the IC, and Internet Identity provides a novel approach to self-custody of private keys. The IC automatically authenticates messages with the public key of the signer, and provides a compact representation of that public key, called a principal, to the application. The principal can be used for authorization purposes. This removes many authentication concerns from the developer. Built-in firewall/port management The concept of ports and various other low-level network infrastructure on the IC is abstracted away from the developer. This can greatly reduce application complexity thus minimizing the chance of introducing vulnerabilities through incorrect configurations. Canisters expose endpoints through various methods, usually query or update methods. Because authentication is also built-in, much of the remaining vulnerability surface area is minimized to implementing correct authorization rules in the canister method endpoints. Built-in sandboxing Canisters have at least two layers of sandboxing to protect colocated canisters from each other. All canisters are at their core Wasm modules and thus inherit the built-in Wasm sandbox. In case there is any bug in the underlying implementation of the Wasm execution environment (or a vulnerability in the imported host functionality), there is also an OS-level sandbox. Developers need not do anything to take advantage of these sandboxes. Threshold protocols The IC provides a number of threshold protocols that allow groups of independent nodes to perform cryptographic operations. These protocols remove central points of failure while providing familiar and useful cryptographic operations to developers. Included are ECDSA , BLS , VRF-like , and in the future threshold key derivation . Verifiable source code IC applications (canisters) are compiled into Wasm and deployed to the IC as Wasm modules. The IC hashes each canister's Wasm binary and stores it for public retrieval. The Wasm binary hash can be retrieved and compared with the hash of an independently compiled Wasm binary derived from available source code. If the hashes match, then one can know with a high degree of certainty that the application is executing the Wasm binary that was compiled from that source code. Blockchain integration When compared with web APIs built for the same purpose, the IC provides a high degree of security when integrating with various other blockchains. It has a direct client integration with Bitcoin, allowing applications to query its state with BFT guarantees. A similar integration is coming for Ethereum. In addition to these blockchain client integrations, a threshold ECDSA protocol (tECDSA) allows the IC to create keys and sign transactions on various ECDSA chains . These chains include Bitcoin and Ethereum, and in the future the protocol may be extended to allow interaction with various EdDSA chains . These direct integrations combined with tECDSA provide a much more secure way to provide blockchain functionality to end users than creating and storing their private keys on traditional cloud infrastructure. Developer experience Built-in devops Orthogonal persistence Built-in devops The IC provides many devops benefits automatically. Though currently limited in its scalability, the protocol attempts to remove the need for developers to concern themselves with concepts such as autoscaling, load balancing, uptime, sandboxing, and firewalls/port management. Correctly constructed canisters have a simple deploy process and automatically inherit these devops capabilities up unto the current scaling limits of the IC. DFINITY engineers are constantly working to remove scalability bottlenecks. Orthogonal persistence The IC automatically persists its heap. This creates an extremely convenient way for developers to store application state, by simply writing into global variables in their programming language of choice. This is a great way to get started. If a canister upgrades its code, swapping out its Wasm binary, then the heap must be cleared. To overcome this limitation, there is a special area of memory called stable memory that persists across these canister upgrades. Special stable data structures provide a familiar API that allows writing into stable memory directly. All of this together provides the foundation for a very simple persistence experience for the developer. The persistence tools now available and coming to the IC may be simpler than their equivalents on traditional cloud infrastructure.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Benefits","id":"58","title":"Benefits"},"59":{"body":"It's important to note that both Azle and the IC are early-stage projects. The IC officially launched in May of 2021, and Azle reached beta in April of 2022. Azle Some of Azle's main drawbacks can be summarized as follows: Beta Security risks Missing APIs Beta Azle reached beta in April of 2022. It's an immature project that may have unforeseen bugs and other issues. We're working constantly to improve it. We hope to get to a production-ready 1.0 in 2024. The following are the major blockers to 1.0: Extensive automated property test coverage Multiple independent security reviews/audits Broad npm package support Security risks As discussed earlier, these are some things to keep in mind: Azle does not yet have extensive automated property tests Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to the IC Missing APIs Azle is not Node.js nor is it V8 running in a web browser. It is using a JavaScript interpreter running in a very new and very different environment. APIs from the Node.js and web browser ecosystems may not be present in Azle. Our goal is to support as many of these APIs as possible over time. IC Some of the IC's main drawbacks can be summarized as follows: Early High latencies Limited and expensive compute resources Limited scalability Lack of privacy NNS risk Early The IC launched officially in May of 2021. As a relatively new project with an extremely ambitious vision, you can expect a small community, immature tooling, and an unproven track record. Much has been delivered, but many promises are yet to be fulfilled. High latencies Any requests that change state on the IC must go through consensus, thus you can expect latencies of a few seconds for these types of requests. When canisters need to communicate with each other across subnets or under heavy load, these latencies can be even longer. Under these circumstances, in the worst case latencies will build up linearly. For example, if canister A calls canister B calls canister C, and these canisters are all on different subnets or under heavy load, then you might need to multiply the latency by the total number of calls. Limited and expensive compute resources CPU usage, data storage, and network usage may be more expensive than the equivalent usage on traditional cloud platforms. Combining these costs with the high latencies explained above, it becomes readily apparent that the IC is currently not built for high-performance computing. Limited scalability The IC might not be able to scale to the needs of your application. It is constantly seeking to improve scalability bottlenecks, but it will probably not be able to onboard millions of users to your traditional web application. Lack of privacy You should assume that all of your application data (unless it is end-to-end encrypted) is accessible to multiple third-parties with no direct relationship and limited commitment to you. Currently all canister state sits unencrypted on node operator's machines. Application-layer access controls for data are possible, but motivated node operators will have an easy time getting access to your data. NNS risk The NNS has the ability to uninstall any canister and can generally change anything about the IC protocol. The NNS uses a simple liquid democracy based on coin/token voting and follower relationships. At the time of this writing most of the voting power on the NNS follows DFINITY for protocol changes, effectively giving DFINITY write control to the protocol while those follower relationships remain in place. The NNS must mature and decentralize to provide practical and realistic protections to canisters and their users.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Drawbacks","id":"59","title":"Drawbacks"},"6":{"body":"We recommend running your local replica in its own terminal and on a port of your choosing: dfx start --host 127.0.0.1:8000 Alternatively you can start the local replica as a background process: dfx start --background --host 127.0.0.1:8000 If you want to stop a local replica running in the background: dfx stop If you ever see this kind of error after dfx stop: Error: Failed to kill all processes. Remaining: 627221 626923 627260 Then try this: sudo kill -9 627221\nsudo kill -9 626923\nsudo kill -9 627260 If your replica starts behaving strangely, we recommend starting the replica clean, which will clean the dfx state of your project: dfx start --clean --host 127.0.0.1:8000","breadcrumbs":"Deployment » Starting the local replica","id":"6","title":"Starting the local replica"},"60":{"body":"The Internet Computer (IC) is a decentralized cloud platform. Actually, it is better thought of as a progressively decentralizing cloud platform. Its full vision is yet to be fulfilled. It aims to be owned and operated by many independent entities in many geographies and legal jurisdictions throughout the world. This is in opposition to most traditional cloud platforms today, which are generally owned and operated by one overarching legal entity. The IC is composed of computer hardware nodes running the IC protocol software. Each running IC protocol software process is known as a replica. Nodes are assigned into groups known as subnets. Each subnet attempts to maximize its decentralization of nodes according to factors such as data center location and node operator independence. The subnets vary in size. Generally speaking the larger the size of the subnet the more secure it will be. Subnets currently range in size from 13 to 40 nodes, with most subnets having 13 nodes. IC applications, known as canisters, are deployed to specific subnets. They are then accessible through Internet Protocol requests such as HTTP. Each subnet replicates all canisters across all of its replicas. A consensus protocol is run by the replicas to ensure Byzantine Fault Tolerance . View the IC Dashboard to explore all data centers, subnets, node operators, and many other aspects of the IC.","breadcrumbs":"Old Candid-based Documentation » Internet Computer Overview » Internet Computer Overview","id":"60","title":"Internet Computer Overview"},"61":{"body":"Canisters are Internet Computer (IC) applications. They are the encapsulation of your code and state, and are essentially Wasm modules. State can be stored on the 4 GiB heap or in a larger 96 GiB location called stable memory. You can store state on the heap using your language's native global variables. You can store state in stable memory using low-level APIs or special stable data structures that behave similarly to native language data structures. State changes must go through a process called consensus. The consensus process ensures that state changes are Byzantine Fault Tolerant . This process takes a few seconds to complete. Operations on canister state are exposed to users through canister methods. These methods can be invoked through HTTP requests. Query methods allow state to be read and are low-latency. Update methods allow state to be changed and are higher-latency. Update methods take a few seconds to complete because of the consensus process.","breadcrumbs":"Old Candid-based Documentation » Canisters Overview » Canisters Overview","id":"61","title":"Canisters Overview"},"62":{"body":"Windows is only supported through a Linux virtual environment of some kind, such as WSL On Ubuntu/WSL: sudo apt-get install podman On Mac: brew install podman It's recommended to use nvm and Node.js 20: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash Restart your terminal and then run: nvm install 20 Check that the installation went smoothly by looking for clean output from the following command: node --version Install the dfx command line tools for managing ICP applications: DFX_VERSION=0.16.1 sh -ci \"$(curl -fsSL https://sdk.dfinity.org/install.sh)\" Check that the installation went smoothly by looking for clean output from the following command: dfx --version If after trying to run dfx --version you encounter an error such as dfx: command not found, you might need to add $HOME/bin to your path. Here's an example of doing this in your .bashrc: echo 'export PATH=\"$PATH:$HOME/bin\"' >> \"$HOME/.bashrc\"","breadcrumbs":"Old Candid-based Documentation » Installation » Installation","id":"62","title":"Installation"},"63":{"body":"Quick start Methodical start The project directory and file structure index.ts tsconfig.json dfx.json Local deployment Common deployment issues Interacting with your canister from the command line Interacting with your canister from the web UI Let's build your first application (canister) with Azle! Before embarking please ensure you've followed all of the installation instructions , especially noting the build dependencies . We'll build a simple Hello World canister that shows the basics of importing Azle, exposing a query method, exposing an update method, and storing some state in a global variable. We'll then interact with it from the command line and from our web browser.","breadcrumbs":"Old Candid-based Documentation » Hello World » Hello World","id":"63","title":"Hello World"},"64":{"body":"We are going to use the Azle new command which creates a simple example project. First use the new command to create a new project called azle_hello_world: npx azle new azle_hello_world Now let's go inside of our project: cd azle_hello_world We should install Azle and all of its dependencies: npm install Start up your local replica: dfx start In another terminal, deploy your canister: dfx deploy azle_hello_world Call the setMessage method: dfx canister call azle_hello_world setMessage '(\"Hello world!\")' Call the getMessage method: dfx canister call azle_hello_world getMessage If you run into an error during deployment, see the common deployment issues section . See the official azle_hello_world example for more information.","breadcrumbs":"Old Candid-based Documentation » Hello World » Quick Start","id":"64","title":"Quick Start"},"65":{"body":"","breadcrumbs":"Old Candid-based Documentation » Hello World » Methodical start","id":"65","title":"Methodical start"},"66":{"body":"Assuming you're starting completely from scratch, run these commands to setup your project's directory and file structure: mkdir azle_hello_world\ncd azle_hello_world mkdir src touch src/index.ts\ntouch tsconfig.json\ntouch dfx.json Now install Azle, which will create your package.json and package-lock.json files: npm install azle Open up azle_hello_world in your text editor (we recommend VS Code ).","breadcrumbs":"Old Candid-based Documentation » Hello World » The project directory and file structure","id":"66","title":"The project directory and file structure"},"67":{"body":"Here's the main code of the project, which you should put in the azle_hello_world/src/index.ts file of your canister: import { Canister, query, text, update, Void } from 'azle'; // This is a global variable that is stored on the heap\nlet message = ''; export default Canister({ // Query calls complete quickly because they do not go through consensus getMessage: query([], text, () => { return message; }), // Update calls take a few seconds to complete // This is because they persist state changes and go through consensus setMessage: update([text], Void, (newMessage) => { message = newMessage; // This change will be persisted })\n}); Let's discuss each section of the code. import { Canister, query, text, update, Void } from 'azle'; The code starts off by importing Canister, query, text, update and Void from azle. The azle module provides most of the Internet Computer (IC) APIs for your canister. // This is a global variable that is stored on the heap\nlet message = ''; We have created a global variable to store the state of our application. This variable is in scope to all of the functions defined in this module. We have set it equal to an empty string. export default Canister({ ...\n}); The Canister function allows us to export our canister's definition to the Azle IC environment. // Query calls complete quickly because they do not go through consensus\ngetMessage: query([], text, () => { return message;\n}), We are exposing a canister query method here. This method simply returns our global message variable. We use a CandidType object called text to instruct Azle to encode the return value as a Candid text value. When query methods are called they execute quickly because they do not have to go through consensus. // Update calls take a few seconds to complete\n// This is because they persist state changes and go through consensus\nsetMessage: update([text], Void, (newMessage) => { message = newMessage; // This change will be persisted\n}); We are exposing an update method here. This method accepts a string from the caller and will store it in our global message variable. We use a CandidType object called text to instruct Azle to decode the newMessage parameter from a Candid text value to a JavaScript string value. Azle will infer the TypeScript type for newMessage. We use a CandidType object called Void to instruct Azle to encode the return value as the absence of a Candid value. When update methods are called they take a few seconds to complete. This is because they persist changes and go through consensus. A majority of nodes in a subnet must agree on all state changes introduced in calls to update methods. That's it! We've created a very simple getter/setter Hello World application. But no Hello World project is complete without actually yelling Hello world! To do that, we'll need to setup the rest of our project.","breadcrumbs":"Old Candid-based Documentation » Hello World » index.ts","id":"67","title":"index.ts"},"68":{"body":"Create the following in azle_hello_world/tsconfig.json: { \"compilerOptions\": { \"strict\": true, \"target\": \"ES2020\", \"moduleResolution\": \"node\", \"allowJs\": true, \"outDir\": \"HACK_BECAUSE_OF_ALLOW_JS\" }\n}","breadcrumbs":"Old Candid-based Documentation » Hello World » tsconfig.json","id":"68","title":"tsconfig.json"},"69":{"body":"Create the following in azle_hello_world/dfx.json: { \"canisters\": { \"azle_hello_world\": { \"type\": \"custom\", \"main\": \"src/index.ts\", \"candid\": \"src/index.did\", \"build\": \"npx azle azle_hello_world\", \"wasm\": \".azle/azle_hello_world/azle_hello_world.wasm\", \"gzip\": true } }\n}","breadcrumbs":"Old Candid-based Documentation » Hello World » dfx.json","id":"69","title":"dfx.json"},"7":{"body":"To deploy all canisters defined in your dfx.json: dfx deploy If you are building an HTTP-based canister and would like your canister to autoreload on file changes (DO NOT deploy to mainnet with autoreload enabled): AZLE_AUTORELOAD=true dfx deploy To deploy an individual canister: dfx deploy [canisterName]","breadcrumbs":"Deployment » Deploying to the local replica","id":"7","title":"Deploying to the local replica"},"70":{"body":"Let's deploy to our local replica. First startup the replica: dfx start --background Then deploy the canister: dfx deploy","breadcrumbs":"Old Candid-based Documentation » Hello World » Local deployment","id":"70","title":"Local deployment"},"71":{"body":"If you run into an error during deployment, see the common deployment issues section .","breadcrumbs":"Old Candid-based Documentation » Hello World » Common deployment issues","id":"71","title":"Common deployment issues"},"72":{"body":"Once we've deployed we can ask for our message: dfx canister call azle_hello_world getMessage We should see (\"\") representing an empty message. Now let's yell Hello World!: dfx canister call azle_hello_world setMessage '(\"Hello World!\")' Retrieve the message: dfx canister call azle_hello_world getMessage We should see (\"Hello World!\").","breadcrumbs":"Old Candid-based Documentation » Hello World » Interacting with your canister from the command line","id":"72","title":"Interacting with your canister from the command line"},"73":{"body":"After deploying your canister, you should see output similar to the following in your terminal: Deployed canisters.\nURLs: Backend canister via Candid interface: azle_hello_world: http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai Open up http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai or the equivalent URL from your terminal to access the web UI and interact with your canister.","breadcrumbs":"Old Candid-based Documentation » Hello World » Interacting with your canister from the web UI","id":"73","title":"Interacting with your canister from the web UI"},"74":{"body":"Starting the local replica Deploying to the local replica Interacting with your canister Deploying to mainnet Common deployment issues There are two main Internet Computer (IC) environments that you will generally interact with: the local replica and mainnet. When developing on your local machine, our recommended flow is to start up a local replica in your project's root directoy and then deploy to it for local testing.","breadcrumbs":"Old Candid-based Documentation » Deployment » Deployment","id":"74","title":"Deployment"},"75":{"body":"Open a terminal and navigate to your project's root directory: dfx start Alternatively you can start the local replica as a background process: dfx start --background If you want to stop a local replica running in the background: dfx stop If you ever see this error after dfx stop: Error: Failed to kill all processes. Remaining: 627221 626923 627260 Then try this: sudo kill -9 627221\nsudo kill -9 626923\nsudo kill -9 627260 If your replica starts behaving strangely, we recommend starting the replica clean, which will clean the dfx state of your project: dfx start --clean","breadcrumbs":"Old Candid-based Documentation » Deployment » Starting the local replica","id":"75","title":"Starting the local replica"},"76":{"body":"To deploy all canisters defined in your dfx.json: dfx deploy To deploy an individual canister: dfx deploy canister_name","breadcrumbs":"Old Candid-based Documentation » Deployment » Deploying to the local replica","id":"76","title":"Deploying to the local replica"},"77":{"body":"As a developer you can generally interact with your canister in three ways: dfx command line dfx web UI @dfinity/agent","breadcrumbs":"Old Candid-based Documentation » Deployment » Interacting with your canister","id":"77","title":"Interacting with your canister"},"78":{"body":"You can see a more complete reference here . The commands you are likely to use most frequently are: # assume a canister named my_canister # builds and deploys all canisters specified in dfx.json\ndfx deploy # builds all canisters specified in dfx.json\ndfx build # builds and deploys my_canister\ndfx deploy my_canister # builds my_canister\ndfx build my_canister # removes the Wasm binary and state of my_canister\ndfx uninstall-code my_canister # calls the methodName method on my_canister with a string argument\ndfx canister call my_canister methodName '(\"This is a Candid string argument\")'","breadcrumbs":"Old Candid-based Documentation » Deployment » dfx command line","id":"78","title":"dfx command line"},"79":{"body":"After deploying your canister, you should see output similar to the following in your terminal: Deployed canisters.\nURLs: Backend canister via Candid interface: my_canister: http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai Open up http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai to access the web UI.","breadcrumbs":"Old Candid-based Documentation » Deployment » dfx web UI","id":"79","title":"dfx web UI"},"8":{"body":"You will generally interact with your canister through an HTTP client such as curl, fetch, or a web browser. The URL of your canister locally will look like this: http://[canisterId].localhost:[replicaPort]. Azle will print your canister's URL in the terminal after a successful deploy. # You can obtain the canisterId like this\ndfx canister id [canisterName] # You can obtain the replicaPort like this\ndfx info webserver-port # An example of performing a GET request to a canister\ncurl http://a3shf-5eaaa-aaaaa-qaafa-cai.localhost:8000 # An example of performing a POST request to a canister\ncurl -X POST -H \"Content-Type: application/json\" -d \"{ \\\"hello\\\": \\\"world\\\" }\" http://a3shf-5eaaa-aaaaa-qaafa-cai.localhost:8000","breadcrumbs":"Deployment » Interacting with your canister","id":"8","title":"Interacting with your canister"},"80":{"body":"@dfinity/agent is the TypeScript/JavaScript client library for interacting with canisters on the IC. If you are building a client web application, this is probably what you'll want to use. There are other agents for other languages as well: Java Python Rust","breadcrumbs":"Old Candid-based Documentation » Deployment » @dfinity/agent","id":"80","title":"@dfinity/agent"},"81":{"body":"Assuming you are setup with cycles , then you are ready to deploy to mainnet. To deploy all canisters defined in your dfx.json: dfx deploy --network ic To deploy an individual canister: dfx deploy --network ic canister_name","breadcrumbs":"Old Candid-based Documentation » Deployment » Deploying to mainnet","id":"81","title":"Deploying to mainnet"},"82":{"body":"If you run into an error during deployment, try the following: Ensure that you have followed the instructions correctly in the installation chapter , especially noting the build dependencies Start the whole deployment process from scratch by running the following commands: dfx stop or simply terminate dfx in your terminal, dfx start --clean, npx azle clean, dfx deploy Look for more error output by adding the --verbose flag to the build command in your dfx.json file like so: \"build\": \"npx azle build hello_world --verbose Look for errors in each of the files in ~/.config/azle/rust/[rust_version]/logs Reach out in the Discord channel","breadcrumbs":"Old Candid-based Documentation » Deployment » Common deployment issues","id":"82","title":"Common deployment issues"},"83":{"body":"Azle has many example projects showing nearly all Azle APIs. They can be found in the examples directory of the Azle GitHub repository . We'll highlight a few of them and some others here: Query Update Primitive Types Stable Structures Cycles Cross Canister Calls Management Canister Outgoing HTTP Requests Incoming HTTP Requests Pre and Post Upgrade Timers Multisig Vault ICRC-1 IC Chainlink Data Feeds Bitcoin ckBTC","breadcrumbs":"Old Candid-based Documentation » Examples » Examples","id":"83","title":"Examples"},"84":{"body":"","breadcrumbs":"Old Candid-based Documentation » Query Methods » Query Methods","id":"84","title":"Query Methods"},"85":{"body":"Created with the query function Read-only Executed on a single node No consensus Latency on the order of ~100 milliseconds 5 billion Wasm instruction limit 4 GiB heap limit ~32k queries per second per canister The most basic way to expose your canister's functionality publicly is through a query method. Here's an example of a simple query method named getString: import { Canister, query, text } from 'azle'; export default Canister({ getString: query([], text, () => { return 'This is a query method!'; })\n}); Query methods are defined inside of a call to Canister using the query function. The first parameter to query is an array of CandidType objects that will be used to decode the Candid bytes of the arguments sent from the client when calling your query method. The second parameter to query is a CandidType object used to encode the return value of your function to Candid bytes to then be sent back to the client. The third parameter to query is the function that receives the decoded arguments, performs some computation, and then returns a value to be encoded. The TypeScript signature of this function (parameter and return types) will be inferred from the CandidType arguments in the first and second parameters to query. getString can be called from the outside world through the IC's HTTP API. You'll usually invoke this API from the dfx command line, dfx web UI, or an agent . From the dfx command line you can call it like this: dfx canister call my_canister getString Query methods are read-only. They do not persist any state changes. Take a look at the following example: import { Canister, query, text, Void } from 'azle'; let db: { [key: string]: string;\n} = {}; export default Canister({ set: query([text, text], Void, (key, value) => { db[key] = value; })\n}); Calling set will perform the operation of setting the key property on the db object to value, but after the call finishes that change will be discarded. This is because query methods are executed on a single node machine and do not go through consensus . This results in lower latencies, perhaps on the order of 100 milliseconds. There is a limit to how much computation can be done in a single call to a query method. The current query call limit is 5 billion Wasm instructions . Here's an example of a query method that runs the risk of reaching the limit: import { Canister, nat32, query, text } from 'azle'; export default Canister({ pyramid: query([nat32], text, (levels) => { return new Array(levels).fill(0).reduce((acc, _, index) => { const asterisks = new Array(index + 1).fill('*').join(''); return `${acc}${asterisks}\\n`; }, ''); })\n}); From the dfx command line you can call pyramid like this: dfx canister call my_canister pyramid '(1_000)' With an argument of 1_000, pyramid will fail with an error ...exceeded the instruction limit for single message execution. Keep in mind that each query method invocation has up to 4 GiB of heap available. In terms of query scalability, an individual canister likely has an upper bound of ~36k queries per second .","breadcrumbs":"Old Candid-based Documentation » Query Methods » TL;DR","id":"85","title":"TL;DR"},"86":{"body":"","breadcrumbs":"Old Candid-based Documentation » Update Methods » Update Methods","id":"86","title":"Update Methods"},"87":{"body":"Created with the update function Read-write Executed on many nodes Consensus Latency ~2-5 seconds 20 billion Wasm instruction limit 4 GiB heap limit 96 GiB stable memory limit ~900 updates per second per canister Update methods are similar to query methods, but state changes can be persisted. Here's an example of a simple update method: import { Canister, nat64, update } from 'azle'; let counter = 0n; export default Canister({ increment: update([], nat64, () => { return counter++; })\n}); Calling increment will return the current value of counter and then increase its value by 1. Because counter is a global variable, the change will be persisted to the heap, and subsequent query and update calls will have access to the new counter value. Because the Internet Computer (IC) persists changes with certain fault tolerance guarantees, update calls are executed on many nodes and go through consensus . This leads to latencies of ~2-5 seconds per update call. Due to the latency and other expenses involved with update methods, it is best to use them only when necessary. Look at the following example: import { Canister, query, text, update, Void } from 'azle'; let message = ''; export default Canister({ getMessage: query([], text, () => { return message; }), setMessage: update([text], Void, (newMessage) => { message = newMessage; })\n}); You'll notice that we use an update method, setMessage, only to perform the change to the global message variable. We use getMessage, a query method, to read the message. Keep in mind that the heap is limited to 4 GiB, and thus there is an upper bound to global variable storage capacity. You can imagine how a simple database like the following would eventually run out of memory with too many entries: import { Canister, None, Opt, query, Some, text, update, Void } from 'azle'; type Db = { [key: string]: string;\n}; let db: Db = {}; export default Canister({ get: query([text], Opt(text), (key) => { const value = db[key]; return value !== undefined ? Some(value) : None; }), set: update([text, text], Void, (key, value) => { db[key] = value; })\n}); If you need more than 4 GiB of storage, consider taking advantage of the 96 GiB of stable memory. Stable structures like StableBTreeMap give you a nice API for interacting with stable memory. These data structures will be covered in more detail later . Here's a simple example: import { Canister, Opt, query, StableBTreeMap, text, update, Void } from 'azle'; let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); })\n}); So far we have only seen how state changes can be persisted. State changes can also be discarded by implicit or explicit traps. A trap is an immediate stop to execution with the ability to provide a message to the execution environment. Traps can be useful for ensuring that multiple operations are either all completed or all disregarded, or in other words atomic. Keep in mind that these guarantees do not hold once cross-canister calls are introduced, but that's a more advanced topic covered later . Here's an example of how to trap and ensure atomic changes to your database: import { Canister, ic, Opt, query, Record, StableBTreeMap, text, update, Vec, Void\n} from 'azle'; const Entry = Record({ key: text, value: text\n}); let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); }), setMany: update([Vec(Entry)], Void, (entries) => { entries.forEach((entry) => { if (entry.key === 'trap') { ic.trap('explicit trap'); } db.insert(entry.key, entry.value); }); })\n}); In addition to ic.trap, an explicit JavaScript throw or any unhandled exception will also trap. There is a limit to how much computation can be done in a single call to an update method. The current update call limit is 20 billion Wasm instructions . If we modify our database example, we can introduce an update method that runs the risk of reaching the limit: import { Canister, nat64, Opt, query, StableBTreeMap, text, update, Void\n} from 'azle'; let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); }), setMany: update([nat64], Void, (numEntries) => { for (let i = 0; i < numEntries; i++) { db.insert(i.toString(), i.toString()); } })\n}); From the dfx command line you can call setMany like this: dfx canister call my_canister setMany '(10_000)' With an argument of 10_000, setMany will fail with an error ...exceeded the instruction limit for single message execution. In terms of update scalability, an individual canister likely has an upper bound of ~900 updates per second .","breadcrumbs":"Old Candid-based Documentation » Update Methods » TL;DR","id":"87","title":"TL;DR"},"88":{"body":"text blob nat nat8 nat16 nat32 nat64 int int8 int16 int32 int64 float32 float64 bool null vec opt record variant func service principal reserved empty Candid is an interface description language created by DFINITY . It can be used to define interfaces between services (canisters), allowing canisters and clients written in various languages to easily interact with each other. This interaction occurs through the serialization/encoding and deserialization/decoding of runtime values to and from Candid bytes. Azle performs automatic encoding and decoding of JavaScript values to and from Candid bytes through the use of various CandidType objects. For example, CandidType objects are used when defining the parameter and return types of your query and update methods. They are also used to define the keys and values of a StableBTreeMap. It's important to note that the CandidType objects decode Candid bytes into specific JavaScript runtime data structures that may differ in behavior from the description of the actual Candid type. For example, a float32 Candid type is a JavaScript Number , a nat64 is a JavaScript BigInt , and an int is also a JavaScript BigInt . Keep this in mind as it may result in unexpected behavior. Each CandidType object and its equivalent JavaScript runtime value is explained in more detail in The Azle Book Candid reference . A more canonical reference of all Candid types available on the Internet Computer (IC) can be found here . The following is a simple example showing how to import and use many of the CandidType objects available in Azle: import { blob, bool, Canister, float32, float64, Func, int, int16, int32, int64, int8, nat, nat16, nat32, nat64, nat8, None, Null, Opt, Principal, query, Record, Recursive, text, update, Variant, Vec\n} from 'azle'; const MyCanister = Canister({ query: query([], bool), update: update([], text)\n}); const Candid = Record({ text: text, blob: blob, nat: nat, nat64: nat64, nat32: nat32, nat16: nat16, nat8: nat8, int: int, int64: int64, int32: int32, int16: int16, int8: int8, float64: float64, float32: float32, bool: bool, null: Null, vec: Vec(text), opt: Opt(nat), record: Record({ firstName: text, lastName: text, age: nat8 }), variant: Variant({ Tag1: Null, Tag2: Null, Tag3: int }), func: Recursive(() => Func([], Candid, 'query')), canister: Canister({ query: query([], bool), update: update([], text) }), principal: Principal\n}); export default Canister({ candidTypes: query([], Candid, () => { return { text: 'text', blob: Uint8Array.from([]), nat: 340_282_366_920_938_463_463_374_607_431_768_211_455n, nat64: 18_446_744_073_709_551_615n, nat32: 4_294_967_295, nat16: 65_535, nat8: 255, int: 170_141_183_460_469_231_731_687_303_715_884_105_727n, int64: 9_223_372_036_854_775_807n, int32: 2_147_483_647, int16: 32_767, int8: 127, float64: Math.E, float32: Math.PI, bool: true, null: null, vec: ['has one element'], opt: None, record: { firstName: 'John', lastName: 'Doe', age: 35 }, variant: { Tag1: null }, func: [ Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'), 'candidTypes' ], canister: MyCanister(Principal.fromText('aaaaa-aa')), principal: Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai') }; })\n}); Calling candidTypes with dfx will return: ( record { func = func \"rrkah-fqaaa-aaaaa-aaaaq-cai\".candidTypes; text = \"text\"; nat16 = 65_535 : nat16; nat32 = 4_294_967_295 : nat32; nat64 = 18_446_744_073_709_551_615 : nat64; record = record { age = 35 : nat8; lastName = \"Doe\"; firstName = \"John\" }; int = 170_141_183_460_469_231_731_687_303_715_884_105_727 : int; nat = 340_282_366_920_938_463_463_374_607_431_768_211_455 : nat; opt = null; vec = vec { \"has one element\" }; variant = variant { Tag1 }; nat8 = 255 : nat8; canister = service \"aaaaa-aa\"; int16 = 32_767 : int16; int32 = 2_147_483_647 : int32; int64 = 9_223_372_036_854_775_807 : int64; null = null : null; blob = vec {}; bool = true; principal = principal \"ryjl3-tyaaa-aaaaa-aaaba-cai\"; int8 = 127 : int8; float32 = 3.1415927 : float32; float64 = 2.718281828459045 : float64; },\n)","breadcrumbs":"Old Candid-based Documentation » Candid » Candid","id":"88","title":"Candid"},"89":{"body":"","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Stable Structures","id":"89","title":"Stable Structures"},"9":{"body":"Assuming you are setup with a cycles wallet , then you are ready to deploy to mainnet. To deploy all canisters defined in your dfx.json: dfx deploy --network ic To deploy an individual canister: dfx deploy --network ic [canisterName] The URL of your canister on mainnet will look like this: https://[canisterId].raw.icp0.io.","breadcrumbs":"Deployment » Deploying to mainnet","id":"9","title":"Deploying to mainnet"},"90":{"body":"96 GiB of stable memory Persistent across upgrades Familiar API Must specify memory id No migrations per memory id Stable structures are data structures with familiar APIs that allow write and read access to stable memory. Stable memory is a separate memory location from the heap that currently allows up to 96 GiB of binary storage. Stable memory persists automatically across upgrades. Persistence on the Internet Computer (IC) is very important to understand. When a canister is upgraded (its code is changed after being initially deployed) its heap is wiped. This includes all global variables. On the other hand, anything stored in stable memory will be preserved. Writing and reading to and from stable memory can be done with a low-level API , but it is generally easier and preferable to use stable structures. Azle currently provides one stable structure called StableBTreeMap. It's similar to a JavaScript Map and has most of the common operations you'd expect such as reading, inserting, and removing values. Here's how to define a simple StableBTreeMap: import { nat8, StableBTreeMap, text } from 'azle'; let map = StableBTreeMap(0); This is a StableBTreeMap with a key of type nat8 and a value of type text. Unless you want a default type of any for your key and value, then you must explicitly type your StableBTreeMap with type arguments. StableBTreeMap works by encoding and decoding values under-the-hood, storing and retrieving these values in bytes in stable memory. When writing to and reading from a StableBTreeMap, by default the stableJson Serializable object is used to encode JS values into bytes and to decode JS values from bytes. stableJson uses JSON.stringify and JSON.parse with a custom replacer and reviver to handle many Candid and other values that you will most likely use in your canisters. You may use other Serializable objects besides stableJson, and you can even create your own. Simply pass in a Serializable object as the second and third parameters to your StableBTreeMap. The second parameter is the key Serializable object and the third parameter is the value Serializable object. For example, the following StableBTreeMap uses the nat8 and text CandidType objects from Azle as Serializable objects. These Serializable objects will encode and decode to and from Candid bytes: import { nat8, StableBTreeMap, text } from 'azle'; let map = StableBTreeMap(0, nat8, text); All CandidType objects imported from azle are Serializable objects. A Serializable object simply has a toBytes method that takes a JS value and returns a Uint8Array, and a fromBytes method that takes a Uint8Array and returns a JS value. Here's an example of how to create your own simple JSON Serializable: export interface Serializable { toBytes: (data: any) => Uint8Array; fromBytes: (bytes: Uint8Array) => any;\n} export function StableSimpleJson(): Serializable { return { toBytes(data: any) { const result = JSON.stringify(data); return Uint8Array.from(Buffer.from(result)); }, fromBytes(bytes: Uint8Array) { return JSON.parse(Buffer.from(bytes).toString()); } };\n} This StableBTreeMap also has a memory id of 0. Each StableBTreeMap instance must have a unique memory id between 0 and 254. Once a memory id is allocated, it cannot be used with a different StableBTreeMap. This means you can't create another StableBTreeMap using the same memory id, and you can't change the key or value types of an existing StableBTreeMap. This problem will be addressed to some extent . Here's an example showing all of the basic StableBTreeMap operations: import { bool, Canister, nat64, nat8, Opt, query, StableBTreeMap, text, Tuple, update, Vec\n} from 'azle'; const Key = nat8;\ntype Key = typeof Key.tsType; const Value = text;\ntype Value = typeof Value.tsType; let map = StableBTreeMap(0); export default Canister({ containsKey: query([Key], bool, (key) => { return map.containsKey(key); }), get: query([Key], Opt(Value), (key) => { return map.get(key); }), insert: update([Key, Value], Opt(Value), (key, value) => { return map.insert(key, value); }), isEmpty: query([], bool, () => { return map.isEmpty(); }), items: query([], Vec(Tuple(Key, Value)), () => { return map.items(); }), keys: query([], Vec(Key), () => { return Uint8Array.from(map.keys()); }), len: query([], nat64, () => { return map.len(); }), remove: update([Key], Opt(Value), (key) => { return map.remove(key); }), values: query([], Vec(Value), () => { return map.values(); })\n}); With these basic operations you can build more complex CRUD database applications: import { blob, Canister, ic, Err, nat64, Ok, Opt, Principal, query, Record, Result, StableBTreeMap, text, update, Variant, Vec\n} from 'azle'; const User = Record({ id: Principal, createdAt: nat64, recordingIds: Vec(Principal), username: text\n});\ntype User = typeof User.tsType; const Recording = Record({ id: Principal, audio: blob, createdAt: nat64, name: text, userId: Principal\n});\ntype Recording = typeof Recording.tsType; const AudioRecorderError = Variant({ RecordingDoesNotExist: Principal, UserDoesNotExist: Principal\n});\ntype AudioRecorderError = typeof AudioRecorderError.tsType; let users = StableBTreeMap(0);\nlet recordings = StableBTreeMap(1); export default Canister({ createUser: update([text], User, (username) => { const id = generateId(); const user: User = { id, createdAt: ic.time(), recordingIds: [], username }; users.insert(user.id, user); return user; }), readUsers: query([], Vec(User), () => { return users.values(); }), readUserById: query([Principal], Opt(User), (id) => { return users.get(id); }), deleteUser: update([Principal], Result(User, AudioRecorderError), (id) => { const userOpt = users.get(id); if ('None' in userOpt) { return Err({ UserDoesNotExist: id }); } const user = userOpt.Some; user.recordingIds.forEach((recordingId) => { recordings.remove(recordingId); }); users.remove(user.id); return Ok(user); }), createRecording: update( [blob, text, Principal], Result(Recording, AudioRecorderError), (audio, name, userId) => { const userOpt = users.get(userId); if ('None' in userOpt) { return Err({ UserDoesNotExist: userId }); } const user = userOpt.Some; const id = generateId(); const recording: Recording = { id, audio, createdAt: ic.time(), name, userId }; recordings.insert(recording.id, recording); const updatedUser: User = { ...user, recordingIds: [...user.recordingIds, recording.id] }; users.insert(updatedUser.id, updatedUser); return Ok(recording); } ), readRecordings: query([], Vec(Recording), () => { return recordings.values(); }), readRecordingById: query([Principal], Opt(Recording), (id) => { return recordings.get(id); }), deleteRecording: update( [Principal], Result(Recording, AudioRecorderError), (id) => { const recordingOpt = recordings.get(id); if ('None' in recordingOpt) { return Err({ RecordingDoesNotExist: id }); } const recording = recordingOpt.Some; const userOpt = users.get(recording.userId); if ('None' in userOpt) { return Err({ UserDoesNotExist: recording.userId }); } const user = userOpt.Some; const updatedUser: User = { ...user, recordingIds: user.recordingIds.filter( (recordingId) => recordingId.toText() !== recording.id.toText() ) }; users.insert(updatedUser.id, updatedUser); recordings.remove(id); return Ok(recording); } )\n}); function generateId(): Principal { const randomBytes = new Array(29) .fill(0) .map((_) => Math.floor(Math.random() * 256)); return Principal.fromUint8Array(Uint8Array.from(randomBytes));\n} The example above shows a very basic audio recording backend application. There are two types of entities that need to be stored, User and Recording. These are represented as Candid records. Each entity gets its own StableBTreeMap: import { blob, Canister, ic, Err, nat64, Ok, Opt, Principal, query, Record, Result, StableBTreeMap, text, update, Variant, Vec\n} from 'azle'; const User = Record({ id: Principal, createdAt: nat64, recordingIds: Vec(Principal), username: text\n});\ntype User = typeof User.tsType; const Recording = Record({ id: Principal, audio: blob, createdAt: nat64, name: text, userId: Principal\n});\ntype Recording = typeof Recording.tsType; const AudioRecorderError = Variant({ RecordingDoesNotExist: Principal, UserDoesNotExist: Principal\n});\ntype AudioRecorderError = typeof AudioRecorderError.tsType; let users = StableBTreeMap(0);\nlet recordings = StableBTreeMap(1); Notice that each StableBTreeMap has a unique memory id. You can begin to create basic database CRUD functionality by creating one StableBTreeMap per entity. It's up to you to create functionality for querying, filtering, and relations. StableBTreeMap is not a full-featured database solution, but a fundamental building block that may enable you to achieve more advanced database functionality. Demergent Labs plans to deeply explore database solutions on the IC in the future.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » TL;DR","id":"90","title":"TL;DR"},"91":{"body":"","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Caveats","id":"91","title":"Caveats"},"92":{"body":"It seems to be only some float64 values cannot be successfully stored and retrieved with a StableBTreeMap using stableJson because of this bug with JSON.parse: https://github.com/bellard/quickjs/issues/206","breadcrumbs":"Old Candid-based Documentation » Stable Structures » float64 values","id":"92","title":"float64 values"},"93":{"body":"Azle's Candid encoding/decoding implementation is currently not well optimized, and Candid may not be the most optimal encoding format overall, so you may experience heavy instruction usage when performing many StableBTreeMap operations in succession. A rough idea of the overhead from our preliminary testing is probably 1-2 million instructions for a full Candid encoding and decoding of values per StableBTreeMap operation. For these reasons we recommend using the stableJson Serializable object (the default) instead of CandidType Serializable objects.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » CandidType Performance","id":"93","title":"CandidType Performance"},"94":{"body":"Migrations must be performed manually by reading the values out of one StableBTreeMap and writing them into another. Once a StableBTreeMap is initialized to a specific memory id, that memory id cannot be changed unless the canister is completely wiped and initialized again.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Migrations","id":"94","title":"Migrations"},"95":{"body":"Canister values do not currently work with the default stableJson implementation. If you must persist Canisters, consider using the Canister CandidType object as your Serializable object in your StableBTreeMap, or create a custom replacer or reviver for stableJson that handles Canister.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Canister","id":"95","title":"Canister"},"96":{"body":"Examples: async_await bitcoin composite_queries cross_canister_calls cycles ethereum_json_rpc func_types heartbeat inline_types ledger_canister management_canister outgoing_http_requests threshold_ecdsa rejections timers tuple_types whoami Canisters are generally able to call the query or update methods of other canisters in any subnet. We refer to these types of calls as cross-canister calls. A cross-canister call begins with a definition of the canister to be called. Imagine a simple canister called token_canister: import { Canister, ic, nat64, Opt, Principal, StableBTreeMap, update\n} from 'azle'; let accounts = StableBTreeMap(0); export default Canister({ transfer: update([Principal, nat64], nat64, (to, amount) => { const from = ic.caller(); const fromBalance = getBalance(accounts.get(from)); const toBalance = getBalance(accounts.get(to)); accounts.insert(from, fromBalance - amount); accounts.insert(to, toBalance + amount); return amount; })\n}); function getBalance(accountOpt: Opt): nat64 { if ('None' in accountOpt) { return 0n; } else { return accountOpt.Some; }\n} Now that you have the canister definition, you can import and instantiate it in another canister: import { Canister, ic, nat64, Principal, update } from 'azle';\nimport TokenCanister from './token_canister'; const tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); If you don't have the actual definition of the token canister with the canister method implementations, you can always create your own canister definition without method implementations: import { Canister, ic, nat64, Principal, update } from 'azle'; const TokenCanister = Canister({ transfer: update([Principal, nat64], nat64)\n}); const tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); The IC guarantees that cross-canister calls will return. This means that, generally speaking, you will always receive a response from ic.call. If there are errors during the call, ic.call will throw. Wrapping your cross-canister call in a try...catch allows you to handle these errors. Let's add to our example code and explore adding some practical error-handling to stop people from stealing tokens. token_canister: import { Canister, ic, nat64, Opt, Principal, StableBTreeMap, update\n} from 'azle'; let accounts = StableBTreeMap(0); export default Canister({ transfer: update([Principal, nat64], nat64, (to, amount) => { const from = ic.caller(); const fromBalance = getBalance(accounts.get(from)); if (amount > fromBalance) { throw new Error(`${from} has an insufficient balance`); } const toBalance = getBalance(accounts.get(to)); accounts.insert(from, fromBalance - amount); accounts.insert(to, toBalance + amount); return amount; })\n}); function getBalance(accountOpt: Opt): nat64 { if ('None' in accountOpt) { return 0n; } else { return accountOpt.Some; }\n} payout_canister: import { Canister, ic, nat64, Principal, update } from 'azle';\nimport TokenCanister from './index'; const tokenCanister = TokenCanister( Principal.fromText('bkyz2-fmaaa-aaaaa-qaaaq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { try { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); } catch (error) { console.log(error); } return 0n; })\n}); Throwing will allow you to express error conditions and halt execution, but you may find embracing the Result variant as a better solution for error handling because of its composability and predictability. So far we have only shown a cross-canister call from an update method. Update methods can call other update methods or query methods (but not composite query methods as discussed below). If an update method calls a query method, that query method will be called in replicated mode. Replicated mode engages the consensus process, but for queries the state will still be discarded. Cross-canister calls can also be initiated from query methods. These are known as composite queries, and in Azle they are simply async query methods. Composite queries can call other composite query methods and regular query methods. Composite queries cannot call update methods. Here's an example of a composite query method: import { bool, Canister, ic, Principal, query } from 'azle'; const SomeCanister = Canister({ queryForBoolean: query([], bool)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ querySomeCanister: query([], bool, async () => { return await ic.call(someCanister.queryForBoolean); })\n}); You can expect cross-canister calls within the same subnet to take up to a few seconds to complete, and cross-canister calls across subnets take about double that time . Composite queries should be much faster, similar to query calls in latency. If you don't need to wait for your cross-canister call to return, you can use notify: import { Canister, ic, Principal, update, Void } from 'azle'; const SomeCanister = Canister({ receiveNotification: update([], Void)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ sendNotification: update([], Void, () => { return ic.notify(someCanister.receiveNotification); })\n}); If you need to send cycles with your cross-canister call, you can add cycles to the config object of ic.notify: import { Canister, ic, Principal, update, Void } from 'azle'; const SomeCanister = Canister({ receiveNotification: update([], Void)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ sendNotification: update([], Void, () => { return ic.notify(someCanister.receiveNotification, { cycles: 1_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Cross-canister » Cross-canister","id":"96","title":"Cross-canister"},"97":{"body":"This chapter is a work in progress.","breadcrumbs":"Old Candid-based Documentation » HTTP » HTTP","id":"97","title":"HTTP"},"98":{"body":"Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, query, Record, text, Tuple, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request: query([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » HTTP » Incoming HTTP requests","id":"98","title":"Incoming HTTP requests"},"99":{"body":"Examples: ethereum_json_rpc outgoing_http_requests import { Canister, ic, init, nat32, Principal, query, Some, StableBTreeMap, text, update\n} from 'azle';\nimport { HttpResponse, HttpTransformArgs, managementCanister\n} from 'azle/canisters/management'; let stableStorage = StableBTreeMap(0); export default Canister({ init: init([text], (ethereumUrl) => { stableStorage.insert('ethereumUrl', ethereumUrl); }), ethGetBalance: update([text], text, async (ethereumAddress) => { const urlOpt = stableStorage.get('ethereumUrl'); if ('None' in urlOpt) { throw new Error('ethereumUrl is not defined'); } const url = urlOpt.Some; const httpResponse = await ic.call(managementCanister.http_request, { args: [ { url, max_response_bytes: Some(2_000n), method: { post: null }, headers: [], body: Some( Buffer.from( JSON.stringify({ jsonrpc: '2.0', method: 'eth_getBalance', params: [ethereumAddress, 'earliest'], id: 1 }), 'utf-8' ) ), transform: Some({ function: [ic.id(), 'ethTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); return Buffer.from(httpResponse.body.buffer).toString('utf-8'); }), ethGetBlockByNumber: update([nat32], text, async (number) => { const urlOpt = stableStorage.get('ethereumUrl'); if ('None' in urlOpt) { throw new Error('ethereumUrl is not defined'); } const url = urlOpt.Some; const httpResponse = await ic.call(managementCanister.http_request, { args: [ { url, max_response_bytes: Some(2_000n), method: { post: null }, headers: [], body: Some( Buffer.from( JSON.stringify({ jsonrpc: '2.0', method: 'eth_getBlockByNumber', params: [`0x${number.toString(16)}`, false], id: 1 }), 'utf-8' ) ), transform: Some({ function: [ic.id(), 'ethTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); return Buffer.from(httpResponse.body.buffer).toString('utf-8'); }), ethTransform: query([HttpTransformArgs], HttpResponse, (args) => { return { ...args.response, headers: [] }; })\n});","breadcrumbs":"Old Candid-based Documentation » HTTP » Outgoing HTTP requests","id":"99","title":"Outgoing HTTP requests"}},"length":234,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}},"df":7,"docs":{"102":{"tf":1.4142135623730951},"142":{"tf":2.0},"166":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"134":{"tf":1.0},"16":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"x":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"6":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"1":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"'":{"*":{"'":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":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":{"85":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"34":{"tf":1.0}}}},"1":{"0":{"6":{"4":{"3":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"6":{"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":2,"docs":{"149":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"8":{"df":9,"docs":{"116":{"tf":2.449489742783178},"122":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"4":{":":{"3":{"5":{":":{"3":{"0":{".":{"4":{"3":{"3":{"5":{"0":{"1":{"9":{"8":{"0":{"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":{}},"6":{":":{"3":{"4":{".":{"6":{"5":{"2":{"5":{"8":{"7":{"4":{"1":{"2":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"_":{"1":{"4":{"1":{"_":{"1":{"8":{"3":{"_":{"4":{"6":{"0":{"_":{"4":{"6":{"9":{"_":{"2":{"3":{"1":{"_":{"7":{"3":{"1":{"_":{"6":{"8":{"7":{"_":{"3":{"0":{"3":{"_":{"7":{"1":{"5":{"_":{"8":{"8":{"4":{"_":{"1":{"0":{"5":{"_":{"7":{"2":{"7":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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.4142135623730951}},"t":{"1":{"4":{":":{"3":{"5":{":":{"3":{"1":{".":{"9":{"8":{"3":{"5":{"9":{"0":{"df":0,"docs":{},"z":{"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":{}},"5":{":":{"0":{"1":{":":{"3":{"9":{".":{"1":{"9":{"4":{"3":{"7":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"_":{"4":{"4":{"6":{"_":{"7":{"4":{"4":{"_":{"0":{"7":{"3":{"_":{"7":{"0":{"9":{"_":{"5":{"5":{"1":{"_":{"6":{"1":{"5":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"157":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"166":{"tf":1.7320508075688772},"183":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":2.0},"34":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"2":{".":{"0":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"7":{"1":{"8":{"2":{"8":{"1":{"8":{"2":{"8":{"4":{"5":{"9":{"0":{"4":{"5":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"233":{"tf":1.0}}},"4":{"df":4,"docs":{"0":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"59":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"62":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"5":{"4":{"df":1,"docs":{"90":{"tf":1.0}}},"5":{"df":2,"docs":{"154":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"4":{"7":{"_":{"4":{"8":{"3":{"_":{"6":{"4":{"7":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"88":{"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":9,"docs":{"108":{"tf":1.0},"166":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"34":{"tf":1.0},"87":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"a":{"a":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"7":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}},"u":{"a":{"a":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"3":{".":{"1":{"4":{"1":{"5":{"9":{"2":{"7":{"df":2,"docs":{"145":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"7":{"6":{"7":{"df":2,"docs":{"150":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"179":{"tf":1.0},"210":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"0":{"_":{"2":{"8":{"2":{"_":{"3":{"6":{"6":{"_":{"9":{"2":{"0":{"_":{"9":{"3":{"8":{"_":{"4":{"6":{"3":{"_":{"4":{"6":{"3":{"_":{"3":{"7":{"4":{"_":{"6":{"0":{"7":{"_":{"4":{"3":{"1":{"_":{"7":{"6":{"8":{"_":{"2":{"1":{"1":{"_":{"4":{"5":{"5":{"df":2,"docs":{"153":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"153":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"6":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":4,"docs":{"166":{"tf":1.7320508075688772},"18":{"tf":1.0},"233":{"tf":1.0},"34":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.0}}},"2":{"df":1,"docs":{"140":{"tf":1.0}}},"_":{"2":{"9":{"4":{"_":{"9":{"6":{"7":{"_":{"2":{"9":{"5":{"df":2,"docs":{"156":{"tf":1.7320508075688772},"88":{"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":5,"docs":{"233":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}},"5":{"0":{"0":{"df":1,"docs":{"32":{"tf":1.0}}},"2":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"99":{"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":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"34":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"a":{"a":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"2":{"6":{"9":{"2":{"3":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"1":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"_":{"5":{"3":{"5":{"df":2,"docs":{"155":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"a":{"a":{"a":{"a":{"df":3,"docs":{"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"6":{"c":{"3":{"5":{"5":{"8":{"a":{"a":{"d":{"2":{"4":{"2":{"2":{"4":{"8":{"5":{"2":{"a":{"9":{"5":{"8":{"2":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"1":{"7":{"8":{"4":{"0":{"2":{"c":{"b":{"3":{"6":{"7":{"9":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"32":{"tf":1.0},"99":{"tf":2.0}}},"9":{"0":{"0":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"19":{"tf":1.0}}},"6":{"df":3,"docs":{"61":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"_":{"2":{"2":{"3":{"_":{"3":{"7":{"2":{"_":{"0":{"3":{"6":{"_":{"8":{"5":{"4":{"_":{"7":{"7":{"5":{"_":{"8":{"0":{"7":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"152":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"6":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}},"_":{"df":1,"docs":{"85":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"17":{"tf":2.0},"23":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}}},"a":{"a":{"a":{"a":{"a":{"df":15,"docs":{"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"147":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"73":{"tf":2.0},"79":{"tf":2.0},"8":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"96":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"q":{"df":5,"docs":{"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"b":{"a":{"df":5,"docs":{"134":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{},"q":{"df":3,"docs":{"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"163":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"90":{"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":3,"docs":{"22":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"116":{"tf":1.7320508075688772},"117":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"}":{"$":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"147":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"33":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"df":2,"docs":{"82":{"tf":1.0},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":1,"docs":{"88":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"22":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"215":{"tf":1.0},"58":{"tf":3.7416573867739413},"61":{"tf":1.4142135623730951},"67":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"j":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"52":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"96":{"tf":3.872983346207417}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"217":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"32":{"tf":2.8284271247461903}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"64":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"144":{"tf":2.0},"162":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":21,"docs":{"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.0},"13":{"tf":1.0},"167":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.0},"58":{"tf":3.4641016151377544},"59":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"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":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"'":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":9,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"58":{"tf":1.0}},"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":{"3":{"tf":1.0},"58":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":21,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":4.123105625617661},"59":{"tf":2.23606797749979},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"80":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"y":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"1":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"2":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"3":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"4":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":28,"docs":{"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":2.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"2":{"9":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"0":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"(":{"(":{"a":{"c":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"147":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":3.4641016151377544},"23":{"tf":1.0},"36":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"96":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"17":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"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":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"180":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"90":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"90":{"tf":2.6457513110645907}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":2.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"233":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0}}}},"df":8,"docs":{"40":{"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},"59":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":2.449489742783178}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":2.23606797749979},"38":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"58":{"tf":1.7320508075688772},"85":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":3.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":2.0},"96":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"192":{"tf":1.0},"215":{"tf":1.0}}},"y":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":162,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"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":1.0},"139":{"tf":1.0},"14":{"tf":2.0},"140":{"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.8284271247461903},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":2.0},"24":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":3.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":3.0},"69":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":2.0},"90":{"tf":2.8284271247461903},"96":{"tf":3.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":4,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"193":{"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":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":2.23606797749979},"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"@":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}}},"df":4,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"64":{"tf":2.6457513110645907},"66":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"37":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"1":{"0":{"0":{"2":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"6":{"4":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"2":{"8":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"5":{"5":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"1":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"6":{"1":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"43":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"37":{"tf":1.0},"48":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"49":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"d":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"58":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"59":{"tf":1.0},"7":{"tf":1.0}}},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"103":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":2.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"59":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"166":{"tf":1.0},"59":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"41":{"tf":1.0},"63":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"90":{"tf":1.0},"96":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"96":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"58":{"tf":2.6457513110645907}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"a":{"df":6,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"105":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"26":{"tf":1.0},"60":{"tf":1.0},"96":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":2.0},"58":{"tf":2.23606797749979},"78":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":12,"docs":{"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"120":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"58":{"tf":1.0}},"o":{"b":{"df":31,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"141":{"tf":1.0},"142":{"tf":3.4641016151377544},"144":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178},"90":{"tf":2.23606797749979},"98":{"tf":2.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"58":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":7,"docs":{"184":{"tf":2.0},"185":{"tf":2.0},"205":{"tf":1.0},"23":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.7320508075688772},"88":{"tf":1.0}}},"l":{"df":29,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"126":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":1.0},"143":{"tf":3.4641016151377544},"159":{"tf":1.7320508075688772},"163":{"tf":2.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"199":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"57":{"tf":1.0},"59":{"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":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"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":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"g":{"df":4,"docs":{"110":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":2.0},"193":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"36":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"33":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":2.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"2":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"6":{"9":{"df":0,"docs":{},"f":{"4":{"4":{"2":{"9":{"9":{"8":{"df":0,"docs":{},"e":{"4":{"c":{"d":{"a":{"4":{"6":{"1":{"9":{"1":{"6":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"a":{"9":{"b":{"c":{"9":{"1":{"4":{"1":{"8":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"\"":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"0":{"tf":1.0},"120":{"tf":1.0},"134":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"96":{"tf":2.449489742783178}}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"147":{"tf":1.0},"17":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":2.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"98":{"tf":2.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":70,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":2.449489742783178},"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},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":2.0},"181":{"tf":1.0},"187":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":2.8284271247461903},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"24":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":2.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979},"67":{"tf":3.1622776601683795},"72":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":3.3166247903554},"87":{"tf":3.0},"88":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":4.58257569495584}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"116":{"tf":1.0},"125":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":49,"docs":{"108":{"tf":1.7320508075688772},"11":{"tf":1.0},"111":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"19":{"tf":1.0},"193":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":2.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":3.4641016151377544},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":173,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":2.449489742783178},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"150":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":2.23606797749979},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"170":{"tf":2.0},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"19":{"tf":2.8284271247461903},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"23":{"tf":3.605551275463989},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"24":{"tf":2.8284271247461903},"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"36":{"tf":2.449489742783178},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":3.0},"59":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"67":{"tf":3.0},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":2.23606797749979},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.449489742783178},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":3.3166247903554},"87":{"tf":4.0},"88":{"tf":3.0},"9":{"tf":1.7320508075688772},"90":{"tf":2.6457513110645907},"94":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":6.324555320336759},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":10,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"19":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"193":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"52":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"195":{"tf":1.0},"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"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":{"31":{"tf":1.0}}}}}}},"i":{"d":{"df":14,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":2.23606797749979},"231":{"tf":1.0},"232":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"52":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"159":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"144":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.0},"233":{"tf":1.0},"58":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"3":{"tf":1.0},"52":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.0}},"k":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"54":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"174":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"167":{"tf":1.0},"179":{"tf":1.4142135623730951}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"n":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":15,"docs":{"215":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"7":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"31":{"tf":1.0},"62":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":5,"docs":{"112":{"tf":1.0},"115":{"tf":2.0},"21":{"tf":1.0},"25":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"215":{"tf":1.0},"3":{"tf":1.0},"6":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"58":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0},"58":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}},"u":{"d":{"df":3,"docs":{"58":{"tf":3.3166247903554},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":19,"docs":{"116":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"215":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":2.6457513110645907},"61":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"78":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"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":{"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"31":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"233":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.449489742783178},"58":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"41":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.449489742783178},"78":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}},"x":{"df":2,"docs":{"58":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"120":{"tf":1.0},"139":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"103":{"tf":1.4142135623730951},"112":{"tf":1.0},"34":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"39":{"tf":1.0},"52":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"i":{"d":{"df":3,"docs":{"29":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0}}}}}},"`":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"102":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"96":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":23,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}}}}}}}},"df":6,"docs":{"232":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"df":36,"docs":{"102":{"tf":3.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"184":{"tf":2.8284271247461903},"185":{"tf":2.8284271247461903},"19":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":2.8284271247461903},"204":{"tf":1.7320508075688772},"210":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"23":{"tf":2.8284271247461903},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":4.898979485566356},"96":{"tf":4.0},"98":{"tf":2.8284271247461903},"99":{"tf":2.449489742783178}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"165":{"tf":1.0},"39":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"214":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":2.0},"19":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"11":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":2.6457513110645907},"108":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"167":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0},"87":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"103":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":2.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":2.449489742783178},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"120":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"163":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":3.3166247903554}}}}},"u":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"52":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":10,"docs":{"11":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":31,"docs":{"103":{"tf":3.1622776601683795},"116":{"tf":2.449489742783178},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":2.23606797749979},"132":{"tf":2.23606797749979},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979}}}},"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":{"174":{"tf":1.0}}}}}}}},"df":17,"docs":{"108":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"144":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}}},"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"87":{"tf":2.449489742783178}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"233":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":31,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":123,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.8284271247461903},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"23":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"96":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"56":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"31":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"o":{"df":0,"docs":{},"y":{"df":32,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":2.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"3":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":2.23606797749979},"55":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"7":{"tf":2.6457513110645907},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"76":{"tf":2.23606797749979},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":2.0},"9":{"tf":2.449489742783178},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"195":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"176":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"215":{"tf":1.4142135623730951},"34":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":3.1622776601683795},"74":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":2.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"11":{"tf":2.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"233":{"tf":1.0},"36":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"6":{".":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":52,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"2":{"tf":2.0},"3":{"tf":2.0},"36":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.7320508075688772},"52":{"tf":1.0},"6":{"tf":2.449489742783178},"62":{"tf":2.0},"64":{"tf":2.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.6457513110645907},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":2.0},"85":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"i":{"a":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"l":{"\\":{"0":{"0":{"\\":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"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":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"103":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"114":{"tf":1.0},"22":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"83":{"tf":1.0}}}},"y":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"181":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"105":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"59":{"tf":1.0},"67":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"32":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"31":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"48":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"87":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"33":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"103":{"tf":1.0},"233":{"tf":1.4142135623730951},"31":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"67":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"59":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"88":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"113":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}}}},"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"136":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":3.605551275463989},"67":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"7":{"tf":1.0},"90":{"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":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"167":{"tf":1.0},"169":{"tf":1.4142135623730951},"18":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"2":{"tf":1.0},"62":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"108":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"58":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"10":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"58":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"87":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"159":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"163":{"tf":1.0},"90":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.7320508075688772},"144":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":3.605551275463989},"32":{"tf":3.3166247903554},"33":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":2.449489742783178}}}}}},"s":{"2":{"0":{"2":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"63":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"19":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":10,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.0},"27":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"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":{"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":113,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"90":{"tf":2.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"166":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"175":{"tf":1.0},"181":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.0},"67":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"96":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"59":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"59":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"215":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772},"93":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"87":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":120,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"96":{"tf":2.8284271247461903},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"s":{"df":9,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"215":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"16":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"23":{"tf":2.449489742783178},"32":{"tf":2.449489742783178},"4":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"36":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"144":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"126":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"87":{"tf":1.0},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"p":{":":{"/":{"/":{"d":{"df":0,"docs":{},"f":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"13":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"103":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"83":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":20,"docs":{"0":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"23":{"tf":1.7320508075688772},"3":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"7":{"tf":1.0},"82":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}}}}},"l":{"(":{"0":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"198":{"tf":1.0},"90":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"29":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.0},"39":{"tf":1.0}}}},"d":{"df":6,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"165":{"tf":2.23606797749979}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"147":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}},"x":{"df":2,"docs":{"10":{"tf":1.0},"108":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"141":{"tf":1.0},"145":{"tf":3.7416573867739413},"88":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":3.7416573867739413},"88":{"tf":2.6457513110645907},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}},"m":{"a":{"a":{"a":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":28,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"df":6,"docs":{"2":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"a":{"a":{"a":{"df":5,"docs":{"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"106":{"tf":1.0}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":2.23606797749979}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"4":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"df":5,"docs":{"115":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"n":{"c":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"120":{"tf":1.0},"186":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":6,"docs":{"141":{"tf":1.0},"147":{"tf":3.3166247903554},"184":{"tf":1.0},"185":{"tf":1.0},"88":{"tf":2.6457513110645907},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"147":{"tf":1.0}}},"df":23,"docs":{"102":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"16":{"tf":1.0},"161":{"tf":1.4142135623730951},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"205":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"87":{"tf":1.0},"90":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"215":{"tf":1.0},"29":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":13,"docs":{"103":{"tf":1.0},"18":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"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":1,"docs":{"196":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":2,"docs":{"59":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"191":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.4142135623730951}}},"df":1,"docs":{"153":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"m":{"b":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"85":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"i":{"b":{"df":6,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"54":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":8,"docs":{"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"85":{"tf":1.0},"87":{"tf":1.0}},"o":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"58":{"tf":3.3166247903554},"60":{"tf":1.0}}}},"w":{"df":4,"docs":{"218":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"233":{"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":{"58":{"tf":1.0},"87":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"69":{"tf":1.0}}}}}},"h":{"1":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":6,"docs":{"109":{"tf":1.0},"14":{"tf":1.0},"32":{"tf":4.242640687119285},"90":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"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":1,"docs":{"10":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"18":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"34":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.23606797749979},"209":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"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":6,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"233":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"164":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"8":{"tf":1.0}}}},"p":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"233":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":15,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":8,"docs":{"103":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"34":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"108":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"61":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":2,"docs":{"22":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"233":{"tf":1.0},"29":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"17":{"tf":1.0}}}}}}}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"/":{"?":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"98":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":5,"docs":{"182":{"tf":1.0},"185":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"df":9,"docs":{"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"195":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"98":{"tf":1.0}}}}}}}}}},"df":28,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":2.0}}}}}}}}},"s":{":":{"/":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"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":{"/":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"2":{"0":{"6":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"62":{"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":{"d":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"k":{"c":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"6":{"4":{"2":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"0":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"c":{"'":{"df":2,"docs":{"59":{"tf":1.0},"85":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"102":{"tf":1.0},"125":{"tf":1.0},"163":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"96":{"tf":2.0}},"l":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"123":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"137":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"140":{"tf":1.0}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"173":{"tf":1.0},"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":2,"docs":{"128":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"d":{"1":{"2":{"8":{"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":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"163":{"tf":1.0},"96":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"135":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"178":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"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":{"136":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.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":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"102":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"102":{"tf":1.0},"232":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"227":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"223":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"180":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"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":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"0":{"5":{"0":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":16,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"136":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"25":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":99,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":5.477225575051661},"59":{"tf":3.0},"60":{"tf":2.6457513110645907},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":3.0},"99":{"tf":1.0}},"p":{"df":14,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0}}},"r":{"c":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"25":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"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":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"\"":{">":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":9,"docs":{"161":{"tf":2.23606797749979},"167":{"tf":1.0},"173":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":4.58257569495584},"94":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"52":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"58":{"tf":1.7320508075688772},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":132,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"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.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.7320508075688772},"90":{"tf":2.6457513110645907},"96":{"tf":3.3166247903554},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":1,"docs":{"144":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"29":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"106":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.7320508075688772},"90":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"83":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"19":{"tf":1.0},"233":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"63":{"tf":1.0},"67":{"tf":1.0}}}},"df":2,"docs":{"85":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":7,"docs":{"58":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0}}}},"o":{"df":2,"docs":{"23":{"tf":1.0},"8":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"64":{"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":1,"docs":{"58":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"101":{"tf":1.7320508075688772},"120":{"tf":2.0},"182":{"tf":1.0},"186":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"i":{"df":6,"docs":{"186":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"120":{"tf":1.0},"219":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"33":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"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":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"182":{"tf":1.0},"187":{"tf":1.0},"33":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"117":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"2":{"tf":2.6457513110645907},"206":{"tf":1.0},"3":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":3.0},"62":{"tf":2.6457513110645907},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"82":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"147":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"166":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.7320508075688772},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"1":{"6":{"df":3,"docs":{"141":{"tf":1.0},"150":{"tf":3.7416573867739413},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"3":{"2":{"df":4,"docs":{"141":{"tf":1.0},"151":{"tf":3.7416573867739413},"166":{"tf":3.4641016151377544},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"141":{"tf":1.0},"152":{"tf":3.7416573867739413},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"141":{"tf":1.0},"149":{"tf":3.7416573867739413},"88":{"tf":2.6457513110645907}}},"df":4,"docs":{"140":{"tf":2.0},"141":{"tf":1.0},"148":{"tf":3.7416573867739413},"88":{"tf":3.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.0},"114":{"tf":1.7320508075688772},"58":{"tf":2.6457513110645907}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"n":{"d":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"f":{"a":{"c":{"df":4,"docs":{"73":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"32":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"20":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"58":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"61":{"tf":1.0},"85":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"10":{"tf":1.4142135623730951},"106":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"82":{"tf":1.0}}}}},"t":{"'":{"df":7,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"80":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"107":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.449489742783178},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"s":{"df":5,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"90":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":1.7320508075688772},"90":{"tf":1.0},"92":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"90":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"16":{"tf":1.4142135623730951},"53":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.7320508075688772}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":7,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":9,"docs":{"163":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":2.6457513110645907},"23":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"87":{"tf":3.1622776601683795},"88":{"tf":1.0},"90":{"tf":3.3166247903554}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"6":{"tf":2.0},"75":{"tf":2.0}}}},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"147":{"tf":1.0},"58":{"tf":1.0}},"n":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"56":{"tf":1.7320508075688772},"90":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}},"m":{"df":0,"docs":{},"j":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"34":{"tf":1.0},"59":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"96":{"tf":1.0}},"y":{"=":{"1":{"0":{"1":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"108":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"112":{"tf":1.0},"115":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"119":{"tf":1.0},"222":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"29":{"tf":1.0},"53":{"tf":1.0}}}},"t":{"'":{"df":6,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"106":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":1.0},"233":{"tf":2.0},"34":{"tf":3.0},"58":{"tf":2.0},"59":{"tf":2.23606797749979},"85":{"tf":2.449489742783178},"87":{"tf":2.8284271247461903}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":10,"docs":{"2":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"k":{"df":2,"docs":{"103":{"tf":1.0},"20":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"o":{"a":{"d":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"216":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":2.449489742783178},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"8":{"tf":1.0}}},"t":{"df":3,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"106":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"59":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":4,"docs":{"140":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{";":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"26":{"tf":1.0},"38":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.7320508075688772},"62":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"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":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"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":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"169":{"tf":1.0}}}}}}}},"df":5,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"36":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"p":{"(":{"(":{"_":{"df":1,"docs":{"90":{"tf":1.0}}},"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":2.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"h":{".":{"df":2,"docs":{"146":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"145":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}}},"y":{"b":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"218":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"87":{"tf":2.0},"90":{"tf":3.872983346207417},"94":{"tf":1.4142135623730951}}},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.7320508075688772},"22":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951},"67":{"tf":2.8284271247461903},"72":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}},"df":1,"docs":{"210":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"df":39,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"147":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.4142135623730951},"205":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"36":{"tf":2.23606797749979},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":2.6457513110645907},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":3.1622776601683795},"86":{"tf":1.0},"87":{"tf":2.8284271247461903},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":4.123105625617661},"98":{"tf":1.0},"99":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"b":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"34":{"tf":1.4142135623730951}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"108":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"196":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":7,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"107":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"52":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"193":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}}}},"s":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}},"g":{"df":7,"docs":{"116":{"tf":2.449489742783178},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.7320508075688772},"87":{"tf":1.0}},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"v":{"df":1,"docs":{"52":{"tf":1.0}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"78":{"tf":3.0},"79":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":2.0}}}},"t":{"1":{"6":{"df":6,"docs":{"141":{"tf":1.0},"155":{"tf":3.7416573867739413},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"141":{"tf":1.0},"156":{"tf":3.7416573867739413},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":2.6457513110645907},"99":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{">":{"(":{"0":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"141":{"tf":1.0},"157":{"tf":3.7416573867739413},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":2.8284271247461903},"96":{"tf":4.358898943540674}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"154":{"tf":3.7416573867739413},"219":{"tf":1.4142135623730951},"88":{"tf":3.0},"90":{"tf":2.6457513110645907}}},"df":7,"docs":{"119":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"141":{"tf":1.0},"153":{"tf":3.7416573867739413},"171":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.23606797749979},"61":{"tf":1.4142135623730951}},"e":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":5.196152422706632}}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":5.196152422706632}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"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":{"233":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"103":{"tf":1.0},"115":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"114":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":1.0}}}}},"w":{"df":11,"docs":{"139":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":2.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":3.4641016151377544}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"n":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":2.449489742783178}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"2":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"159":{"tf":2.0},"174":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"144":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}},"i":{"df":5,"docs":{"116":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"96":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"134":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"df":8,"docs":{"115":{"tf":1.0},"215":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"106":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"217":{"tf":1.4142135623730951},"3":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}},"x":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"158":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.0},"158":{"tf":3.872983346207417},"159":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"165":{"tf":2.6457513110645907},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"88":{"tf":3.605551275463989},"99":{"tf":1.4142135623730951}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":20,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"172":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.23606797749979},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"90":{"tf":3.3166247903554},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"222":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":2,"docs":{"163":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"l":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"df":7,"docs":{"15":{"tf":1.0},"165":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"106":{"tf":1.0},"56":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"109":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"159":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"6":{"4":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"159":{"tf":1.0}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":2.0}}}}}}}},"df":11,"docs":{"141":{"tf":1.0},"159":{"tf":2.8284271247461903},"174":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"111":{"tf":1.0},"233":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":1,"docs":{"58":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"83":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0},"27":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"178":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"49":{"tf":1.0},"62":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":1,"docs":{"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":2.8284271247461903}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":2.23606797749979},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"67":{"tf":1.0},"85":{"tf":2.23606797749979},"88":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"58":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"14":{"tf":1.0},"144":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"23":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{"$":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0}}}},"y":{"df":1,"docs":{"58":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"135":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"r":{"df":5,"docs":{"183":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"163":{"tf":1.0},"167":{"tf":1.0},"177":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"24":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"186":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"85":{"tf":1.0},"87":{"tf":2.0},"90":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}},"n":{"df":1,"docs":{"90":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.0},"215":{"tf":2.23606797749979},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772}}}}}}},"o":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"18":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":6,"docs":{"182":{"tf":1.0},"188":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"59":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"182":{"tf":1.0},"189":{"tf":1.0},"32":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":3,"docs":{"147":{"tf":1.0},"160":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":3,"docs":{"134":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":29,"docs":{"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"134":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.7320508075688772},"160":{"tf":4.0},"161":{"tf":2.23606797749979},"163":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"58":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"90":{"tf":3.872983346207417},"96":{"tf":2.8284271247461903},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":2.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"167":{"tf":1.0},"178":{"tf":1.7320508075688772},"32":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":1,"docs":{"148":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}},"df":1,"docs":{"153":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"m":{"b":{"df":1,"docs":{"166":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"90":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"192":{"tf":1.0},"194":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":2.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"96":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"58":{"tf":1.0}},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"31":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":87,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"97":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{".":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"10":{"tf":1.4142135623730951},"105":{"tf":1.0},"11":{"tf":1.4142135623730951},"17":{"tf":1.0},"216":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"75":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":14,"docs":{"159":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.449489742783178},"193":{"tf":1.0},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"36":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772},"60":{"tf":2.0}}}}},"df":1,"docs":{"52":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"0":{"tf":1.0},"192":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"195":{"tf":1.0},"207":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"217":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"q":{"a":{"a":{"a":{"df":0,"docs":{},"q":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":73,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.8284271247461903},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":2.23606797749979},"160":{"tf":2.0},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":2.6457513110645907},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"205":{"tf":1.0},"219":{"tf":2.449489742783178},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":3.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":4.898979485566356},"87":{"tf":3.0},"88":{"tf":2.8284271247461903},"90":{"tf":3.3166247903554},"96":{"tf":4.358898943540674},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"y":{"(":{"[":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"142":{"tf":1.0},"168":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"98":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"156":{"tf":1.0},"222":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"157":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.0}}},"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"160":{"tf":1.0},"176":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"164":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}},"j":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0}},"s":{"_":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"18":{"tf":1.0},"60":{"tf":1.0}}}},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"195":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"116":{"tf":2.449489742783178},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":3.1622776601683795}}}}}}},"d":{"df":9,"docs":{"218":{"tf":1.4142135623730951},"222":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"90":{"tf":2.0},"94":{"tf":1.0}},"i":{"df":3,"docs":{"59":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"58":{"tf":1.0},"93":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"147":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":2,"docs":{"128":{"tf":1.0},"130":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"15":{"tf":1.0},"166":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":13,"docs":{"102":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"161":{"tf":3.0},"184":{"tf":2.449489742783178},"185":{"tf":2.449489742783178},"204":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"59":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":3.0},"90":{"tf":4.358898943540674},"98":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"1":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"90":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":1,"docs":{"90":{"tf":2.449489742783178}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":8,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"116":{"tf":1.7320508075688772},"120":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.4142135623730951},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"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":{"59":{"tf":1.7320508075688772}}}}}}}}}}},"df":3,"docs":{"233":{"tf":1.0},"34":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"219":{"tf":1.0},"58":{"tf":2.449489742783178},"78":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"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":1,"docs":{"102":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"'":{"df":2,"docs":{"178":{"tf":1.0},"31":{"tf":1.0}}},"df":16,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"6":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":2.0},"75":{"tf":2.23606797749979},"76":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"58":{"tf":2.449489742783178},"60":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":3,"docs":{"116":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":2,"docs":{"216":{"tf":1.0},"54":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"52":{"tf":1.0},"83":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"72":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"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":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":18,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":2.449489742783178},"34":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"144":{"tf":1.0},"22":{"tf":1.7320508075688772},"36":{"tf":1.0},"52":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"b":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"d":{"b":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"14":{"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":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"141":{"tf":1.0},"162":{"tf":3.605551275463989},"18":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"20":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"103":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":9,"docs":{"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.0},"96":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":2.0}}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":2,"docs":{"53":{"tf":1.0},"67":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":6,"docs":{"17":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"110":{"tf":1.0},"58":{"tf":1.4142135623730951},"72":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":104,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":3.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"67":{"tf":2.23606797749979},"85":{"tf":2.449489742783178},"87":{"tf":2.6457513110645907},"88":{"tf":1.7320508075688772},"90":{"tf":5.196152422706632},"96":{"tf":3.872983346207417},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"v":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"f":{"df":1,"docs":{"10":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"33":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"58":{"tf":2.0},"59":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"36":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"41":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"52":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":27,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"52":{"tf":1.0},"80":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"216":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"59":{"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":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"10":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":1,"docs":{"52":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"147":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"34":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":2.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"204":{"tf":1.0},"210":{"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":85,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"105":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":2.0},"60":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"13":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"k":{"df":1,"docs":{"59":{"tf":1.0}}},"m":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}},"n":{"df":1,"docs":{"87":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"d":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"132":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"103":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"58":{"tf":1.0},"96":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"144":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.4142135623730951},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"108":{"tf":1.0},"90":{"tf":3.4641016151377544},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}}}}}}}},"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":4.0},"32":{"tf":1.0}}}},"i":{"c":{"df":28,"docs":{"115":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"88":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":22,"docs":{"14":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"191":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"231":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"120":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"0":{".":{"3":{"9":{".":{"7":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"l":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"103":{"tf":2.449489742783178},"63":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"5":{"tf":1.0},"96":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"113":{"tf":1.0},"195":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"210":{"tf":2.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}}}}},"df":2,"docs":{"210":{"tf":1.0},"58":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"58":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"109":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"215":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":6,"docs":{"53":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"102":{"tf":2.0},"58":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"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":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"59":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"116":{"tf":1.0},"119":{"tf":1.0},"19":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"223":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"233":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"0":{"5":{"0":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"2":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"159":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.4142135623730951},"96":{"tf":3.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"19":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"60":{"tf":1.0},"96":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":10,"docs":{"10":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"78":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"217":{"tf":1.0},"4":{"tf":1.0}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"233":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"111":{"tf":1.0},"218":{"tf":2.6457513110645907},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":3.1622776601683795}},"e":{"6":{"4":{"df":5,"docs":{"218":{"tf":2.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"225":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"227":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}}}}},"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":2,"docs":{"219":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"90":{"tf":2.0},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"df":12,"docs":{"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"219":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":4.795831523312719},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"110":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"223":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"33":{"tf":1.0},"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":2.6457513110645907},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.6457513110645907},"82":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"181":{"tf":1.0},"215":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":3.0},"63":{"tf":1.0},"67":{"tf":2.0},"75":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"96":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"18":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"102":{"tf":2.449489742783178}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"10":{"tf":1.0},"181":{"tf":1.0},"6":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"219":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"110":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":2.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":12,"docs":{"147":{"tf":1.7320508075688772},"164":{"tf":2.23606797749979},"168":{"tf":1.0},"169":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.0},"67":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"108":{"tf":1.0},"11":{"tf":1.7320508075688772},"16":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"113":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":3.0},"67":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":5,"docs":{"2":{"tf":1.0},"52":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"140":{"tf":1.0},"31":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"88":{"tf":1.0}}},"3":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"233":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"166":{"tf":1.0}},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":2.0},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"193":{"tf":1.0}}},"df":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":{"40":{"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},"59":{"tf":1.4142135623730951},"74":{"tf":1.0},"93":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{">":{"(":{"0":{"df":3,"docs":{"87":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":2.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"141":{"tf":1.0},"147":{"tf":2.8284271247461903},"161":{"tf":1.7320508075688772},"163":{"tf":2.6457513110645907},"164":{"tf":3.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"178":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":2.6457513110645907},"185":{"tf":2.6457513110645907},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"198":{"tf":1.0},"219":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":3.0},"85":{"tf":2.449489742783178},"87":{"tf":3.4641016151377544},"88":{"tf":3.4641016151377544},"90":{"tf":3.7416573867739413},"98":{"tf":2.6457513110645907},"99":{"tf":1.7320508075688772}}}}},"f":{"df":0,"docs":{},"j":{"df":1,"docs":{"4":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"67":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}},"k":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}},"r":{"d":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"109":{"tf":1.0},"58":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"77":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":9,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"181":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":2.449489742783178},"8":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"w":{"df":7,"docs":{"126":{"tf":1.0},"144":{"tf":1.4142135623730951},"187":{"tf":1.0},"32":{"tf":1.4142135623730951},"87":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"166":{"tf":1.0},"22":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"87":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"58":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"59":{"tf":1.7320508075688772},"96":{"tf":1.0}},"r":{"df":11,"docs":{"102":{"tf":1.7320508075688772},"111":{"tf":1.0},"120":{"tf":1.0},"209":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"25":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"102":{"tf":3.3166247903554},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"1":{".":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":2.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":2.23606797749979},"96":{"tf":3.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"0":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"1":{".":{"7":{"3":{".":{"0":{"df":1,"docs":{"52":{"tf":1.0}}},"df":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":{"2":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"df":1,"docs":{"18":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"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":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}},"k":{"df":4,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"18":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"58":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"167":{"tf":1.0},"181":{"tf":1.7320508075688772},"87":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":31,"docs":{"102":{"tf":1.0},"11":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"y":{".":{".":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"63":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.7320508075688772},"219":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.0},"36":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":7,"docs":{"113":{"tf":1.0},"147":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0}}}},"y":{"a":{"a":{"a":{"df":5,"docs":{"134":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":48,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"219":{"tf":1.4142135623730951},"233":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":3.872983346207417},"96":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":7,"docs":{"102":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"219":{"tf":1.4142135623730951},"90":{"tf":2.8284271247461903}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"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":5,"docs":{"215":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":31,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"85":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"[":{"8":{"3":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"6":{"8":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"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":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"102":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"142":{"tf":1.4142135623730951},"166":{"tf":1.0},"90":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"r":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"109":{"tf":1.0},"215":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"78":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"57":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"105":{"tf":1.0},"55":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"58":{"tf":1.0}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":72,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"179":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"191":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":2.8284271247461903},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":4.58257569495584},"88":{"tf":2.449489742783178},"90":{"tf":2.23606797749979},"96":{"tf":4.123105625617661},"99":{"tf":1.0}},"e":{"(":{"[":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"179":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"231":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"221":{"tf":1.0},"224":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"225":{"tf":1.0},"228":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"191":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"67":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"90":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"214":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"179":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"83":{"tf":1.0},"90":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":12,"docs":{"13":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"99":{"tf":2.0}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"110":{"tf":1.0},"59":{"tf":1.7320508075688772},"93":{"tf":1.0}}}},"df":56,"docs":{"0":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"147":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":2.23606797749979},"192":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"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},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"90":{"tf":2.8284271247461903},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}}},">":{"(":{"0":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"90":{"tf":2.23606797749979}}}}}}}}}}}}}},"df":5,"docs":{"161":{"tf":3.1622776601683795},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"90":{"tf":4.358898943540674}},"i":{"d":{"df":1,"docs":{"90":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"161":{"tf":2.23606797749979},"90":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"90":{"tf":2.449489742783178}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"v":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":21,"docs":{"102":{"tf":1.0},"110":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"147":{"tf":1.0},"159":{"tf":1.4142135623730951},"163":{"tf":1.0},"219":{"tf":2.6457513110645907},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"67":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"87":{"tf":3.7416573867739413},"88":{"tf":2.0},"90":{"tf":4.358898943540674},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},">":{"(":{"0":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"111":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.449489742783178},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"140":{"tf":2.23606797749979},"141":{"tf":1.0},"159":{"tf":1.7320508075688772},"163":{"tf":1.0},"165":{"tf":3.3166247903554},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"90":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"60":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.6457513110645907},"88":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"141":{"tf":1.0},"142":{"tf":2.0},"166":{"tf":3.0},"184":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.6457513110645907},"90":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"90":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"3":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"20":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"87":{"tf":3.4641016151377544},"96":{"tf":2.449489742783178}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}},"s":{"df":2,"docs":{"58":{"tf":1.0},"66":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"105":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.7320508075688772}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"144":{"tf":1.4142135623730951},"18":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"m":{"3":{"2":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"106":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":2.23606797749979},"58":{"tf":3.1622776601683795},"61":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"144":{"tf":1.0},"15":{"tf":1.0},"58":{"tf":1.7320508075688772},"77":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":1,"docs":{"59":{"tf":1.0}}},"v":{"df":2,"docs":{"67":{"tf":1.0},"72":{"tf":1.0}}}},"b":{"3":{"df":1,"docs":{"56":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"3":{"tf":1.0},"34":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"36":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"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":{"0":{"tf":1.0},"176":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":8,"docs":{"120":{"tf":1.0},"125":{"tf":1.0},"173":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":2.0},"25":{"tf":1.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"82":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"5":{"0":{"0":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"181":{"tf":1.0},"96":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.7320508075688772},"22":{"tf":1.0},"32":{"tf":1.7320508075688772},"67":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"54":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":97,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"l":{"d":{"df":14,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"164":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"8":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"215":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"228":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"94":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"x":{"df":3,"docs":{"23":{"tf":2.449489742783178},"3":{"tf":1.0},"8":{"tf":1.0}},"k":{"c":{"d":{"df":1,"docs":{"205":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"67":{"tf":1.0},"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":4,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":1,"docs":{"66":{"tf":1.0}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}},"df":7,"docs":{"102":{"tf":1.4142135623730951},"142":{"tf":2.0},"166":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"134":{"tf":1.0},"16":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"x":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"6":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"1":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"'":{"*":{"'":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":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":{"85":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"34":{"tf":1.0}}}},"1":{"0":{"6":{"4":{"3":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"6":{"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":2,"docs":{"149":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"8":{"df":9,"docs":{"116":{"tf":2.449489742783178},"122":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"167":{"tf":1.0},"171":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"4":{":":{"3":{"5":{":":{"3":{"0":{".":{"4":{"3":{"3":{"5":{"0":{"1":{"9":{"8":{"0":{"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":{}},"6":{":":{"3":{"4":{".":{"6":{"5":{"2":{"5":{"8":{"7":{"4":{"1":{"2":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"_":{"1":{"4":{"1":{"_":{"1":{"8":{"3":{"_":{"4":{"6":{"0":{"_":{"4":{"6":{"9":{"_":{"2":{"3":{"1":{"_":{"7":{"3":{"1":{"_":{"6":{"8":{"7":{"_":{"3":{"0":{"3":{"_":{"7":{"1":{"5":{"_":{"8":{"8":{"4":{"_":{"1":{"0":{"5":{"_":{"7":{"2":{"7":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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.4142135623730951}},"t":{"1":{"4":{":":{"3":{"5":{":":{"3":{"1":{".":{"9":{"8":{"3":{"5":{"9":{"0":{"df":0,"docs":{},"z":{"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":{}},"5":{":":{"0":{"1":{":":{"3":{"9":{".":{"1":{"9":{"4":{"3":{"7":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"_":{"4":{"4":{"6":{"_":{"7":{"4":{"4":{"_":{"0":{"7":{"3":{"_":{"7":{"0":{"9":{"_":{"5":{"5":{"1":{"_":{"6":{"1":{"5":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"157":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"166":{"tf":1.7320508075688772},"183":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":2.0},"34":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"2":{".":{"0":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"7":{"1":{"8":{"2":{"8":{"1":{"8":{"2":{"8":{"4":{"5":{"9":{"0":{"4":{"5":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"233":{"tf":1.0}}},"4":{"df":4,"docs":{"0":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"59":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"62":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"5":{"4":{"df":1,"docs":{"90":{"tf":1.0}}},"5":{"df":2,"docs":{"154":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"4":{"7":{"_":{"4":{"8":{"3":{"_":{"6":{"4":{"7":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"88":{"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":9,"docs":{"108":{"tf":1.0},"166":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"34":{"tf":1.0},"87":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"a":{"a":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"7":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}},"u":{"a":{"a":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"3":{".":{"1":{"4":{"1":{"5":{"9":{"2":{"7":{"df":2,"docs":{"145":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"7":{"6":{"7":{"df":2,"docs":{"150":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"179":{"tf":1.0},"210":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"0":{"_":{"2":{"8":{"2":{"_":{"3":{"6":{"6":{"_":{"9":{"2":{"0":{"_":{"9":{"3":{"8":{"_":{"4":{"6":{"3":{"_":{"4":{"6":{"3":{"_":{"3":{"7":{"4":{"_":{"6":{"0":{"7":{"_":{"4":{"3":{"1":{"_":{"7":{"6":{"8":{"_":{"2":{"1":{"1":{"_":{"4":{"5":{"5":{"df":2,"docs":{"153":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"153":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"6":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":4,"docs":{"166":{"tf":1.7320508075688772},"18":{"tf":1.0},"233":{"tf":1.0},"34":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.0}}},"2":{"df":1,"docs":{"140":{"tf":1.0}}},"_":{"2":{"9":{"4":{"_":{"9":{"6":{"7":{"_":{"2":{"9":{"5":{"df":2,"docs":{"156":{"tf":1.7320508075688772},"88":{"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":5,"docs":{"233":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}},"5":{"0":{"0":{"df":1,"docs":{"32":{"tf":1.0}}},"2":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"99":{"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":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"34":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"a":{"a":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"2":{"6":{"9":{"2":{"3":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"1":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"_":{"5":{"3":{"5":{"df":2,"docs":{"155":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"a":{"a":{"a":{"a":{"df":3,"docs":{"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"6":{"c":{"3":{"5":{"5":{"8":{"a":{"a":{"d":{"2":{"4":{"2":{"2":{"4":{"8":{"5":{"2":{"a":{"9":{"5":{"8":{"2":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"1":{"7":{"8":{"4":{"0":{"2":{"c":{"b":{"3":{"6":{"7":{"9":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"32":{"tf":1.0},"99":{"tf":2.0}}},"9":{"0":{"0":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"19":{"tf":1.0}}},"6":{"df":3,"docs":{"61":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"_":{"2":{"2":{"3":{"_":{"3":{"7":{"2":{"_":{"0":{"3":{"6":{"_":{"8":{"5":{"4":{"_":{"7":{"7":{"5":{"_":{"8":{"0":{"7":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"152":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"6":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}},"_":{"df":1,"docs":{"85":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"17":{"tf":2.0},"23":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}}},"a":{"a":{"a":{"a":{"a":{"df":15,"docs":{"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"147":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"73":{"tf":2.0},"79":{"tf":2.0},"8":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"96":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"q":{"df":5,"docs":{"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"b":{"a":{"df":5,"docs":{"134":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{},"q":{"df":3,"docs":{"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"163":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"90":{"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":3,"docs":{"22":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"}":{"$":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"147":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"33":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"df":2,"docs":{"82":{"tf":1.0},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":1,"docs":{"88":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"22":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"215":{"tf":1.0},"58":{"tf":3.7416573867739413},"61":{"tf":1.4142135623730951},"67":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"j":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"52":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"96":{"tf":3.872983346207417}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"217":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"32":{"tf":2.8284271247461903}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"64":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"144":{"tf":2.0},"162":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":59,"docs":{"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.0},"58":{"tf":3.4641016151377544},"59":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"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":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"'":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":9,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"58":{"tf":1.0}},"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":{"3":{"tf":1.0},"58":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":21,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":4.123105625617661},"59":{"tf":2.23606797749979},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"80":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"y":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"1":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"2":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"3":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"4":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":28,"docs":{"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":2.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"2":{"9":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"0":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"(":{"(":{"a":{"c":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"147":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":3.7416573867739413},"23":{"tf":1.0},"36":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"96":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"17":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"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":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"180":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"90":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"90":{"tf":2.6457513110645907}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":2.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":1.7320508075688772},"22":{"tf":2.0},"24":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"233":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0}}}},"df":8,"docs":{"40":{"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},"59":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":2.449489742783178}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":2.6457513110645907},"38":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"58":{"tf":1.7320508075688772},"85":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":3.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":2.0},"96":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"192":{"tf":1.0},"215":{"tf":1.0}}},"y":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":162,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"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":1.0},"139":{"tf":1.0},"14":{"tf":2.0},"140":{"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.8284271247461903},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":2.0},"24":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":3.1622776601683795},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":3.0},"69":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":2.0},"90":{"tf":2.8284271247461903},"96":{"tf":3.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":4,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"193":{"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":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":2.23606797749979},"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"@":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}}},"df":4,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"64":{"tf":2.6457513110645907},"66":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"37":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"41":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"1":{"0":{"0":{"2":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"6":{"4":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"2":{"8":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"5":{"5":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"1":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"6":{"1":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"37":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"49":{"tf":1.4142135623730951}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"d":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"167":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":184,"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.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},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"53":{"tf":2.8284271247461903},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"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},"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},"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}}},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"103":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":2.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"59":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"166":{"tf":1.0},"59":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"41":{"tf":1.0},"63":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"90":{"tf":1.0},"96":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"96":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"58":{"tf":2.8284271247461903}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"a":{"df":9,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"105":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"26":{"tf":1.0},"60":{"tf":1.0},"96":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":2.449489742783178},"58":{"tf":2.23606797749979},"78":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":14,"docs":{"111":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":2.6457513110645907},"115":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"58":{"tf":1.0}},"o":{"b":{"df":31,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"141":{"tf":1.0},"142":{"tf":3.7416573867739413},"144":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178},"90":{"tf":2.23606797749979},"98":{"tf":2.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"58":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":7,"docs":{"184":{"tf":2.0},"185":{"tf":2.0},"205":{"tf":1.0},"23":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":2.23606797749979},"88":{"tf":1.0}}},"l":{"df":29,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"126":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":1.0},"143":{"tf":3.7416573867739413},"159":{"tf":1.7320508075688772},"163":{"tf":2.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"199":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"57":{"tf":1.0},"59":{"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":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"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":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"g":{"df":4,"docs":{"110":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":2.0},"193":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"36":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"33":{"tf":2.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":2.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"2":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"6":{"9":{"df":0,"docs":{},"f":{"4":{"4":{"2":{"9":{"9":{"8":{"df":0,"docs":{},"e":{"4":{"c":{"d":{"a":{"4":{"6":{"1":{"9":{"1":{"6":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"a":{"9":{"b":{"c":{"9":{"1":{"4":{"1":{"8":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"\"":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"0":{"tf":1.0},"120":{"tf":1.0},"134":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"96":{"tf":2.449489742783178}}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"147":{"tf":1.0},"17":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":2.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"98":{"tf":2.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":87,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":2.8284271247461903},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":2.0},"124":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"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},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":2.0},"181":{"tf":1.0},"187":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":2.8284271247461903},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":2.23606797749979},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979},"67":{"tf":3.1622776601683795},"72":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":3.3166247903554},"87":{"tf":3.0},"88":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":4.58257569495584}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"116":{"tf":1.0},"125":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":187,"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":2.23606797749979},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":2.0},"144":{"tf":2.23606797749979},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":2.0},"160":{"tf":2.0},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":2.0},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":2.0},"167":{"tf":1.7320508075688772},"168":{"tf":2.449489742783178},"169":{"tf":2.449489742783178},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"36":{"tf":1.0},"53":{"tf":2.449489742783178},"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":2.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":3.872983346207417},"89":{"tf":1.0},"90":{"tf":2.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}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":173,"docs":{"100":{"tf":2.6457513110645907},"101":{"tf":2.8284271247461903},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"150":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":2.6457513110645907},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"170":{"tf":2.6457513110645907},"171":{"tf":2.6457513110645907},"172":{"tf":2.449489742783178},"173":{"tf":2.449489742783178},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":2.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"188":{"tf":2.0},"189":{"tf":2.0},"19":{"tf":2.8284271247461903},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"210":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"23":{"tf":3.605551275463989},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"24":{"tf":2.8284271247461903},"25":{"tf":2.23606797749979},"26":{"tf":2.449489742783178},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.0},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"36":{"tf":2.449489742783178},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":3.0},"59":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"67":{"tf":3.0},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"72":{"tf":2.23606797749979},"73":{"tf":2.449489742783178},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":2.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.6457513110645907},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":3.3166247903554},"87":{"tf":4.0},"88":{"tf":3.0},"9":{"tf":1.7320508075688772},"90":{"tf":2.6457513110645907},"94":{"tf":1.0},"95":{"tf":2.449489742783178},"96":{"tf":6.48074069840786},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":10,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"19":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"193":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"52":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"195":{"tf":1.0},"200":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"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":{"31":{"tf":1.0}}}}}}},"i":{"d":{"df":14,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":2.23606797749979},"231":{"tf":1.0},"232":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"52":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"159":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"144":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"233":{"tf":1.0},"58":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"3":{"tf":1.0},"52":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.0}},"k":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"54":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"174":{"tf":2.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"167":{"tf":1.0},"179":{"tf":2.0}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"n":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":15,"docs":{"215":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"7":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"31":{"tf":1.0},"62":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":5,"docs":{"112":{"tf":1.0},"115":{"tf":2.23606797749979},"21":{"tf":1.0},"25":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"215":{"tf":1.0},"3":{"tf":1.0},"6":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.7320508075688772},"58":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0},"58":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}},"u":{"d":{"df":3,"docs":{"58":{"tf":3.3166247903554},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":19,"docs":{"116":{"tf":1.0},"137":{"tf":1.7320508075688772},"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"215":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":2.6457513110645907},"61":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"78":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"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":{"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"31":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"3":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"233":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.8284271247461903},"58":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"41":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.449489742783178},"78":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}},"x":{"df":2,"docs":{"58":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"120":{"tf":1.0},"139":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"103":{"tf":1.4142135623730951},"112":{"tf":1.0},"34":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"39":{"tf":1.0},"52":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"i":{"d":{"df":3,"docs":{"29":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0}}}}}},"`":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"102":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"96":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":23,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}}}}}}}},"df":6,"docs":{"232":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"df":36,"docs":{"102":{"tf":3.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"184":{"tf":2.8284271247461903},"185":{"tf":2.8284271247461903},"19":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":2.8284271247461903},"204":{"tf":1.7320508075688772},"210":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"23":{"tf":2.8284271247461903},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":4.898979485566356},"96":{"tf":4.0},"98":{"tf":2.8284271247461903},"99":{"tf":2.449489742783178}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"165":{"tf":1.0},"39":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"167":{"tf":1.0},"176":{"tf":2.0},"214":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":2.0},"19":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"11":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":2.6457513110645907},"108":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"167":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"103":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":2.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":2.449489742783178},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"201":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"120":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"163":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":3.605551275463989}}}}},"u":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"52":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":10,"docs":{"11":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":31,"docs":{"103":{"tf":3.4641016151377544},"116":{"tf":2.449489742783178},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":2.23606797749979},"128":{"tf":2.23606797749979},"129":{"tf":2.23606797749979},"130":{"tf":2.23606797749979},"131":{"tf":2.6457513110645907},"132":{"tf":2.6457513110645907},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979}}}},"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":{"174":{"tf":1.0}}}}}}}},"df":17,"docs":{"108":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":2.0},"119":{"tf":2.0},"144":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.4142135623730951},"174":{"tf":2.0},"179":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}}},"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"87":{"tf":2.449489742783178}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"233":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"28":{"tf":1.7320508075688772},"29":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":31,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":2.0},"67":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":123,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.8284271247461903},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"23":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"96":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"202":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"56":{"tf":2.0},"90":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"31":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"o":{"df":0,"docs":{},"y":{"df":36,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"3":{"tf":2.6457513110645907},"33":{"tf":1.0},"36":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":2.6457513110645907},"55":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"7":{"tf":3.0},"70":{"tf":2.23606797749979},"71":{"tf":2.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907},"75":{"tf":1.0},"76":{"tf":2.6457513110645907},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":2.8284271247461903},"82":{"tf":2.449489742783178},"9":{"tf":2.8284271247461903},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"195":{"tf":1.0},"203":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"176":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"215":{"tf":1.4142135623730951},"34":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":3.1622776601683795},"74":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":2.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"11":{"tf":2.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"233":{"tf":1.0},"36":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"6":{".":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":52,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"2":{"tf":2.0},"3":{"tf":2.0},"36":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.7320508075688772},"52":{"tf":1.0},"6":{"tf":2.449489742783178},"62":{"tf":2.0},"64":{"tf":2.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.8284271247461903},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":2.0},"85":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"i":{"a":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"l":{"\\":{"0":{"0":{"\\":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"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":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"103":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"114":{"tf":1.0},"22":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"75":{"tf":1.0},"83":{"tf":1.0}}}},"y":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"181":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"105":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"59":{"tf":1.0},"67":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"32":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":182,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"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},"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},"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}}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"31":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"48":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"59":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"87":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"33":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"103":{"tf":1.0},"233":{"tf":1.4142135623730951},"31":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"67":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"59":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"88":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"113":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}}}},"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"136":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":3.872983346207417},"67":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"7":{"tf":1.0},"90":{"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":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"167":{"tf":1.0},"169":{"tf":2.0},"18":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"108":{"tf":2.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"2":{"tf":1.0},"62":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"108":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"58":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"10":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"58":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"87":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":31,"docs":{"107":{"tf":2.0},"111":{"tf":1.0},"192":{"tf":2.23606797749979},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"2":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"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.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"159":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"163":{"tf":1.0},"90":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.7320508075688772},"144":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":3.605551275463989},"32":{"tf":3.4641016151377544},"33":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":2.449489742783178}}}}}},"s":{"2":{"0":{"2":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"63":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"19":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":10,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.0},"27":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"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":{"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":113,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"85":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"90":{"tf":2.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"166":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"175":{"tf":1.0},"181":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.0},"67":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"96":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"59":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"59":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"215":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772},"93":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"87":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":120,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"96":{"tf":2.8284271247461903},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"s":{"df":9,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"215":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"16":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"23":{"tf":2.449489742783178},"32":{"tf":2.449489742783178},"4":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"36":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"144":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"126":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"87":{"tf":1.0},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"p":{":":{"/":{"/":{"d":{"df":0,"docs":{},"f":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"13":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.0},"23":{"tf":2.0},"24":{"tf":2.6457513110645907},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"103":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"83":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":20,"docs":{"0":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"23":{"tf":1.7320508075688772},"3":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":2.0},"67":{"tf":1.0},"7":{"tf":1.0},"82":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}}}}},"l":{"(":{"0":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"198":{"tf":1.0},"90":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"29":{"tf":1.0},"33":{"tf":2.23606797749979},"36":{"tf":1.0},"39":{"tf":1.0}}}},"d":{"df":6,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"165":{"tf":2.23606797749979}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"147":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}},"x":{"df":2,"docs":{"10":{"tf":1.0},"108":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"141":{"tf":1.0},"145":{"tf":4.0},"88":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"110":{"tf":1.7320508075688772},"141":{"tf":1.0},"146":{"tf":4.0},"88":{"tf":2.6457513110645907},"92":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}},"m":{"a":{"a":{"a":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":28,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"df":6,"docs":{"2":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"a":{"a":{"a":{"df":5,"docs":{"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"106":{"tf":1.0}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":2.23606797749979}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"4":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"df":5,"docs":{"115":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"n":{"c":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"120":{"tf":1.0},"186":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":6,"docs":{"141":{"tf":1.0},"147":{"tf":3.605551275463989},"184":{"tf":1.0},"185":{"tf":1.0},"88":{"tf":2.6457513110645907},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"147":{"tf":1.0}}},"df":23,"docs":{"102":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"16":{"tf":1.0},"161":{"tf":1.4142135623730951},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"205":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"87":{"tf":1.0},"90":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"215":{"tf":1.0},"29":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":13,"docs":{"103":{"tf":1.0},"18":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"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":1,"docs":{"196":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":2,"docs":{"59":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"191":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.4142135623730951}}},"df":1,"docs":{"153":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"m":{"b":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"85":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"i":{"b":{"df":6,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"54":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":8,"docs":{"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"85":{"tf":1.0},"87":{"tf":1.0}},"o":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"58":{"tf":3.3166247903554},"60":{"tf":1.0}}}},"w":{"df":4,"docs":{"218":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"225":{"tf":1.7320508075688772},"233":{"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":{"58":{"tf":1.0},"87":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"69":{"tf":1.0}}}}}},"h":{"1":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":6,"docs":{"109":{"tf":1.0},"14":{"tf":1.0},"32":{"tf":4.242640687119285},"90":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"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":1,"docs":{"10":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"18":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"34":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.6457513110645907},"209":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"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":6,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"233":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"164":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"8":{"tf":1.0}}}},"p":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"233":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":15,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":8,"docs":{"103":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"34":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"108":{"tf":1.4142135623730951},"140":{"tf":1.0},"34":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"61":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"233":{"tf":1.0},"29":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":2.0},"17":{"tf":1.0}}}}}}}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"/":{"?":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"98":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":5,"docs":{"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"22":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"df":9,"docs":{"182":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"205":{"tf":1.7320508075688772},"22":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"98":{"tf":1.0}}}}}}}}}},"df":28,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":2.0}}}}}}}}},"s":{":":{"/":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"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":{"/":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"2":{"0":{"6":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"62":{"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":{"d":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"k":{"c":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"6":{"4":{"2":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"0":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"c":{"'":{"df":2,"docs":{"59":{"tf":1.0},"85":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"102":{"tf":1.0},"125":{"tf":1.0},"163":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"96":{"tf":2.0}},"l":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"123":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"137":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"140":{"tf":1.0}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"173":{"tf":1.0},"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":2,"docs":{"128":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"d":{"1":{"2":{"8":{"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":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"163":{"tf":1.0},"96":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"135":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"178":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"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":{"136":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.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":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"102":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"102":{"tf":1.0},"232":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"227":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"223":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"180":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"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":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"0":{"5":{"0":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":16,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"136":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"25":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":99,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":5.477225575051661},"59":{"tf":3.0},"60":{"tf":2.6457513110645907},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":3.0},"99":{"tf":1.0}},"p":{"df":14,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0}}},"r":{"c":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"25":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"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":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"\"":{">":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":9,"docs":{"161":{"tf":2.23606797749979},"167":{"tf":1.0},"173":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":4.58257569495584},"94":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"52":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"58":{"tf":1.7320508075688772},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":132,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"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.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.7320508075688772},"90":{"tf":2.6457513110645907},"96":{"tf":3.3166247903554},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":1,"docs":{"144":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"29":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"106":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.7320508075688772},"90":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"83":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"19":{"tf":1.0},"233":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"63":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":2,"docs":{"85":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":7,"docs":{"58":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0}}}},"o":{"df":2,"docs":{"23":{"tf":1.0},"8":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"64":{"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":1,"docs":{"58":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"101":{"tf":1.7320508075688772},"120":{"tf":2.0},"182":{"tf":1.0},"186":{"tf":2.6457513110645907},"99":{"tf":1.4142135623730951}},"i":{"df":6,"docs":{"186":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"120":{"tf":1.0},"219":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"33":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"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":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"182":{"tf":1.0},"187":{"tf":1.7320508075688772},"33":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"117":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"2":{"tf":2.8284271247461903},"206":{"tf":1.0},"3":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":3.0},"62":{"tf":3.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"82":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"206":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"147":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"166":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":2.0},"34":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.7320508075688772},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"1":{"6":{"df":3,"docs":{"141":{"tf":1.0},"150":{"tf":4.0},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"3":{"2":{"df":4,"docs":{"141":{"tf":1.0},"151":{"tf":4.0},"166":{"tf":3.4641016151377544},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"141":{"tf":1.0},"152":{"tf":4.0},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"141":{"tf":1.0},"149":{"tf":4.0},"88":{"tf":2.6457513110645907}}},"df":4,"docs":{"140":{"tf":2.0},"141":{"tf":1.0},"148":{"tf":4.0},"88":{"tf":3.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.0},"114":{"tf":2.0},"58":{"tf":2.6457513110645907}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"n":{"d":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"f":{"a":{"c":{"df":4,"docs":{"73":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"32":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"20":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"58":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"61":{"tf":1.0},"85":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"10":{"tf":1.7320508075688772},"106":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"'":{"df":7,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"80":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"107":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":2.23606797749979},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.449489742783178},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"s":{"df":5,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"90":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":2.0},"90":{"tf":1.0},"92":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"90":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"16":{"tf":1.4142135623730951},"53":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":2.0}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":7,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":9,"docs":{"163":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":2.6457513110645907},"23":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"87":{"tf":3.1622776601683795},"88":{"tf":1.0},"90":{"tf":3.3166247903554}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"6":{"tf":2.0},"75":{"tf":2.0}}}},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"147":{"tf":1.0},"58":{"tf":1.0}},"n":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"56":{"tf":2.0},"90":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}},"m":{"df":0,"docs":{},"j":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"34":{"tf":1.0},"59":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"96":{"tf":1.0}},"y":{"=":{"1":{"0":{"1":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"108":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"112":{"tf":1.0},"115":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"119":{"tf":1.0},"222":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"29":{"tf":1.0},"53":{"tf":1.0}}}},"t":{"'":{"df":6,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"106":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":2.23606797749979},"19":{"tf":1.0},"233":{"tf":2.0},"34":{"tf":3.3166247903554},"58":{"tf":2.0},"59":{"tf":2.23606797749979},"85":{"tf":2.449489742783178},"87":{"tf":2.8284271247461903}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":10,"docs":{"2":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"k":{"df":2,"docs":{"103":{"tf":1.0},"20":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"o":{"a":{"d":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"216":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":2.23606797749979},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"74":{"tf":2.449489742783178},"75":{"tf":2.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"t":{"df":3,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"106":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"59":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":4,"docs":{"140":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{";":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"9":{"tf":2.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"26":{"tf":1.0},"38":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":28,"docs":{"100":{"tf":2.23606797749979},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"58":{"tf":1.7320508075688772},"62":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"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":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"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":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"169":{"tf":1.0}}}}}}}},"df":5,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"36":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"p":{"(":{"(":{"_":{"df":1,"docs":{"90":{"tf":1.0}}},"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":2.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"h":{".":{"df":2,"docs":{"146":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"145":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}}},"y":{"b":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"87":{"tf":2.0},"90":{"tf":3.872983346207417},"94":{"tf":1.4142135623730951}}},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"136":{"tf":1.0},"138":{"tf":1.7320508075688772},"17":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"187":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"22":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"67":{"tf":2.8284271247461903},"72":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}},"df":1,"docs":{"210":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"df":44,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":2.0},"147":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"205":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"36":{"tf":2.23606797749979},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"78":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":3.3166247903554},"86":{"tf":1.7320508075688772},"87":{"tf":3.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":4.123105625617661},"98":{"tf":1.0},"99":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"b":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"34":{"tf":1.4142135623730951}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"108":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"196":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":7,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"107":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"52":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"193":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}}}},"s":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}},"g":{"df":7,"docs":{"116":{"tf":2.449489742783178},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.7320508075688772},"87":{"tf":1.0}},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"v":{"df":1,"docs":{"52":{"tf":1.0}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"78":{"tf":3.0},"79":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.7320508075688772},"147":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":2.0}}}},"t":{"1":{"6":{"df":6,"docs":{"141":{"tf":1.0},"155":{"tf":4.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"141":{"tf":1.0},"156":{"tf":4.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":2.6457513110645907},"99":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{">":{"(":{"0":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"141":{"tf":1.0},"157":{"tf":4.0},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":2.8284271247461903},"96":{"tf":4.358898943540674}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"154":{"tf":4.0},"219":{"tf":1.4142135623730951},"88":{"tf":3.0},"90":{"tf":2.6457513110645907}}},"df":7,"docs":{"119":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"141":{"tf":1.0},"153":{"tf":4.0},"171":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951}},"e":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":5.196152422706632}}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":5.196152422706632}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"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":{"233":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"103":{"tf":1.0},"115":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"114":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":1.0}}}}},"w":{"df":11,"docs":{"139":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":2.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":3.4641016151377544}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"n":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":2.449489742783178}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":2.0},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"2":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"159":{"tf":2.0},"174":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"144":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}},"i":{"df":5,"docs":{"116":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"134":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"96":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"134":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"df":8,"docs":{"115":{"tf":1.0},"215":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"106":{"tf":2.449489742783178},"19":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"3":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}},"x":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"158":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.0},"158":{"tf":4.123105625617661},"159":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"165":{"tf":2.6457513110645907},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"88":{"tf":3.605551275463989},"99":{"tf":1.4142135623730951}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":20,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"172":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.23606797749979},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"90":{"tf":3.3166247903554},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"222":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":2,"docs":{"163":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"l":{"d":{"df":181,"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.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},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"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},"88":{"tf":1.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}}},"df":0,"docs":{}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"df":7,"docs":{"15":{"tf":1.0},"165":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"106":{"tf":1.0},"56":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"109":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"159":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"6":{"4":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"159":{"tf":1.0}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":2.0}}}}}}}},"df":11,"docs":{"141":{"tf":1.0},"159":{"tf":3.1622776601683795},"174":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"111":{"tf":1.0},"233":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":1,"docs":{"58":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0},"27":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"178":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"49":{"tf":1.0},"62":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":1,"docs":{"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":2.8284271247461903}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":2.449489742783178},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"67":{"tf":1.0},"85":{"tf":2.23606797749979},"88":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"58":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"14":{"tf":1.0},"144":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"23":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{"$":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0}}}},"y":{"df":1,"docs":{"58":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"r":{"df":5,"docs":{"183":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"163":{"tf":1.0},"167":{"tf":1.0},"177":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"24":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"186":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"85":{"tf":1.0},"87":{"tf":2.0},"90":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}},"n":{"df":1,"docs":{"90":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.0},"215":{"tf":2.6457513110645907},"216":{"tf":2.23606797749979},"217":{"tf":2.23606797749979}}}}}}},"o":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"18":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":6,"docs":{"182":{"tf":1.0},"188":{"tf":1.7320508075688772},"3":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"59":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"182":{"tf":1.0},"189":{"tf":1.7320508075688772},"32":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":3,"docs":{"147":{"tf":1.0},"160":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":3,"docs":{"134":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":29,"docs":{"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"134":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.7320508075688772},"160":{"tf":4.242640687119285},"161":{"tf":2.23606797749979},"163":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"58":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"90":{"tf":3.872983346207417},"96":{"tf":2.8284271247461903},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":2.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"167":{"tf":1.0},"178":{"tf":2.23606797749979},"32":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":1,"docs":{"148":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}},"df":1,"docs":{"153":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"m":{"b":{"df":1,"docs":{"166":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"90":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"192":{"tf":1.0},"194":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":2.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"96":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"58":{"tf":1.0}},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"31":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":87,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"97":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{".":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"10":{"tf":1.4142135623730951},"105":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"216":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"75":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"59":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":14,"docs":{"159":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.449489742783178},"193":{"tf":1.0},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"36":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772},"60":{"tf":2.0}}}}},"df":1,"docs":{"52":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"0":{"tf":1.0},"192":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"195":{"tf":1.0},"207":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"208":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"217":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"q":{"a":{"a":{"a":{"df":0,"docs":{},"q":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":73,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.8284271247461903},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":2.23606797749979},"160":{"tf":2.0},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":2.6457513110645907},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":2.449489742783178},"191":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"205":{"tf":1.0},"219":{"tf":2.449489742783178},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":3.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":5.0},"87":{"tf":3.0},"88":{"tf":2.8284271247461903},"90":{"tf":3.3166247903554},"96":{"tf":4.358898943540674},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"y":{"(":{"[":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"142":{"tf":1.0},"168":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"98":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"156":{"tf":1.0},"222":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"157":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.0}}},"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"160":{"tf":1.0},"176":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"164":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.4142135623730951}},"j":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0}},"s":{"_":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"18":{"tf":1.0},"60":{"tf":1.0}}}},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"195":{"tf":1.0},"209":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"116":{"tf":2.449489742783178},"118":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"134":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":3.1622776601683795}}}}}}},"d":{"df":9,"docs":{"218":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"34":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"90":{"tf":2.0},"94":{"tf":1.0}},"i":{"df":3,"docs":{"59":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"58":{"tf":1.0},"93":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"147":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":2,"docs":{"128":{"tf":1.0},"130":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"15":{"tf":1.0},"166":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":13,"docs":{"102":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"161":{"tf":3.3166247903554},"184":{"tf":2.449489742783178},"185":{"tf":2.449489742783178},"204":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"59":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":3.0},"90":{"tf":4.358898943540674},"98":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"1":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"90":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":1,"docs":{"90":{"tf":2.449489742783178}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":8,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":149,"docs":{"100":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"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},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"116":{"tf":1.7320508075688772},"120":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":2.0},"138":{"tf":2.0},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.4142135623730951},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"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":{"59":{"tf":1.7320508075688772}}}}}}}}}}},"df":3,"docs":{"233":{"tf":1.0},"34":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"219":{"tf":1.0},"58":{"tf":2.449489742783178},"78":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"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":1,"docs":{"102":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"'":{"df":2,"docs":{"178":{"tf":1.0},"31":{"tf":1.0}}},"df":16,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"6":{"tf":2.6457513110645907},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"74":{"tf":2.0},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"58":{"tf":2.449489742783178},"60":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":3,"docs":{"116":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":2,"docs":{"216":{"tf":1.0},"54":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"52":{"tf":1.0},"83":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"72":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"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":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":18,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":2.449489742783178},"34":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"144":{"tf":1.0},"22":{"tf":1.7320508075688772},"36":{"tf":1.0},"52":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"b":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"d":{"b":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"14":{"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":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"141":{"tf":1.0},"162":{"tf":3.872983346207417},"18":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"20":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"103":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":9,"docs":{"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":1.0},"34":{"tf":1.0},"96":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":2.0}}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":2,"docs":{"53":{"tf":1.0},"67":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":6,"docs":{"17":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"110":{"tf":1.0},"58":{"tf":1.4142135623730951},"72":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":104,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":3.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"67":{"tf":2.23606797749979},"85":{"tf":2.449489742783178},"87":{"tf":2.6457513110645907},"88":{"tf":1.7320508075688772},"90":{"tf":5.196152422706632},"96":{"tf":3.872983346207417},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"v":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"f":{"df":1,"docs":{"10":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"33":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"58":{"tf":2.0},"59":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"36":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"41":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"52":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":27,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"52":{"tf":1.0},"80":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"216":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"59":{"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":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"10":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":1,"docs":{"52":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"147":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"34":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":2.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"204":{"tf":1.0},"210":{"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":85,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":2.0},"60":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"13":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"k":{"df":1,"docs":{"59":{"tf":1.0}}},"m":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}},"n":{"df":1,"docs":{"87":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"d":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"132":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"103":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"58":{"tf":1.0},"96":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"144":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.4142135623730951},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"108":{"tf":1.0},"90":{"tf":3.4641016151377544},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}}}}}}}},"df":10,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":2.449489742783178},"13":{"tf":2.8284271247461903},"14":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":4.242640687119285},"18":{"tf":1.0},"32":{"tf":1.0}}}},"i":{"c":{"df":28,"docs":{"115":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":3.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"88":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":22,"docs":{"14":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":2.0},"18":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"191":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"231":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"120":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"0":{".":{"3":{"9":{".":{"7":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"l":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"103":{"tf":2.449489742783178},"63":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"5":{"tf":1.0},"96":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"113":{"tf":1.0},"195":{"tf":1.0},"210":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"210":{"tf":2.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}}}}},"df":2,"docs":{"210":{"tf":1.0},"58":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"58":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"109":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"215":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":6,"docs":{"53":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"102":{"tf":2.0},"58":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"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":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"59":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"116":{"tf":1.0},"119":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"233":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"0":{"5":{"0":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"2":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"159":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.4142135623730951},"96":{"tf":3.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"19":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"60":{"tf":1.0},"96":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":10,"docs":{"10":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"78":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"217":{"tf":1.0},"4":{"tf":1.0}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"233":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":23,"docs":{"111":{"tf":1.0},"218":{"tf":3.0},"219":{"tf":2.0},"220":{"tf":2.0},"221":{"tf":2.0},"222":{"tf":2.0},"223":{"tf":2.0},"224":{"tf":2.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":1.7320508075688772},"90":{"tf":3.3166247903554},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"6":{"4":{"df":5,"docs":{"218":{"tf":2.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"225":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"227":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}}}}},"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":2,"docs":{"219":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"90":{"tf":2.0},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"df":12,"docs":{"108":{"tf":1.0},"110":{"tf":1.7320508075688772},"219":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":4.795831523312719},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"110":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"223":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"33":{"tf":1.0},"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"211":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":2.8284271247461903},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.8284271247461903},"82":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"181":{"tf":1.0},"215":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":3.0},"63":{"tf":1.0},"67":{"tf":2.0},"75":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"96":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"18":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"102":{"tf":2.449489742783178}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"212":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"10":{"tf":1.0},"181":{"tf":1.0},"6":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"219":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"110":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":2.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":12,"docs":{"147":{"tf":1.7320508075688772},"164":{"tf":2.23606797749979},"168":{"tf":1.0},"169":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.0},"67":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":19,"docs":{"108":{"tf":1.0},"11":{"tf":2.23606797749979},"16":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"113":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":3.0},"67":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":5,"docs":{"2":{"tf":1.0},"52":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"140":{"tf":1.0},"31":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"88":{"tf":1.0}}},"3":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"233":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"166":{"tf":1.0}},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"193":{"tf":1.0}}},"df":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":{"40":{"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},"59":{"tf":1.4142135623730951},"74":{"tf":1.0},"93":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{">":{"(":{"0":{"df":3,"docs":{"87":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":2.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"141":{"tf":1.0},"147":{"tf":2.8284271247461903},"161":{"tf":1.7320508075688772},"163":{"tf":2.6457513110645907},"164":{"tf":3.3166247903554},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"178":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":2.6457513110645907},"185":{"tf":2.6457513110645907},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"198":{"tf":1.0},"219":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":3.0},"85":{"tf":2.449489742783178},"87":{"tf":3.4641016151377544},"88":{"tf":3.4641016151377544},"90":{"tf":3.7416573867739413},"98":{"tf":2.6457513110645907},"99":{"tf":1.7320508075688772}}}}},"f":{"df":0,"docs":{},"j":{"df":1,"docs":{"4":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"67":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}},"k":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}},"r":{"d":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"109":{"tf":1.0},"58":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"77":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":9,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"181":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":2.449489742783178},"8":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"w":{"df":7,"docs":{"126":{"tf":1.0},"144":{"tf":1.4142135623730951},"187":{"tf":1.0},"32":{"tf":1.4142135623730951},"87":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"166":{"tf":1.0},"22":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"87":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"58":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":2.0},"183":{"tf":1.0},"59":{"tf":1.7320508075688772},"96":{"tf":1.0}},"r":{"df":11,"docs":{"102":{"tf":2.23606797749979},"111":{"tf":1.0},"120":{"tf":1.0},"209":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"25":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"102":{"tf":3.3166247903554},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"1":{".":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":2.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":2.23606797749979},"96":{"tf":3.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"0":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"1":{".":{"7":{"3":{".":{"0":{"df":1,"docs":{"52":{"tf":1.0}}},"df":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":{"2":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"df":1,"docs":{"18":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"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":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}},"k":{"df":4,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"18":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"58":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"167":{"tf":1.0},"181":{"tf":2.23606797749979},"87":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":31,"docs":{"102":{"tf":1.0},"11":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"y":{".":{".":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"63":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.7320508075688772},"219":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.0},"36":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":7,"docs":{"113":{"tf":1.0},"147":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0}}}},"y":{"a":{"a":{"a":{"df":5,"docs":{"134":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":48,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"219":{"tf":1.4142135623730951},"233":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":3.872983346207417},"96":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":7,"docs":{"102":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"219":{"tf":1.4142135623730951},"90":{"tf":2.8284271247461903}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"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":5,"docs":{"215":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":31,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"63":{"tf":1.0},"73":{"tf":1.7320508075688772},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"85":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"[":{"8":{"3":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"6":{"8":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"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":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"102":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"142":{"tf":1.4142135623730951},"166":{"tf":1.0},"90":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"r":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"109":{"tf":1.0},"215":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"78":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"213":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"57":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"58":{"tf":1.0}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":72,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"179":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"191":{"tf":2.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":2.8284271247461903},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":4.69041575982343},"88":{"tf":2.449489742783178},"90":{"tf":2.23606797749979},"96":{"tf":4.123105625617661},"99":{"tf":1.0}},"e":{"(":{"[":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"179":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"231":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"221":{"tf":1.0},"224":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"225":{"tf":1.0},"228":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"191":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"67":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"90":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"214":{"tf":1.7320508075688772}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"179":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":2.0},"189":{"tf":2.0},"58":{"tf":1.4142135623730951},"83":{"tf":1.0},"90":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":12,"docs":{"13":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"99":{"tf":2.0}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"110":{"tf":1.0},"59":{"tf":1.7320508075688772},"93":{"tf":1.0}}}},"df":56,"docs":{"0":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"147":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":2.23606797749979},"192":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"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},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"90":{"tf":2.8284271247461903},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}}},">":{"(":{"0":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"90":{"tf":2.23606797749979}}}}}}}}}}}}}},"df":5,"docs":{"161":{"tf":3.1622776601683795},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"90":{"tf":4.358898943540674}},"i":{"d":{"df":1,"docs":{"90":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"161":{"tf":2.23606797749979},"90":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"90":{"tf":2.449489742783178}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"v":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":21,"docs":{"102":{"tf":1.0},"110":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"147":{"tf":1.0},"159":{"tf":1.4142135623730951},"163":{"tf":1.0},"219":{"tf":2.6457513110645907},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"67":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"87":{"tf":3.7416573867739413},"88":{"tf":2.0},"90":{"tf":4.358898943540674},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},">":{"(":{"0":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"111":{"tf":1.0},"192":{"tf":2.23606797749979},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"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},"50":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.449489742783178},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"140":{"tf":2.23606797749979},"141":{"tf":1.0},"159":{"tf":1.7320508075688772},"163":{"tf":1.0},"165":{"tf":3.605551275463989},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"90":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"60":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.6457513110645907},"88":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"141":{"tf":1.0},"142":{"tf":2.0},"166":{"tf":3.3166247903554},"184":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.6457513110645907},"90":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"90":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"167":{"tf":1.0},"172":{"tf":2.0},"2":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"3":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"20":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"87":{"tf":3.4641016151377544},"96":{"tf":2.449489742783178}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}},"s":{"df":2,"docs":{"58":{"tf":1.0},"66":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.7320508075688772}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"144":{"tf":1.4142135623730951},"18":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"m":{"3":{"2":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"106":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":2.6457513110645907},"58":{"tf":3.1622776601683795},"61":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"144":{"tf":1.0},"15":{"tf":1.0},"58":{"tf":1.7320508075688772},"77":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":1,"docs":{"59":{"tf":1.0}}},"v":{"df":2,"docs":{"67":{"tf":1.0},"72":{"tf":1.0}}}},"b":{"3":{"df":1,"docs":{"56":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"3":{"tf":1.0},"34":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"36":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"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":{"0":{"tf":1.0},"176":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":8,"docs":{"120":{"tf":1.0},"125":{"tf":1.0},"173":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":2.0},"25":{"tf":1.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"82":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"5":{"0":{"0":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"181":{"tf":1.0},"96":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.7320508075688772},"22":{"tf":1.0},"32":{"tf":1.7320508075688772},"67":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"54":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":97,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"l":{"d":{"df":21,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"164":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"215":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"94":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"x":{"df":3,"docs":{"23":{"tf":2.449489742783178},"3":{"tf":1.0},"8":{"tf":1.0}},"k":{"c":{"d":{"df":1,"docs":{"205":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"67":{"tf":1.0},"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":4,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":1,"docs":{"66":{"tf":1.0}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}}}}}},"title":{"root":{"1":{"2":{"8":{"df":7,"docs":{"122":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"167":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"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":{}}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"170":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"t":{"a":{"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"112":{"tf":1.0},"114":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"108":{"tf":1.0},"141":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"25":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"182":{"tf":1.0},"195":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"31":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.0}},"i":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"72":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"175":{"tf":1.0},"177":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"96":{"tf":1.0}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"103":{"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}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"29":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":11,"docs":{"10":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"193":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"169":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"107":{"tf":1.0},"192":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"110":{"tf":1.0},"146":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"108":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"205":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"72":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"v":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"10":{"tf":1.0},"71":{"tf":1.0},"82":{"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":2,"docs":{"107":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}}}}}}}},"l":{"a":{"b":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"34":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"72":{"tf":1.0},"78":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"216":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.0},"9":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"100":{"tf":1.0},"195":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"117":{"tf":1.0},"138":{"tf":1.0},"187":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"126":{"tf":1.0},"182":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"g":{"df":6,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"126":{"tf":1.0}}}},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.0}}},"df":1,"docs":{"153":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"106":{"tf":1.0},"217":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"135":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"177":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"189":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"190":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"222":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"35":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":4,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"139":{"tf":1.0},"140":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":3,"docs":{"179":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"89":{"tf":1.0}},"e":{"6":{"4":{"df":4,"docs":{"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"1":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"219":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"180":{"tf":1.0}},"r":{"df":5,"docs":{"102":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"191":{"tf":1.0},"86":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"192":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"228":{"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/docs/searchindex.json b/docs/searchindex.json index 0b27d2b6b1..c6ecc2b69a 100644 --- a/docs/searchindex.json +++ b/docs/searchindex.json @@ -1 +1 @@ -{"doc_urls":["the_azle_book.html#the-azle-book-beta","get_started.html#get-started","get_started.html#installation","get_started.html#deployment","rest_based_examples.html#examples","deployment.html#deployment","deployment.html#starting-the-local-replica","deployment.html#deploying-to-the-local-replica","deployment.html#interacting-with-your-canister","deployment.html#deploying-to-mainnet","deployment.html#common-deployment-issues","project_structure.html#project-structure-tldr","servers.html#servers-tldr","servers.html#servers","servers.html#nodejs-httpserver","servers.html#express","servers.html#jsonstringify","servers.html#server","servers.html#limitations","assets.html#assets-tldr","authentication.html#authentication-tldr","authentication.html#authentication","authentication.html#under-the-hood","debugging.html#debugging-tldr","debugging.html#debugging","debugging.html#consolelog-and-trycatch","debugging.html#canister-did-not-produce-a-response","debugging.html#no-error-message","debugging.html#final-compiled-and-bundled-javascript","limitations.html#limitations-tldr","reference_http/reference.html#reference","reference_http/autoreload.html#autoreload","reference_http/environment_variables.html#environment-variables","reference_http/environment_variables.html#azle_autoreload","reference_http/environment_variables.html#azle_dockerfile_hash","reference_http/environment_variables.html#azle_identity_storage_mode","reference_http/environment_variables.html#azle_instruction_count","reference_http/environment_variables.html#azle_proptest_num_runs","reference_http/environment_variables.html#azle_proptest_path","reference_http/environment_variables.html#azle_proptest_quiet","reference_http/environment_variables.html#azle_proptest_seed","reference_http/environment_variables.html#azle_proptest_verbose","reference_http/environment_variables.html#azle_test_fetch","reference_http/environment_variables.html#azle_use_dockerfile","reference_http/environment_variables.html#azle_verbose","reference_http/environment_variables.html#azle_wasmedge_quickjs_dir","reference_http/native_compilation.html#native-compilation-tldr","reference_http/native_compilation.html#native-compilation","candid_based_documentation.html#old-candid-based-documentation","azle.html#azle-beta","azle.html#disclaimer","azle.html#demergent-labs","azle.html#benefits-and-drawbacks","azle.html#benefits","azle.html#drawbacks","internet_computer_overview.html#internet-computer-overview","canisters_overview.html#canisters-overview","installation.html#installation","hello_world.html#hello-world","hello_world.html#quick-start","hello_world.html#methodical-start","hello_world.html#the-project-directory-and-file-structure","hello_world.html#indexts","hello_world.html#tsconfigjson","hello_world.html#dfxjson","hello_world.html#local-deployment","hello_world.html#common-deployment-issues","hello_world.html#interacting-with-your-canister-from-the-command-line","hello_world.html#interacting-with-your-canister-from-the-web-ui","deployment_candid_based.html#deployment","deployment_candid_based.html#starting-the-local-replica","deployment_candid_based.html#deploying-to-the-local-replica","deployment_candid_based.html#interacting-with-your-canister","deployment_candid_based.html#dfx-command-line","deployment_candid_based.html#dfx-web-ui","deployment_candid_based.html#dfinityagent","deployment_candid_based.html#deploying-to-mainnet","deployment_candid_based.html#common-deployment-issues","examples.html#examples","query_methods.html#query-methods","query_methods.html#tldr","update_methods.html#update-methods","update_methods.html#tldr","candid.html#candid","stable_structures.html#stable-structures","stable_structures.html#tldr","stable_structures.html#caveats","stable_structures.html#float64-values","stable_structures.html#candidtype-performance","stable_structures.html#migrations","stable_structures.html#canister","cross_canister.html#cross-canister","http.html#http","http.html#incoming-http-requests","http.html#outgoing-http-requests","management_canister.html#management-canister","canister_lifecycle.html#canister-lifecycle","timers.html#timers","cycles.html#cycles","caveats.html#caveats","caveats.html#unknown-security-vulnerabilities","caveats.html#npm-packages","caveats.html#javascript-environment-apis","caveats.html#high-candid-encodingdecoding-costs","caveats.html#promises","caveats.html#jsonparse-and-stablebtreemap-float64-values","reference/reference.html#reference","reference/bitcoin.html#bitcoin","reference/bitcoin.html#tecdsa","reference/bitcoin.html#bitcoin-integration","reference/bitcoin.html#ckbtc","reference/call_apis/call_apis.html#call-apis","reference/call_apis/accept_message.html#accept-message","reference/call_apis/arg_data_raw.html#arg-data-raw","reference/call_apis/arg_data_raw_size.html#arg-data-raw-size","reference/call_apis/call.html#call","reference/call_apis/call_raw.html#call-raw","reference/call_apis/call_raw128.html#call-raw-128","reference/call_apis/call_with_payment.html#call-with-payment","reference/call_apis/call_with_payment128.html#call-with-payment-128","reference/call_apis/caller.html#caller","reference/call_apis/method_name.html#method-name","reference/call_apis/msg_cycles_accept.html#msg-cycles-accept","reference/call_apis/msg_cycles_accept128.html#msg-cycles-accept-128","reference/call_apis/msg_cycles_available.html#msg-cycles-available","reference/call_apis/msg_cycles_available128.html#msg-cycles-available-128","reference/call_apis/msg_cycles_refunded.html#msg-cycles-refunded","reference/call_apis/msg_cycles_refunded128.html#msg-cycles-refunded-128","reference/call_apis/notify.html#notify","reference/call_apis/notify_raw.html#notify-raw","reference/call_apis/notify_with_payment_128.html#notify-with-payment-128","reference/call_apis/reject.html#reject","reference/call_apis/reject_code.html#reject-code","reference/call_apis/reject_message.html#reject-message","reference/call_apis/reply.html#reply","reference/call_apis/reply_raw.html#reply-raw","reference/candid/candid.html#candid","reference/candid/blob.html#blob","reference/candid/bool.html#bool","reference/candid/empty.html#empty","reference/candid/float32.html#float32","reference/candid/float64.html#float64","reference/candid/func.html#func","reference/candid/int.html#int","reference/candid/int8.html#int8","reference/candid/int16.html#int16","reference/candid/int32.html#int32","reference/candid/int64.html#int64","reference/candid/nat.html#nat","reference/candid/nat8.html#nat8","reference/candid/nat16.html#nat16","reference/candid/nat32.html#nat32","reference/candid/nat64.html#nat64","reference/candid/null.html#null","reference/candid/opt.html#opt","reference/candid/principal.html#principal","reference/candid/record.html#record","reference/candid/reserved.html#reserved","reference/candid/service.html#service","reference/candid/text.html#text","reference/candid/variant.html#variant","reference/candid/vec.html#vec","reference/canister_apis/canister_apis.html#canister-apis","reference/canister_apis/candid_decode.html#candid-decode","reference/canister_apis/candid_encode.html#candid-encode","reference/canister_apis/canister_balance.html#canister-balance","reference/canister_apis/canister_balance128.html#canister-balance-128","reference/canister_apis/canister_version.html#canister-version","reference/canister_apis/canister_id.html#canister-id","reference/canister_apis/data_certificate.html#data-certificate","reference/canister_apis/instruction_counter.html#instruction-counter","reference/canister_apis/is_controller.html#is-controller","reference/canister_apis/performance_counter.html#performance-counter","reference/canister_apis/print.html#print","reference/canister_apis/set_certified_data.html#set-certified-data","reference/canister_apis/time.html#time","reference/canister_apis/trap.html#trap","reference/canister_methods/canister_methods.html#canister-methods","reference/canister_methods/heartbeat.html#heartbeat","reference/canister_methods/http_request.html#http_request","reference/canister_methods/http_request_update.html#http_request","reference/canister_methods/init.html#init","reference/canister_methods/inspect_message.html#inspect-message","reference/canister_methods/post_upgrade.html#post-upgrade","reference/canister_methods/pre_upgrade.html#pre-upgrade","reference/canister_methods/query.html#query","reference/canister_methods/update.html#update","reference/environment_variables.html#environment-variables","reference/environment_variables.html#dfxjson","reference/environment_variables.html#processenv","reference/management_canister/management_canister.html#management-canister","reference/management_canister/bitcoin_get_balance.html#bitcoin_get_balance","reference/management_canister/bitcoin_get_current_fee_percentiles.html#bitcoin_get_current_fee_percentiles","reference/management_canister/bitcoin_get_utxos.html#bitcoin_get_utxos","reference/management_canister/bitcoin_send_transaction.html#bitcoin_send_transaction","reference/management_canister/canister_status.html#canister_status","reference/management_canister/create_canister.html#create_canister","reference/management_canister/delete_canister.html#delete_canister","reference/management_canister/deposit_cycles.html#deposit_cycles","reference/management_canister/ecdsa_public_key.html#ecdsa_public_key","reference/management_canister/http_request.html#http_request","reference/management_canister/install_code.html#install_code","reference/management_canister/provisional_create_canister_with_cycles.html#provisional_create_canister_with_cycles","reference/management_canister/provisional_top_up_canister.html#provisional_top_up_canister","reference/management_canister/raw_rand.html#raw_rand","reference/management_canister/sign_with_ecdsa.html#sign_with_ecdsa","reference/management_canister/start_canister.html#start_canister","reference/management_canister/stop_canister.html#stop_canister","reference/management_canister/uninstall_code.html#uninstall_code","reference/management_canister/update_settings.html#update_settings","reference/plugins.html#plugins","reference/plugins.html#local-plugin","reference/plugins.html#npm-plugin","reference/stable_memory/stable_memory.html#stable-memory","reference/stable_memory/stable_structures.html#stable-structures","reference/stable_memory/stable_bytes.html#stable-bytes","reference/stable_memory/stable_grow.html#stable-grow","reference/stable_memory/stable_read.html#stable-read","reference/stable_memory/stable_size.html#stable-size","reference/stable_memory/stable_write.html#stable-write","reference/stable_memory/stable64_grow.html#stable64-grow","reference/stable_memory/stable64_read.html#stable64-read","reference/stable_memory/stable64_size.html#stable64-size","reference/stable_memory/stable64_write.html#stable64-write","reference/timers/timers.html#timers","reference/timers/clear_timer.html#clear-timer","reference/timers/set_timer.html#set-timer","reference/timers/set_timer_interval.html#set-timer-interval","reference/wasm_binary_optimization.html#wasm-binary-optimization"],"index":{"documentStore":{"docInfo":{"0":{"body":155,"breadcrumbs":6,"title":3},"1":{"body":48,"breadcrumbs":2,"title":1},"10":{"body":75,"breadcrumbs":4,"title":3},"100":{"body":7,"breadcrumbs":8,"title":3},"101":{"body":36,"breadcrumbs":7,"title":2},"102":{"body":12,"breadcrumbs":8,"title":3},"103":{"body":27,"breadcrumbs":9,"title":4},"104":{"body":17,"breadcrumbs":6,"title":1},"105":{"body":17,"breadcrumbs":9,"title":4},"106":{"body":19,"breadcrumbs":6,"title":1},"107":{"body":15,"breadcrumbs":7,"title":1},"108":{"body":26,"breadcrumbs":7,"title":1},"109":{"body":27,"breadcrumbs":8,"title":2},"11":{"body":63,"breadcrumbs":5,"title":3},"110":{"body":30,"breadcrumbs":7,"title":1},"111":{"body":58,"breadcrumbs":9,"title":2},"112":{"body":17,"breadcrumbs":11,"title":2},"113":{"body":34,"breadcrumbs":13,"title":3},"114":{"body":36,"breadcrumbs":15,"title":4},"115":{"body":68,"breadcrumbs":9,"title":1},"116":{"body":39,"breadcrumbs":11,"title":2},"117":{"body":38,"breadcrumbs":13,"title":3},"118":{"body":47,"breadcrumbs":11,"title":2},"119":{"body":42,"breadcrumbs":13,"title":3},"12":{"body":42,"breadcrumbs":3,"title":2},"120":{"body":26,"breadcrumbs":9,"title":1},"121":{"body":46,"breadcrumbs":11,"title":2},"122":{"body":24,"breadcrumbs":13,"title":3},"123":{"body":24,"breadcrumbs":15,"title":4},"124":{"body":24,"breadcrumbs":13,"title":3},"125":{"body":24,"breadcrumbs":15,"title":4},"126":{"body":33,"breadcrumbs":13,"title":3},"127":{"body":33,"breadcrumbs":15,"title":4},"128":{"body":25,"breadcrumbs":9,"title":1},"129":{"body":28,"breadcrumbs":11,"title":2},"13":{"body":74,"breadcrumbs":2,"title":1},"130":{"body":24,"breadcrumbs":13,"title":3},"131":{"body":26,"breadcrumbs":9,"title":1},"132":{"body":25,"breadcrumbs":11,"title":2},"133":{"body":25,"breadcrumbs":11,"title":2},"134":{"body":33,"breadcrumbs":9,"title":1},"135":{"body":62,"breadcrumbs":11,"title":2},"136":{"body":25,"breadcrumbs":7,"title":1},"137":{"body":78,"breadcrumbs":8,"title":1},"138":{"body":54,"breadcrumbs":8,"title":1},"139":{"body":90,"breadcrumbs":8,"title":1},"14":{"body":47,"breadcrumbs":3,"title":2},"140":{"body":56,"breadcrumbs":8,"title":1},"141":{"body":56,"breadcrumbs":8,"title":1},"142":{"body":120,"breadcrumbs":8,"title":1},"143":{"body":56,"breadcrumbs":8,"title":1},"144":{"body":56,"breadcrumbs":8,"title":1},"145":{"body":56,"breadcrumbs":8,"title":1},"146":{"body":56,"breadcrumbs":8,"title":1},"147":{"body":56,"breadcrumbs":8,"title":1},"148":{"body":56,"breadcrumbs":8,"title":1},"149":{"body":56,"breadcrumbs":8,"title":1},"15":{"body":44,"breadcrumbs":2,"title":1},"150":{"body":56,"breadcrumbs":8,"title":1},"151":{"body":56,"breadcrumbs":8,"title":1},"152":{"body":56,"breadcrumbs":8,"title":1},"153":{"body":55,"breadcrumbs":8,"title":1},"154":{"body":79,"breadcrumbs":8,"title":1},"155":{"body":69,"breadcrumbs":8,"title":1},"156":{"body":95,"breadcrumbs":8,"title":1},"157":{"body":54,"breadcrumbs":8,"title":1},"158":{"body":100,"breadcrumbs":8,"title":1},"159":{"body":57,"breadcrumbs":8,"title":1},"16":{"body":60,"breadcrumbs":2,"title":1},"160":{"body":103,"breadcrumbs":8,"title":1},"161":{"body":90,"breadcrumbs":8,"title":1},"162":{"body":26,"breadcrumbs":9,"title":2},"163":{"body":27,"breadcrumbs":11,"title":2},"164":{"body":30,"breadcrumbs":11,"title":2},"165":{"body":25,"breadcrumbs":11,"title":2},"166":{"body":25,"breadcrumbs":13,"title":3},"167":{"body":23,"breadcrumbs":11,"title":2},"168":{"body":26,"breadcrumbs":11,"title":2},"169":{"body":35,"breadcrumbs":11,"title":2},"17":{"body":146,"breadcrumbs":2,"title":1},"170":{"body":27,"breadcrumbs":11,"title":2},"171":{"body":27,"breadcrumbs":9,"title":1},"172":{"body":19,"breadcrumbs":11,"title":2},"173":{"body":29,"breadcrumbs":9,"title":1},"174":{"body":26,"breadcrumbs":13,"title":3},"175":{"body":23,"breadcrumbs":9,"title":1},"176":{"body":35,"breadcrumbs":9,"title":1},"177":{"body":12,"breadcrumbs":9,"title":2},"178":{"body":21,"breadcrumbs":9,"title":1},"179":{"body":105,"breadcrumbs":9,"title":1},"18":{"body":43,"breadcrumbs":2,"title":1},"180":{"body":105,"breadcrumbs":9,"title":1},"181":{"body":26,"breadcrumbs":9,"title":1},"182":{"body":46,"breadcrumbs":11,"title":2},"183":{"body":19,"breadcrumbs":11,"title":2},"184":{"body":19,"breadcrumbs":11,"title":2},"185":{"body":17,"breadcrumbs":9,"title":1},"186":{"body":25,"breadcrumbs":9,"title":1},"187":{"body":25,"breadcrumbs":9,"title":2},"188":{"body":40,"breadcrumbs":8,"title":1},"189":{"body":27,"breadcrumbs":8,"title":1},"19":{"body":180,"breadcrumbs":3,"title":2},"190":{"body":20,"breadcrumbs":9,"title":2},"191":{"body":39,"breadcrumbs":9,"title":1},"192":{"body":35,"breadcrumbs":9,"title":1},"193":{"body":39,"breadcrumbs":9,"title":1},"194":{"body":44,"breadcrumbs":9,"title":1},"195":{"body":29,"breadcrumbs":9,"title":1},"196":{"body":30,"breadcrumbs":9,"title":1},"197":{"body":30,"breadcrumbs":9,"title":1},"198":{"body":32,"breadcrumbs":9,"title":1},"199":{"body":50,"breadcrumbs":9,"title":1},"2":{"body":93,"breadcrumbs":2,"title":1},"20":{"body":221,"breadcrumbs":3,"title":2},"200":{"body":56,"breadcrumbs":9,"title":1},"201":{"body":43,"breadcrumbs":9,"title":1},"202":{"body":31,"breadcrumbs":9,"title":1},"203":{"body":35,"breadcrumbs":9,"title":1},"204":{"body":27,"breadcrumbs":9,"title":1},"205":{"body":57,"breadcrumbs":9,"title":1},"206":{"body":30,"breadcrumbs":9,"title":1},"207":{"body":30,"breadcrumbs":9,"title":1},"208":{"body":30,"breadcrumbs":9,"title":1},"209":{"body":40,"breadcrumbs":9,"title":1},"21":{"body":3,"breadcrumbs":2,"title":1},"210":{"body":40,"breadcrumbs":7,"title":1},"211":{"body":9,"breadcrumbs":8,"title":2},"212":{"body":12,"breadcrumbs":8,"title":2},"213":{"body":20,"breadcrumbs":9,"title":2},"214":{"body":98,"breadcrumbs":11,"title":2},"215":{"body":19,"breadcrumbs":11,"title":2},"216":{"body":20,"breadcrumbs":11,"title":2},"217":{"body":24,"breadcrumbs":11,"title":2},"218":{"body":19,"breadcrumbs":11,"title":2},"219":{"body":24,"breadcrumbs":11,"title":2},"22":{"body":91,"breadcrumbs":3,"title":2},"220":{"body":20,"breadcrumbs":11,"title":2},"221":{"body":24,"breadcrumbs":11,"title":2},"222":{"body":19,"breadcrumbs":11,"title":2},"223":{"body":24,"breadcrumbs":11,"title":2},"224":{"body":7,"breadcrumbs":7,"title":1},"225":{"body":20,"breadcrumbs":10,"title":2},"226":{"body":42,"breadcrumbs":10,"title":2},"227":{"body":44,"breadcrumbs":12,"title":3},"228":{"body":94,"breadcrumbs":11,"title":3},"23":{"body":42,"breadcrumbs":3,"title":2},"24":{"body":28,"breadcrumbs":2,"title":1},"25":{"body":14,"breadcrumbs":3,"title":2},"26":{"body":99,"breadcrumbs":4,"title":3},"27":{"body":340,"breadcrumbs":3,"title":2},"28":{"body":54,"breadcrumbs":5,"title":4},"29":{"body":74,"breadcrumbs":3,"title":2},"3":{"body":74,"breadcrumbs":2,"title":1},"30":{"body":5,"breadcrumbs":2,"title":1},"31":{"body":106,"breadcrumbs":3,"title":1},"32":{"body":13,"breadcrumbs":5,"title":2},"33":{"body":12,"breadcrumbs":4,"title":1},"34":{"body":26,"breadcrumbs":4,"title":1},"35":{"body":3,"breadcrumbs":4,"title":1},"36":{"body":11,"breadcrumbs":4,"title":1},"37":{"body":3,"breadcrumbs":4,"title":1},"38":{"body":3,"breadcrumbs":4,"title":1},"39":{"body":3,"breadcrumbs":4,"title":1},"4":{"body":26,"breadcrumbs":2,"title":1},"40":{"body":3,"breadcrumbs":4,"title":1},"41":{"body":3,"breadcrumbs":4,"title":1},"42":{"body":3,"breadcrumbs":4,"title":1},"43":{"body":15,"breadcrumbs":4,"title":1},"44":{"body":9,"breadcrumbs":4,"title":1},"45":{"body":13,"breadcrumbs":4,"title":1},"46":{"body":19,"breadcrumbs":6,"title":3},"47":{"body":174,"breadcrumbs":5,"title":2},"48":{"body":66,"breadcrumbs":8,"title":4},"49":{"body":24,"breadcrumbs":8,"title":2},"5":{"body":42,"breadcrumbs":2,"title":1},"50":{"body":31,"breadcrumbs":7,"title":1},"51":{"body":20,"breadcrumbs":8,"title":2},"52":{"body":21,"breadcrumbs":8,"title":2},"53":{"body":866,"breadcrumbs":7,"title":1},"54":{"body":361,"breadcrumbs":7,"title":1},"55":{"body":137,"breadcrumbs":10,"title":3},"56":{"body":104,"breadcrumbs":8,"title":2},"57":{"body":93,"breadcrumbs":6,"title":1},"58":{"body":68,"breadcrumbs":8,"title":2},"59":{"body":80,"breadcrumbs":8,"title":2},"6":{"body":73,"breadcrumbs":4,"title":3},"60":{"body":0,"breadcrumbs":8,"title":2},"61":{"body":43,"breadcrumbs":10,"title":4},"62":{"body":271,"breadcrumbs":7,"title":1},"63":{"body":14,"breadcrumbs":7,"title":1},"64":{"body":19,"breadcrumbs":7,"title":1},"65":{"body":14,"breadcrumbs":8,"title":2},"66":{"body":9,"breadcrumbs":9,"title":3},"67":{"body":36,"breadcrumbs":10,"title":4},"68":{"body":44,"breadcrumbs":10,"title":4},"69":{"body":39,"breadcrumbs":6,"title":1},"7":{"body":27,"breadcrumbs":4,"title":3},"70":{"body":65,"breadcrumbs":8,"title":3},"71":{"body":12,"breadcrumbs":8,"title":3},"72":{"body":13,"breadcrumbs":7,"title":2},"73":{"body":59,"breadcrumbs":8,"title":3},"74":{"body":39,"breadcrumbs":8,"title":3},"75":{"body":21,"breadcrumbs":6,"title":1},"76":{"body":22,"breadcrumbs":7,"title":2},"77":{"body":64,"breadcrumbs":8,"title":3},"78":{"body":51,"breadcrumbs":6,"title":1},"79":{"body":0,"breadcrumbs":8,"title":2},"8":{"body":65,"breadcrumbs":3,"title":2},"80":{"body":304,"breadcrumbs":7,"title":1},"81":{"body":0,"breadcrumbs":8,"title":2},"82":{"body":483,"breadcrumbs":7,"title":1},"83":{"body":421,"breadcrumbs":6,"title":1},"84":{"body":0,"breadcrumbs":8,"title":2},"85":{"body":794,"breadcrumbs":7,"title":1},"86":{"body":0,"breadcrumbs":7,"title":1},"87":{"body":12,"breadcrumbs":8,"title":2},"88":{"body":50,"breadcrumbs":8,"title":2},"89":{"body":25,"breadcrumbs":7,"title":1},"9":{"body":28,"breadcrumbs":3,"title":2},"90":{"body":24,"breadcrumbs":7,"title":1},"91":{"body":538,"breadcrumbs":8,"title":2},"92":{"body":3,"breadcrumbs":6,"title":1},"93":{"body":102,"breadcrumbs":8,"title":3},"94":{"body":149,"breadcrumbs":8,"title":3},"95":{"body":32,"breadcrumbs":8,"title":2},"96":{"body":29,"breadcrumbs":8,"title":2},"97":{"body":163,"breadcrumbs":6,"title":1},"98":{"body":83,"breadcrumbs":6,"title":1},"99":{"body":0,"breadcrumbs":6,"title":1}},"docs":{"0":{"body":"Welcome to The Azle Book! This is a guide for building secure decentralized/replicated servers in TypeScript or JavaScript on ICP . The current replication factor is 13-40 times . Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP The Azle Book is subject to the following license and Azle's License Extension : MIT License Copyright (c) 2024 AZLE token holders (nlhft-2iaaa-aaaae-qaaua-cai) Permission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.","breadcrumbs":"The Azle Book (Beta) » The Azle Book (Beta)","id":"0","title":"The Azle Book (Beta)"},"1":{"body":"Installation Deployment Azle helps you to build secure decentralized/replicated servers in TypeScript or JavaScript on ICP . The current replication factor is 13-40 times . Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP","breadcrumbs":"Get Started » Get Started","id":"1","title":"Get Started"},"10":{"body":"If you run into an error during deployment, try the following: Ensure that you have followed the installation instructions exactly as specified in the Get Started chapter Start the whole deployment process from scratch and look for more error output by doing the following: In your replica terminal: Terminate the replica in your terminal or run dfx stop if your replica is running in the background dfx start --clean --host 127.0.0.1:8000 In your project terminal at the root directory of your project: rm -rf node_modules npm install npx azle clean AZLE_VERBOSE=true dfx deploy If the build process hangs on Waiting for VM ..., see this issue for possible fixes If the problem is still not resolved, reach out with the error output in the Discord channel","breadcrumbs":"Deployment » Common deployment issues","id":"10","title":"Common deployment issues"},"100":{"body":"Azle is a beta project. See the disclaimer for more information.","breadcrumbs":"Old Candid-based Documentation » Caveats » Unknown security vulnerabilities","id":"100","title":"Unknown security vulnerabilities"},"101":{"body":"Some npm packages will work and some will not work. It is our long-term goal to support as many npm packages as possible. There are various reasons why an npm package may not currently work, including the small Wasm binary limit of the IC and unimplemented web or Node.js APIs. Feel free to open issues if your npm package does not work in Azle.","breadcrumbs":"Old Candid-based Documentation » Caveats » npm packages","id":"101","title":"npm packages"},"102":{"body":"You may encounter various missing JavaScript environment APIs, such as those you would expect in the web or Node.js environments.","breadcrumbs":"Old Candid-based Documentation » Caveats » JavaScript environment APIs","id":"102","title":"JavaScript environment APIs"},"103":{"body":"Candid encoding/decoding is currently very unoptimized. This will most likely lead to a ~1-2 million extra fixed instruction cost for all calls. Be careful using CandidType Serializable objects with StableBTreeMap, or using any other API or data structure that engages in Candid encoding/decoding.","breadcrumbs":"Old Candid-based Documentation » Caveats » High Candid encoding/decoding costs","id":"103","title":"High Candid encoding/decoding costs"},"104":{"body":"Though promises are implemented, the underlying queue that handles asynchronous operations is very simple. This queue will not behave exactly as queues from the major JS engines.","breadcrumbs":"Old Candid-based Documentation » Caveats » Promises","id":"104","title":"Promises"},"105":{"body":"It seems to be only some float64 values cannot be successfully stored and retrieved with a StableBTreeMap using stableJson because of this bug with JSON.parse: https://github.com/bellard/quickjs/issues/206 This will also affect stand-alone usage of JSON.parse.","breadcrumbs":"Old Candid-based Documentation » Caveats » JSON.parse and StableBTreeMap float64 values","id":"105","title":"JSON.parse and StableBTreeMap float64 values"},"106":{"body":"Bitcoin Call APIs Candid Canister APIs Canister Methods Environment Variables Management Canister Plugins Stable Memory Timers Wasm Binary Optimization","breadcrumbs":"Old Candid-based Documentation » Reference » Reference","id":"106","title":"Reference"},"107":{"body":"The Internet Computer (IC) interacts with the Bitcoin blockchain through the use of tECDSA, the Bitcoin integration, and a ledger canister called ckBTC.","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » Bitcoin","id":"107","title":"Bitcoin"},"108":{"body":"tECDSA on the IC allows canisters to request access to threshold ECDSA keypairs on the tECDSA subnet. This functionality is exposed through two management canister methods: ecdsa_public_key sign_with_ecdsa The following are examples using tECDSA: basic_bitcoin threshold_ecdsa","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » tECDSA","id":"108","title":"tECDSA"},"109":{"body":"The Bitcoin integration allows canisters on the IC to interact directly with the Bitcoin network. This functionality is exposed through the following management canister methods: bitcoin_get_balance bitcoin_get_current_fee_percentiles bitcoin_get_utxos bitcoin_send_transaction The following are examples using the Bitcoin integration: basic_bitcoin bitcoin","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » Bitcoin integration","id":"109","title":"Bitcoin integration"},"11":{"body":"Your project is just a directory with a dfx.json file that points to your .ts or .js entrypoint. Here's what your directory structure might look like: hello_world/\n|\n├── dfx.json\n|\n└── src/ └── api.ts And the corresponding dfx.json file: { \"canisters\": { \"api\": { \"type\": \"custom\", \"main\": \"src/api.ts\", \"candid\": \"src/api.did\", \"candid_gen\": \"http\", \"build\": \"npx azle api\", \"wasm\": \".azle/api/api.wasm\", \"gzip\": true, \"metadata\": [ { \"name\": \"candid:service\", \"path\": \"src/api.did\" }, { \"name\": \"cdk:name\", \"content\": \"azle\" } ] } }\n} Once you have created this directory structure you can deploy to mainnet or a locally running replica by running the dfx deploy command in the same directory as your dfx.json file.","breadcrumbs":"Project Structure » Project Structure TL;DR","id":"11","title":"Project Structure TL;DR"},"110":{"body":"ckBTC is a ledger canister deployed to the IC. It follows the ICRC standard, and can be accessed easily from an Azle canister using azle/canisters/ICRC if you only need the ICRC methods. For access to the full ledger methods you will need to create your own Service for now. The following are examples using ckBTC: ckBTC","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » ckBTC","id":"110","title":"ckBTC"},"111":{"body":"accept message arg data raw arg data raw size call call raw call raw 128 call with payment call with payment 128 caller method name msg cycles accept msg cycles accept 128 msg cycles available msg cycles available 128 msg cycles refunded msg cycles refunded 128 notify notify raw notify with payment 128 reject reject code reject message reply reply raw","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » Call APIs","id":"111","title":"Call APIs"},"112":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { Canister, ic, inspectMessage } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { ic.acceptMessage(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » accept message » accept message","id":"112","title":"accept message"},"113":{"body":"This section is a work in progress. Examples: ic_api import { blob, bool, Canister, ic, int8, query, text } from 'azle'; export default Canister({ // returns the argument data as bytes. argDataRaw: query( [blob, int8, bool, text], blob, (arg1, arg2, arg3, arg4) => { return ic.argDataRaw(); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » arg data raw » arg data raw","id":"113","title":"arg data raw"},"114":{"body":"This section is a work in progress. Examples: ic_api import { blob, bool, Canister, ic, int8, nat, query, text } from 'azle'; export default Canister({ // returns the length of the argument data in bytes argDataRawSize: query( [blob, int8, bool, text], nat, (arg1, arg2, arg3, arg4) => { return ic.argDataRawSize(); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » arg data raw size » arg data raw size","id":"114","title":"arg data raw size"},"115":{"body":"This section is a work in progress. Examples: async_await bitcoin composite_queries cross_canister_calls cycles ethereum_json_rpc func_types heartbeat inline_types ledger_canister management_canister outgoing_http_requests threshold_ecdsa rejections timers tuple_types whoami import { Canister, ic, init, nat64, Principal, update } from 'azle'; const TokenCanister = Canister({ transfer: update([Principal, nat64], nat64)\n}); let tokenCanister: typeof TokenCanister; export default Canister({ init: init([], setup), postDeploy: init([], setup), payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); function setup() { tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai') );\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call » call","id":"115","title":"call"},"116":{"body":"This section is a work in progress. Examples: call_raw outgoing_http_requests import { Canister, ic, nat64, Principal, text, update } from 'azle'; export default Canister({ executeCallRaw: update( [Principal, text, text, nat64], text, async (canisterId, method, candidArgs, payment) => { const candidBytes = await ic.callRaw( canisterId, method, ic.candidEncode(candidArgs), payment ); return ic.candidDecode(candidBytes); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call raw » call raw","id":"116","title":"call raw"},"117":{"body":"This section is a work in progress. Examples: call_raw import { Canister, ic, nat, Principal, text, update } from 'azle'; export default Canister({ executeCallRaw128: update( [Principal, text, text, nat], text, async (canisterId, method, candidArgs, payment) => { const candidBytes = await ic.callRaw128( canisterId, method, ic.candidEncode(candidArgs), payment ); return ic.candidDecode(candidBytes); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call raw 128 » call raw 128","id":"117","title":"call raw 128"},"118":{"body":"This section is a work in progress. Examples: bitcoin cycles ethereum_json_rpc management_canister outgoing_http_requests threshold_ecdsa import { blob, Canister, ic, Principal, update, Void } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], Void, async (canisterId, wasmModule) => { return await ic.call(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call with payment » call with payment","id":"118","title":"call with payment"},"119":{"body":"This section is a work in progress. Examples: cycles import { blob, Canister, ic, Principal, update, Void } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], Void, async (canisterId, wasmModule) => { return await ic.call128(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call with payment 128 » call with payment 128","id":"119","title":"call with payment 128"},"12":{"body":"Just write Node.js servers like this: import { createServer } from 'http'; const server = createServer((req, res) => { res.write('Hello World!'); res.end();\n}); server.listen(); or write Express servers like this: import express, { Request } from 'express'; let db = { hello: ''\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.json(db);\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.json(db);\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » Servers TL;DR","id":"12","title":"Servers TL;DR"},"120":{"body":"This section is a work in progress. Examples: ic_api threshold_ecdsa whoami import { Canister, ic, Principal, update } from 'azle'; export default Canister({ // returns the principal of the identity that called this function caller: update([], Principal, () => { return ic.caller(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » caller » caller","id":"120","title":"caller"},"121":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { bool, Canister, ic, inspectMessage, update } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { console.log('inspectMessage called'); if (ic.methodName() === 'accessible') { ic.acceptMessage(); return; } if (ic.methodName() === 'inaccessible') { return; } throw `Method \"${ic.methodName()}\" not allowed`; }), accessible: update([], bool, () => { return true; }), inaccessible: update([], bool, () => { return false; }), alsoInaccessible: update([], bool, () => { return false; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » method name » method name","id":"121","title":"method name"},"122":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles: update([], nat64, () => { return ic.msgCyclesAccept(ic.msgCyclesAvailable() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles accept » msg cycles accept","id":"122","title":"msg cycles accept"},"123":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles128: update([], nat64, () => { return ic.msgCyclesAccept128(ic.msgCyclesAvailable128() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles accept 128 » msg cycles accept 128","id":"123","title":"msg cycles accept 128"},"124":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles: update([], nat64, () => { return ic.msgCyclesAccept(ic.msgCyclesAvailable() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles available » msg cycles available","id":"124","title":"msg cycles available"},"125":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles128: update([], nat64, () => { return ic.msgCyclesAccept128(ic.msgCyclesAvailable128() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles available 128 » msg cycles available 128","id":"125","title":"msg cycles available 128"},"126":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ // Reports the number of cycles returned from the Cycles canister sendCycles: update([], nat64, async () => { await ic.call(otherCanister.receiveCycles, { cycles: 1_000_000n }); return ic.msgCyclesRefunded(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles refunded » msg cycles refunded","id":"126","title":"msg cycles refunded"},"127":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ // Reports the number of cycles returned from the Cycles canister sendCycles128: update([], nat64, async () => { await ic.call128(otherCanister.receiveCycles128, { cycles: 1_000_000n }); return ic.msgCyclesRefunded128(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles refunded 128 » msg cycles refunded 128","id":"127","title":"msg cycles refunded 128"},"128":{"body":"This section is a work in progress. Examples: cross_canister_calls cycles import { Canister, ic, update, Void } from 'azle';\nimport { otherCanister } from './otherCanister'; export default Canister({ sendNotification: update([], Void, () => { return ic.notify(otherCanister.receiveNotification, { args: ['This is the notification'] }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify » notify","id":"128","title":"notify"},"129":{"body":"This section is a work in progress. Examples: notify_raw import { Canister, ic, Principal, update, Void } from 'azle'; export default Canister({ sendNotification: update([], Void, () => { return ic.notifyRaw( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai'), 'receiveNotification', Uint8Array.from(ic.candidEncode('()')), 0n ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify raw » notify raw","id":"129","title":"notify raw"},"13":{"body":"Node.js http.server Express Server Limitations Azle supports building HTTP servers on ICP using the Node.js http.Server class as the foundation. These servers can serve static files or act as API backends, or both. Azle currently has good but not comprehensive support for Node.js http.Server and Express . Support for other libraries like Nest are works-in-progress. Once deployed you can access your server at a URL like this locally http://bkyz2-fmaaa-aaaaa-qaaaq-cai.localhost:8000 or like this on mainnet https://bkyz2-fmaaa-aaaaa-qaaaq-cai.raw.icp0.io. You can use any HTTP client to interact with your server, such as curl, fetch, or a web browser. See the Interacting with your canister section of the deployment chapter for help in constructing your canister URL.","breadcrumbs":"Servers » Servers","id":"13","title":"Servers"},"130":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, update, Void } from 'azle';\nimport { otherCanister } from './otherCanister'; export default Canister({ sendCycles128Notify: update([], Void, () => { return ic.notify(otherCanister.receiveCycles128, { cycles: 1_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify with payment 128 » notify with payment 128","id":"130","title":"notify with payment 128"},"131":{"body":"This section is a work in progress. Examples: ic_api manual_reply rejections import { Canister, empty, ic, Manual, query, text } from 'azle'; export default Canister({ reject: query( [text], Manual(empty), (message) => { ic.reject(message); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject » reject","id":"131","title":"reject"},"132":{"body":"This section is a work in progress. Examples: rejections import { Canister, ic, RejectionCode, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ getRejectionCodeDestinationInvalid: update([], RejectionCode, async () => { await ic.call(otherCanister.method); return ic.rejectCode(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject code » reject code","id":"132","title":"reject code"},"133":{"body":"This section is a work in progress. Examples: rejections import { Canister, ic, text, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ getRejectionMessage: update([], text, async () => { await ic.call(otherCanister.method); return ic.rejectMessage(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject message » reject message","id":"133","title":"reject message"},"134":{"body":"This section is a work in progress. Examples: composite_queries manual_reply import { blob, Canister, ic, Manual, update } from 'azle'; export default Canister({ updateBlob: update( [], Manual(blob), () => { ic.reply( new Uint8Array([83, 117, 114, 112, 114, 105, 115, 101, 33]), blob ); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reply » reply","id":"134","title":"reply"},"135":{"body":"This section is a work in progress. Examples: manual_reply outgoing_http_requests import { blob, bool, Canister, ic, int, Manual, Null, Record, text, update, Variant\n} from 'azle'; const Options = Variant({ High: Null, Medium: Null, Low: Null\n}); export default Canister({ replyRaw: update( [], Manual( Record({ int: int, text: text, bool: bool, blob: blob, variant: Options }) ), () => { ic.replyRaw( ic.candidEncode( '(record { \"int\" = 42; \"text\" = \"text\"; \"bool\" = true; \"blob\" = blob \"Surprise!\"; \"variant\" = variant { Medium } })' ) ); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reply raw » reply raw","id":"135","title":"reply raw"},"136":{"body":"blob bool empty float32 float64 func int int8 int16 int32 int64 nat nat8 nat16 nat32 nat64 null opt principal record reserved service text variant vec","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » Candid","id":"136","title":"Candid"},"137":{"body":"The CandidType object blob corresponds to the Candid type blob , is inferred to be a TypeScript Uint8Array and will be decoded into a JavaScript Uint8Array at runtime. TypeScript or JavaScript: import { blob, Canister, query } from 'azle'; export default Canister({ getBlob: query([], blob, () => { return Uint8Array.from([68, 73, 68, 76, 0, 0]); }), printBlob: query([blob], blob, (blob) => { console.log(typeof blob); return blob; })\n}); Candid: service : () -> { getBlob : () -> (vec nat8) query; printBlob : (vec nat8) -> (vec nat8) query;\n} dfx: dfx canister call candid_canister printBlob '(vec { 68; 73; 68; 76; 0; 0; })'\n(blob \"DIDL\\00\\00\") dfx canister call candid_canister printBlob '(blob \"DIDL\\00\\00\")'\n(blob \"DIDL\\00\\00\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » blob » blob","id":"137","title":"blob"},"138":{"body":"The CandidType object bool corresponds to the Candid type bool , is inferred to be a TypeScript boolean, and will be decoded into a JavaScript Boolean at runtime. TypeScript or JavaScript: import { bool, Canister, query } from 'azle'; export default Canister({ getBool: query([], bool, () => { return true; }), printBool: query([bool], bool, (bool) => { console.log(typeof bool); return bool; })\n}); Candid: service : () -> { getBool : () -> (bool) query; printBool : (bool) -> (bool) query;\n} dfx: dfx canister call candid_canister printBool '(true)'\n(true)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » bool » bool","id":"138","title":"bool"},"139":{"body":"The CandidType object empty corresponds to the Candid type empty , is inferred to be a TypeScript never, and has no JavaScript value at runtime. TypeScript or JavaScript: import { Canister, empty, query } from 'azle'; export default Canister({ getEmpty: query([], empty, () => { throw 'Anything you want'; }), // Note: It is impossible to call this function because it requires an argument // but there is no way to pass an \"empty\" value as an argument. printEmpty: query([empty], empty, (empty) => { console.log(typeof empty); throw 'Anything you want'; })\n}); Candid: service : () -> { getEmpty : () -> (empty) query; printEmpty : (empty) -> (empty) query;\n} dfx: dfx canister call candid_canister printEmpty '(\"You can put anything here\")'\nError: Failed to create argument blob.\nCaused by: Failed to create argument blob. Invalid data: Unable to serialize Candid values: type mismatch: \"You can put anything here\" cannot be of type empty","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » empty » empty","id":"139","title":"empty"},"14":{"body":"Azle supports instances of Node.js http.Server . listen() must be called on the server instance for Azle to use it to handle HTTP requests. Azle does not respect a port being passed into listen(). The port is set by the ICP replica (e.g. dfx start --host 127.0.0.1:8000), not by Azle. Here's an example of a very simple Node.js http.Server : import { createServer } from 'http'; const server = createServer((req, res) => { res.write('Hello World!'); res.end();\n}); server.listen();","breadcrumbs":"Servers » Node.js http.server","id":"14","title":"Node.js http.server"},"140":{"body":"The CandidType object float32 corresponds to the Candid type float32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, float32, query } from 'azle'; export default Canister({ getFloat32: query([], float32, () => { return Math.PI; }), printFloat32: query([float32], float32, (float32) => { console.log(typeof float32); return float32; })\n}); Candid: service : () -> { getFloat32 : () -> (float32) query; printFloat32 : (float32) -> (float32) query;\n} dfx: dfx canister call candid_canister printFloat32 '(3.1415927 : float32)'\n(3.1415927 : float32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » float32 » float32","id":"140","title":"float32"},"141":{"body":"The CandidType object float64 corresponds to the Candid type float64 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, float64, query } from 'azle'; export default Canister({ getFloat64: query([], float64, () => { return Math.E; }), printFloat64: query([float64], float64, (float64) => { console.log(typeof float64); return float64; })\n}); Candid: service : () -> { getFloat64 : () -> (float64) query; printFloat64 : (float64) -> (float64) query;\n} dfx: dfx canister call candid_canister printFloat64 '(2.718281828459045 : float64)'\n(2.718281828459045 : float64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » float64 » float64","id":"141","title":"float64"},"142":{"body":"Values created by the CandidType function Func correspond to the Candid type func , are inferred to be TypeScript [Principal, string] tuples, and will be decoded into JavaScript array with two elements at runtime. The first element is an @dfinity/principal and the second is a JavaScript string . The @dfinity/principal represents the principal of the canister/service where the function exists, and the string represents the function's name. A func acts as a callback, allowing the func receiver to know which canister instance and method must be used to call back. TypeScript or JavaScript: import { Canister, Func, Principal, query, text } from 'azle'; const BasicFunc = Func([text], text, 'query'); export default Canister({ getBasicFunc: query([], BasicFunc, () => { return [ Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'), 'getBasicFunc' ]; }), printBasicFunc: query([BasicFunc], BasicFunc, (basicFunc) => { console.log(typeof basicFunc); return basicFunc; })\n}); Candid: service : () -> { getBasicFunc : () -> (func (text) -> (text) query) query; printBasicFunc : (func (text) -> (text) query) -> ( func (text) -> (text) query, ) query;\n} dfx: dfx canister call candid_canister printBasicFunc '(func \"r7inp-6aaaa-aaaaa-aaabq-cai\".getBasicFunc)'\n(func \"r7inp-6aaaa-aaaaa-aaabq-cai\".getBasicFunc)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » func » func","id":"142","title":"func"},"143":{"body":"The CandidType object int corresponds to the Candid type int , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, int, query } from 'azle'; export default Canister({ getInt: query([], int, () => { return 170_141_183_460_469_231_731_687_303_715_884_105_727n; }), printInt: query([int], int, (int) => { console.log(typeof int); return int; })\n}); Candid: service : () -> { getInt : () -> (int) query; printInt : (int) -> (int) query;\n} dfx: dfx canister call candid_canister printInt '(170_141_183_460_469_231_731_687_303_715_884_105_727 : int)'\n(170_141_183_460_469_231_731_687_303_715_884_105_727 : int)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int » int","id":"143","title":"int"},"144":{"body":"The CandidType object int8 corresponds to the Candid type int8 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int8, query } from 'azle'; export default Canister({ getInt8: query([], int8, () => { return 127; }), printInt8: query([int8], int8, (int8) => { console.log(typeof int8); return int8; })\n}); Candid: service : () -> { getInt8 : () -> (int8) query; printInt8 : (int8) -> (int8) query;\n} dfx: dfx canister call candid_canister printInt8 '(127 : int8)'\n(127 : int8)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int8 » int8","id":"144","title":"int8"},"145":{"body":"The CandidType object int16 corresponds to the Candid type int16 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int16, query } from 'azle'; export default Canister({ getInt16: query([], int16, () => { return 32_767; }), printInt16: query([int16], int16, (int16) => { console.log(typeof int16); return int16; })\n}); Candid: service : () -> { getInt16 : () -> (int16) query; printInt16 : (int16) -> (int16) query;\n} dfx: dfx canister call candid_canister printInt16 '(32_767 : int16)'\n(32_767 : int16)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int16 » int16","id":"145","title":"int16"},"146":{"body":"The CandidType object int32 corresponds to the Candid type int32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int32, query } from 'azle'; export default Canister({ getInt32: query([], int32, () => { return 2_147_483_647; }), printInt32: query([int32], int32, (int32) => { console.log(typeof int32); return int32; })\n}); Candid: service : () -> { getInt32 : () -> (int32) query; printInt32 : (int32) -> (int32) query;\n} dfx: dfx canister call candid_canister printInt32 '(2_147_483_647 : int32)'\n(2_147_483_647 : int32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int32 » int32","id":"146","title":"int32"},"147":{"body":"The CandidType object int64 corresponds to the Candid type int64 , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, int64, query } from 'azle'; export default Canister({ getInt64: query([], int64, () => { return 9_223_372_036_854_775_807n; }), printInt64: query([int64], int64, (int64) => { console.log(typeof int64); return int64; })\n}); Candid: service : () -> { getInt64 : () -> (int64) query; printInt64 : (int64) -> (int64) query;\n} dfx: dfx canister call candid_canister printInt64 '(9_223_372_036_854_775_807 : int64)'\n(9_223_372_036_854_775_807 : int64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int64 » int64","id":"147","title":"int64"},"148":{"body":"The CandidType object nat corresponds to the Candid type nat , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, nat, query } from 'azle'; export default Canister({ getNat: query([], nat, () => { return 340_282_366_920_938_463_463_374_607_431_768_211_455n; }), printNat: query([nat], nat, (nat) => { console.log(typeof nat); return nat; })\n}); Candid: service : () -> { getNat : () -> (nat) query; printNat : (nat) -> (nat) query;\n} dfx: dfx canister call candid_canister printNat '(340_282_366_920_938_463_463_374_607_431_768_211_455 : nat)'\n(340_282_366_920_938_463_463_374_607_431_768_211_455 : nat)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat » nat","id":"148","title":"nat"},"149":{"body":"The CandidType object nat8 corresponds to the Candid type nat8 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat8, query } from 'azle'; export default Canister({ getNat8: query([], nat8, () => { return 255; }), printNat8: query([nat8], nat8, (nat8) => { console.log(typeof nat8); return nat8; })\n}); Candid: service : () -> { getNat8 : () -> (nat8) query; printNat8 : (nat8) -> (nat8) query;\n} dfx: dfx canister call candid_canister printNat8 '(255 : nat8)'\n(255 : nat8)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat8 » nat8","id":"149","title":"nat8"},"15":{"body":"Express is one of the most popular backend JavaScript web frameworks, and it's the recommended way to get started building servers in Azle. Here's the main code from the hello_world example : import express, { Request } from 'express'; let db = { hello: ''\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.json(db);\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.json(db);\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » Express","id":"15","title":"Express"},"150":{"body":"The CandidType object nat16 corresponds to the Candid type nat16 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat16, query } from 'azle'; export default Canister({ getNat16: query([], nat16, () => { return 65_535; }), printNat16: query([nat16], nat16, (nat16) => { console.log(typeof nat16); return nat16; })\n}); Candid: service : () -> { getNat16 : () -> (nat16) query; printNat16 : (nat16) -> (nat16) query;\n} dfx: dfx canister call candid_canister printNat16 '(65_535 : nat16)'\n(65_535 : nat16)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat16 » nat16","id":"150","title":"nat16"},"151":{"body":"The CandidType object nat32 corresponds to the Candid type nat32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat32, query } from 'azle'; export default Canister({ getNat32: query([], nat32, () => { return 4_294_967_295; }), printNat32: query([nat32], nat32, (nat32) => { console.log(typeof nat32); return nat32; })\n}); Candid: service : () -> { getNat32 : () -> (nat32) query; printNat32 : (nat32) -> (nat32) query;\n} dfx: dfx canister call candid_canister printNat32 '(4_294_967_295 : nat32)'\n(4_294_967_295 : nat32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat32 » nat32","id":"151","title":"nat32"},"152":{"body":"The CandidType object nat64 corresponds to the Candid type nat64 , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, nat64, query } from 'azle'; export default Canister({ getNat64: query([], nat64, () => { return 18_446_744_073_709_551_615n; }), printNat64: query([nat64], nat64, (nat64) => { console.log(typeof nat64); return nat64; })\n}); Candid: service : () -> { getNat64 : () -> (nat64) query; printNat64 : (nat64) -> (nat64) query;\n} dfx: dfx canister call candid_canister printNat64 '(18_446_744_073_709_551_615 : nat64)'\n(18_446_744_073_709_551_615 : nat64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat64 » nat64","id":"152","title":"nat64"},"153":{"body":"The CandidType object null corresponds to the Candid type null , is inferred to be a TypeScript null, and will be decoded into a JavaScript null at runtime. TypeScript or JavaScript: import { Canister, Null, query } from 'azle'; export default Canister({ getNull: query([], Null, () => { return null; }), printNull: query([Null], Null, (null_) => { console.log(typeof null_); return null_; })\n}); Candid: service : () -> { getNull : () -> (null) query; printNull : (null) -> (null) query;\n} dfx: dfx canister call candid_canister printNull '(null)'\n(null : null)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » null » null","id":"153","title":"null"},"154":{"body":"The CandidType object Opt corresponds to the Candid type opt , is inferred to be a TypeScript Opt, and will be decoded into a JavaScript Object at runtime. It is a variant with Some and None cases. At runtime if the value of the variant is Some, the Some property of the variant object will have a value of the enclosed Opt type at runtime. TypeScript or JavaScript: import { bool, Canister, None, Opt, query, Some } from 'azle'; export default Canister({ getOptSome: query([], Opt(bool), () => { return Some(true); // equivalent to { Some: true } }), getOptNone: query([], Opt(bool), () => { return None; //equivalent to { None: null} })\n}); Candid: service : () -> { getOptNone : () -> (opt bool) query; getOptSome : () -> (opt bool) query;\n} dfx: dfx canister call candid_canister getOptSome\n(opt true) dfx canister call candid_canister getOptNone\n(null)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » opt » opt","id":"154","title":"opt"},"155":{"body":"The CandidType object Principal corresponds to the Candid type principal , is inferred to be a TypeScript @dfinity/principal Principal, and will be decoded into an @dfinity/principal Principal at runtime. TypeScript or JavaScript: import { Canister, Principal, query } from 'azle'; export default Canister({ getPrincipal: query([], Principal, () => { return Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'); }), printPrincipal: query([Principal], Principal, (principal) => { console.log(typeof principal); return principal; })\n}); Candid: service : () -> { getPrincipal : () -> (principal) query; printPrincipal : (principal) -> (principal) query;\n} dfx: dfx canister call candid_canister printPrincipal '(principal \"rrkah-fqaaa-aaaaa-aaaaq-cai\")'\n(principal \"rrkah-fqaaa-aaaaa-aaaaq-cai\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » principal » principal","id":"155","title":"principal"},"156":{"body":"Objects created by the CandidType function Record correspond to the Candid record type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The shape of the object will match the object literal passed to the Record function. TypeScript or JavaScript: import { Canister, Principal, query, Record, text } from 'azle'; const User = Record({ id: Principal, username: text\n}); export default Canister({ getUser: query([], User, () => { return { id: Principal.fromUint8Array(Uint8Array.from([0])), username: 'lastmjs' }; }), printUser: query([User], User, (user) => { console.log(typeof user); return user; })\n}); Candid: type User = record { id : principal; username : text };\nservice : () -> { getUser : () -> (User) query; printUser : (User) -> (User) query;\n} dfx: dfx canister call candid_canister printUser '(record { id = principal \"2ibo7-dia\"; username = \"lastmjs\" })'\n(record { id = principal \"2ibo7-dia\"; username = \"lastmjs\" })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » record » record","id":"156","title":"record"},"157":{"body":"The CandidType object reserved corresponds to the Candid type reserved , is inferred to be a TypeScript any, and will be decoded into a JavaScript null at runtime. TypeScript or JavaScript: import { Canister, query, reserved } from 'azle'; export default Canister({ getReserved: query([], reserved, () => { return 'anything'; }), printReserved: query([reserved], reserved, (reserved) => { console.log(typeof reserved); return reserved; })\n}); Candid: service : () -> { getReserved : () -> (reserved) query; printReserved : (reserved) -> (reserved) query;\n} dfx: dfx canister call candid_canister printReserved '(null)'\n(null : reserved)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » reserved » reserved","id":"157","title":"reserved"},"158":{"body":"Values created by the CandidType function Canister correspond to the Candid service type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The properties of this object that match the keys of the service's query and update methods can be passed into ic.call and ic.notify to perform cross-canister calls. TypeScript or JavaScript: import { bool, Canister, ic, Principal, query, text, update } from 'azle'; const SomeCanister = Canister({ query1: query([], bool), update1: update([], text)\n}); export default Canister({ getService: query([], SomeCanister, () => { return SomeCanister(Principal.fromText('aaaaa-aa')); }), callService: update([SomeCanister], text, (service) => { return ic.call(service.update1); })\n}); Candid: type ManualReply = variant { Ok : text; Err : text };\nservice : () -> { callService : ( service { query1 : () -> (bool) query; update1 : () -> (text) }, ) -> (ManualReply); getService : () -> ( service { query1 : () -> (bool) query; update1 : () -> (text) }, ) query;\n} dfx: dfx canister call candid_canister getService\n(service \"aaaaa-aa\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » service » service","id":"158","title":"service"},"159":{"body":"The CandidType object text corresponds to the Candid type text , is inferred to be a TypeScript string, and will be decoded into a JavaScript String at runtime. TypeScript or JavaScript: import { Canister, query, text } from 'azle'; export default Canister({ getString: query([], text, () => { return 'Hello world!'; }), printString: query([text], text, (string) => { console.log(typeof string); return string; })\n}); Candid: service : () -> { getString : () -> (text) query; printString : (text) -> (text) query;\n} dfx: dfx canister call candid_canister printString '(\"Hello world!\")'\n(\"Hello world!\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » text » text","id":"159","title":"text"},"16":{"body":"When working with res.json you may run into errors because of attempting to send back JavaScript objects that are not strictly JSON. This can happen when trying to send back an object with a BigInt for example. Azle has created a special function called jsonStringify that will serialize many ICP-specific data structures to JSON for you: import { jsonStringify } from 'azle';\nimport express, { Request } from 'express'; let db = { bigInt: 0n\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.send(jsonStringify(db));\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.send(jsonStringify(db));\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » jsonStringify","id":"16","title":"jsonStringify"},"160":{"body":"Objects created by the CandidType function Variant correspond to the Candid variant type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The shape of the object will match the object literal passed to the Variant function, however it will contain only one of the enumerated properties. TypeScript or JavaScript: import { Canister, Null, query, Variant } from 'azle'; const Emotion = Variant({ Happy: Null, Indifferent: Null, Sad: Null\n}); const Reaction = Variant({ Fire: Null, ThumbsUp: Null, Emotion: Emotion\n}); export default Canister({ getReaction: query([], Reaction, () => { return { Fire: null }; }), printReaction: query([Reaction], Reaction, (reaction) => { console.log(typeof reaction); return reaction; })\n}); Candid: type Emotion = variant { Sad; Indifferent; Happy };\ntype Reaction = variant { Emotion : Emotion; Fire; ThumbsUp };\nservice : () -> { getReaction : () -> (Reaction) query; printReaction : (Reaction) -> (Reaction) query;\n} dfx: dfx canister call candid_canister printReaction '(variant { Fire })'\n(variant { Fire })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » variant » variant","id":"160","title":"variant"},"161":{"body":"The CandidType object Vec corresponds to the Candid type vec , is inferred to be a TypeScript T[], and will be decoded into a JavaScript array of the specified type at runtime (except for Vec which will become a Uint8Array, thus it is recommended to use the blob type instead of Vec). TypeScript or JavaScript: import { Canister, int32, Vec, query } from 'azle'; export default Canister({ getNumbers: query([], Vec(int32), () => { return [0, 1, 2, 3]; }), printNumbers: query([Vec(int32)], Vec(int32), (numbers) => { console.log(typeof numbers); return numbers; })\n}); Candid: service : () -> { getNumbers : () -> (vec int32) query; printNumbers : (vec int32) -> (vec int32) query;\n} dfx: dfx canister call candid_canister printNumbers '(vec { 0 : int32; 1 : int32; 2 : int32; 3 : int32 })'\n(vec { 0 : int32; 1 : int32; 2 : int32; 3 : int32 })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » vec » vec","id":"161","title":"vec"},"162":{"body":"candid decode candid encode canister balance canister balance 128 canister version canister id data certificate instruction counter is controller performance counter print set certified data time trap","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » Canister APIs","id":"162","title":"Canister APIs"},"163":{"body":"This section is a work in progress. Examples: call_raw candid_encoding import { blob, Canister, ic, query, text } from 'azle'; export default Canister({ // decodes Candid bytes to a Candid string candidDecode: query([blob], text, (candidEncoded) => { return ic.candidDecode(candidEncoded); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » candid decode » candid decode","id":"163","title":"candid decode"},"164":{"body":"This section is a work in progress. Examples: call_raw candid_encoding manual_reply notify_raw outgoing_http_requests import { blob, Canister, ic, query, text } from 'azle'; export default Canister({ // encodes a Candid string to Candid bytes candidEncode: query([text], blob, (candidString) => { return ic.candidEncode(candidString); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » candid encode » candid encode","id":"164","title":"candid encode"},"165":{"body":"This section is a work in progress. Examples: cycles ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the amount of cycles available in the canister canisterBalance: query([], nat64, () => { return ic.canisterBalance(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister balance » canister balance","id":"165","title":"canister balance"},"166":{"body":"This section is a work in progress. Examples: cycles ic_api import { Canister, ic, nat, query } from 'azle'; export default Canister({ // returns the amount of cycles available in the canister canisterBalance128: query([], nat, () => { return ic.canisterBalance128(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister balance 128 » canister balance 128","id":"166","title":"canister balance 128"},"167":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the canister's version number canisterVersion: query([], nat64, () => { return ic.canisterVersion(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister version » canister version","id":"167","title":"canister version"},"168":{"body":"This section is a work in progress. Examples: ethereum_json_rpc ic_api http_counter outgoing_http_requests whoami import { Canister, ic, Principal, query } from 'azle'; export default Canister({ // returns this canister's id id: query([], Principal, () => { return ic.id(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister id » canister id","id":"168","title":"canister id"},"169":{"body":"This section is a work in progress. Examples: ic_api import { blob, Canister, ic, Opt, query } from 'azle'; export default Canister({ // When called from a query call, returns the data certificate // authenticating certified_data set by this canister. Returns None if not // called from a query call. dataCertificate: query([], Opt(blob), () => { return ic.dataCertificate(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » data certificate » data certificate","id":"169","title":"data certificate"},"17":{"body":"If you need to add canister methods to your HTTP server, the Server function imported from azle allows you to do so. Here's an example of a very simple HTTP server: import { Server } from 'azle';\nimport express from 'express'; export default Server(() => { const app = express(); app.get('/http-query', (_req, res) => { res.send('http-query-server'); }); app.post('/http-update', (_req, res) => { res.send('http-update-server'); }); return app.listen();\n}); You can add canister methods like this: import { query, Server, text, update } from 'azle';\nimport express from 'express'; export default Server( () => { const app = express(); app.get('/http-query', (_req, res) => { res.send('http-query-server'); }); app.post('/http-update', (_req, res) => { res.send('http-update-server'); }); return app.listen(); }, { candidQuery: query([], text, () => { return 'candidQueryServer'; }), candidUpdate: update([], text, () => { return 'candidUpdateServer'; }) }\n); The default export of your main module must be the result of calling Server, and the callback argument to Server must return a Node.js http.Server . The main module is specified by the main property of your project's dfx.json file . The dfx.json file must be at the root directory of your project. The callback argument to Server can be asynchronous: import { Server } from 'azle';\nimport { createServer } from 'http'; export default Server(async () => { const message = await asynchronousHelloWorld(); return createServer((req, res) => { res.write(message); res.end(); });\n}); async function asynchronousHelloWorld() { // do some asynchronous task return 'Hello World Asynchronous!';\n}","breadcrumbs":"Servers » Server","id":"17","title":"Server"},"170":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // Returns the number of instructions that the canister executed since the // last entry point. instructionCounter: query([], nat64, () => { return ic.instructionCounter(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » instruction counter » instruction counter","id":"170","title":"instruction counter"},"171":{"body":"This section is a work in progress. Examples: ic_api import { bool, Canister, ic, Principal, query } from 'azle'; export default Canister({ // determines whether the given principal is a controller of the canister isController: query([Principal], bool, (principal) => { return ic.isController(principal); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » is controller » is controller","id":"171","title":"is controller"},"172":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ performanceCounter: query([], nat64, () => { return ic.performanceCounter(0); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » performance counter » performance counter","id":"172","title":"performance counter"},"173":{"body":"This section is a work in progress. Examples: ic_api null_example import { bool, Canister, ic, query, text } from 'azle'; export default Canister({ // prints a message through the local replica's output print: query([text], bool, (message) => { ic.print(message); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » print » print","id":"173","title":"print"},"174":{"body":"This section is a work in progress. Examples: ic_api import { blob, Canister, ic, update, Void } from 'azle'; export default Canister({ // sets up to 32 bytes of certified data setCertifiedData: update([blob], Void, (data) => { ic.setCertifiedData(data); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » set certified data » set certified data","id":"174","title":"set certified data"},"175":{"body":"This section is a work in progress. Examples: audio_recorder ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the current timestamp time: query([], nat64, () => { return ic.time(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » time » time","id":"175","title":"time"},"176":{"body":"This section is a work in progress. Examples: cross_canister_calls ethereum_json_rpc http_counter ic_api outgoing_http_requests threshold_ecdsa import { bool, Canister, ic, query, text } from 'azle'; export default Canister({ // traps with a message, stopping execution and discarding all state within the call trap: query([text], bool, (message) => { ic.trap(message); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » trap » trap","id":"176","title":"trap"},"177":{"body":"heartbeat http_request http_request_update init inspect message post upgrade pre upgrade query update","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » Canister Methods","id":"177","title":"Canister Methods"},"178":{"body":"This section is a work in progress. Examples: heartbeat run_time_errors import { Canister, heartbeat } from 'azle'; export default Canister({ heartbeat: heartbeat(() => { console.log('this runs ~1 time per second'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » heartbeat » heartbeat","id":"178","title":"heartbeat"},"179":{"body":"This section is a work in progress. Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, query, Record, text, Tuple, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request: query([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » http_request » http_request","id":"179","title":"http_request"},"18":{"body":"For a deeper understanding of possible limitations you may want to refer to The HTTP Gateway Protocol Specification . The top-level route /api is currently reserved by the replica locally The Transfer-Encoding header is not supported gzip responses most likely do not work HTTP requests are generally limited to ~2 MiB HTTP responses are generally limited to ~3 MiB You cannot set HTTP status codes in the 1xx range","breadcrumbs":"Servers » Limitations","id":"18","title":"Limitations"},"180":{"body":"This section is a work in progress. Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, Record, text, Tuple, update, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request_update: update([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » http_request_update » http_request","id":"180","title":"http_request"},"181":{"body":"This section is a work in progress. Examples: ethereum_json_rpc func_types init persistent-storage pre_and_post_upgrade whoami import { Canister, init } from 'azle'; export default Canister({ init: init([], () => { console.log('This runs once when the canister is first initialized'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » init » init","id":"181","title":"init"},"182":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { bool, Canister, ic, inspectMessage, update } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { console.log('inspectMessage called'); if (ic.methodName() === 'accessible') { ic.acceptMessage(); return; } if (ic.methodName() === 'inaccessible') { return; } throw `Method \"${ic.methodName()}\" not allowed`; }), accessible: update([], bool, () => { return true; }), inaccessible: update([], bool, () => { return false; }), alsoInaccessible: update([], bool, () => { return false; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » inspect message » inspect message","id":"182","title":"inspect message"},"183":{"body":"This section is a work in progress. Examples: pre_and_post_upgrade whoami import { Canister, postUpgrade } from 'azle'; export default Canister({ postUpgrade: postUpgrade([], () => { console.log('This runs after every canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » post upgrade » post upgrade","id":"183","title":"post upgrade"},"184":{"body":"This section is a work in progress. Examples: pre_and_post_upgrade import { Canister, preUpgrade } from 'azle'; export default Canister({ preUpgrade: preUpgrade(() => { console.log('This runs before every canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » pre upgrade » pre upgrade","id":"184","title":"pre upgrade"},"185":{"body":"This section is a work in progress. import { Canister, query, text } from 'azle'; export default Canister({ simpleQuery: query([], text, () => { return 'This is a query method'; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » query » query","id":"185","title":"query"},"186":{"body":"This section is a work in progress. import { Canister, query, text, update, Void } from 'azle'; let message = ''; export default Canister({ getMessage: query([], text, () => { return message; }), setMessage: update([text], Void, (newMessage) => { message = newMessage; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » update » update","id":"186","title":"update"},"187":{"body":"You can provide environment variables to Azle canisters by specifying their names in your dfx.json file and then using the process.env object in Azle. Be aware that the environment variables that you specify in your dfx.json file will be included in plain text in your canister's Wasm binary.","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » Environment Variables","id":"187","title":"Environment Variables"},"188":{"body":"Modify your dfx.json file with the env property to specify which environment variables you would like included in your Azle canister's binary. In this case, CANISTER1_PRINCIPAL and CANISTER2_PRINCIPAL will be included: { \"canisters\": { \"canister1\": { \"type\": \"custom\", \"main\": \"src/canister1/index.ts\", \"build\": \"npx azle canister1\", \"candid\": \"src/canister1/index.did\", \"wasm\": \".azle/canister1/canister1.wasm\", \"gzip\": true, \"declarations\": { \"output\": \"test/dfx_generated/canister1\", \"node_compatibility\": true }, \"env\": [\"CANISTER1_PRINCIPAL\", \"CANISTER2_PRINCIPAL\"] } }\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » dfx.json","id":"188","title":"dfx.json"},"189":{"body":"You can access the specified environment variables in Azle like so: import { Canister, query, text } from 'azle'; export default Canister({ canister1PrincipalEnvVar: query([], text, () => { return ( process.env.CANISTER1_PRINCIPAL ?? 'process.env.CANISTER1_PRINCIPAL is undefined' ); }), canister2PrincipalEnvVar: query([], text, () => { return ( process.env.CANISTER2_PRINCIPAL ?? 'process.env.CANISTER2_PRINCIPAL is undefined' ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » process.env","id":"189","title":"process.env"},"19":{"body":"You can automatically copy static assets (essentially files and folders) into your canister's filesystem during deploy by using the assets, assets_large and build_assets properties of the canister object in your project's dfx.json file. Here's an example that copies the src/frontend/dist directory on the deploying machine into the dist directory of the canister, using the assets and build_assets properties: { \"canisters\": { \"backend\": { \"type\": \"custom\", \"main\": \"src/backend/index.ts\", \"candid\": \"src/backend/index.did\", \"candid_gen\": \"http\", \"build\": \"npx azle backend\", \"wasm\": \".azle/backend/backend.wasm\", \"gzip\": true, \"assets\": [[\"src/frontend/dist\", \"dist\"]], \"build_assets\": \"npm run build\", \"metadata\": [ { \"name\": \"candid:service\", \"path\": \"src/backend/index.did\" }, { \"name\": \"cdk:name\", \"content\": \"azle\" } ] } }\n} The assets property is an array of tuples, where the first element of the tuple is the source directory on the deploying machine, and the second element of the tuple is the destination directory in the canister. Use assets for total assets under ~90 MiB in size. The build_assets property allows you to specify custom terminal commands that will run before Azle copies the assets into the canister. You can use build_assets to build your frontend code for example. In this case we are running npm run build, which refers to an npm script that we have specified in our package.json file. There is also an assets_large property that works similarly to the assets property, but allows for total assets up to ~2 GiB in size. We are working on increasing this limit further. Once you have loaded assets into your canister, they are accessible from that canister's filesystem. Here's an example of using the Express static middleware to serve a frontend from the canister's filesystem: import express from 'express'; const app = express(); app.use(express.static('/dist')); app.listen(); Assuming the /dist directory in the canister has an appropriate index.html file, this canister would serve a frontend at its URL when loaded in a web browser.","breadcrumbs":"Assets » Assets TL;DR","id":"19","title":"Assets TL;DR"},"190":{"body":"bitcoin_get_balance bitcoin_get_current_fee_percentiles bitcoin_get_utxos bitcoin_send_transaction canister_info canister_status create_canister delete_canister deposit_cycles ecdsa_public_key http_request install_code provisional_create_canister_with_cycles provisional_top_up_canister raw_rand sign_with_ecdsa start_canister stop_canister uninstall_code update_settings","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » Management Canister","id":"190","title":"Management Canister"},"191":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, None, text, update } from 'azle';\nimport { managementCanister, Satoshi } from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getBalance: update([text], Satoshi, async (address) => { return await ic.call(managementCanister.bitcoin_get_balance, { args: [ { address, min_confirmations: None, network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_balance » bitcoin_get_balance","id":"191","title":"bitcoin_get_balance"},"192":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, update, Vec } from 'azle';\nimport { managementCanister, MillisatoshiPerByte\n} from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getCurrentFeePercentiles: update([], Vec(MillisatoshiPerByte), async () => { return await ic.call( managementCanister.bitcoin_get_current_fee_percentiles, { args: [ { network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST } ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_current_fee_percentiles » bitcoin_get_current_fee_percentiles","id":"192","title":"bitcoin_get_current_fee_percentiles"},"193":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, None, text, update } from 'azle';\nimport { GetUtxosResult, managementCanister } from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getUtxos: update([text], GetUtxosResult, async (address) => { return await ic.call(managementCanister.bitcoin_get_utxos, { args: [ { address, filter: None, network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_utxos » bitcoin_get_utxos","id":"193","title":"bitcoin_get_utxos"},"194":{"body":"This section is a work in progress. Examples: import { blob, bool, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const BITCOIN_BASE_TRANSACTION_COST = 5_000_000_000n;\nconst BITCOIN_CYCLE_COST_PER_TRANSACTION_BYTE = 20_000_000n; export default Canister({ sendTransaction: update([blob], bool, async (transaction) => { const transactionFee = BITCOIN_BASE_TRANSACTION_COST + BigInt(transaction.length) * BITCOIN_CYCLE_COST_PER_TRANSACTION_BYTE; await ic.call(managementCanister.bitcoin_send_transaction, { args: [ { transaction, network: { Regtest: null } } ], cycles: transactionFee }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_send_transaction » bitcoin_send_transaction","id":"194","title":"bitcoin_send_transaction"},"195":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, update } from 'azle';\nimport { CanisterStatusArgs, CanisterStatusResult, managementCanister\n} from 'azle/canisters/management'; export default Canister({ getCanisterStatus: update( [CanisterStatusArgs], CanisterStatusResult, async (args) => { return await ic.call(managementCanister.canister_status, { args: [args] }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » canister_status » canister_status","id":"195","title":"canister_status"},"196":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, None, update } from 'azle';\nimport { CreateCanisterResult, managementCanister\n} from 'azle/canisters/management'; export default Canister({ executeCreateCanister: update([], CreateCanisterResult, async () => { return await ic.call(managementCanister.create_canister, { args: [{ settings: None }], cycles: 50_000_000_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » create_canister » create_canister","id":"196","title":"create_canister"},"197":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeDeleteCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.delete_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » delete_canister » delete_canister","id":"197","title":"delete_canister"},"198":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeDepositCycles: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.deposit_cycles, { args: [ { canister_id: canisterId } ], cycles: 10_000_000n }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » deposit_cycles » deposit_cycles","id":"198","title":"deposit_cycles"},"199":{"body":"This section is a work in progress. Examples: threshold_ecdsa import { blob, Canister, ic, None, Record, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const PublicKey = Record({ publicKey: blob\n}); export default Canister({ publicKey: update([], PublicKey, async () => { const caller = ic.caller().toUint8Array(); const publicKeyResult = await ic.call( managementCanister.ecdsa_public_key, { args: [ { canister_id: None, derivation_path: [caller], key_id: { curve: { secp256k1: null }, name: 'dfx_test_key' } } ] } ); return { publicKey: publicKeyResult.public_key }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » ecdsa_public_key » ecdsa_public_key","id":"199","title":"ecdsa_public_key"},"2":{"body":"Windows is only supported through a Linux virtual environment of some kind, such as WSL On Ubuntu/WSL: sudo apt-get install podman On Mac: brew install podman It's recommended to use nvm and Node.js 20: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash Restart your terminal and then run: nvm install 20 Check that the installation went smoothly by looking for clean output from the following command: node --version Install the dfx command line tools for managing ICP applications: DFX_VERSION=0.19.0 sh -ci \"$(curl -fsSL https://sdk.dfinity.org/install.sh)\" Check that the installation went smoothly by looking for clean output from the following command: dfx --version If after trying to run dfx --version you encounter an error such as dfx: command not found, you might need to add $HOME/bin to your path. Here's an example of doing this in your .bashrc: echo 'export PATH=\"$PATH:$HOME/bin\"' >> \"$HOME/.bashrc\"","breadcrumbs":"Get Started » Installation","id":"2","title":"Installation"},"20":{"body":"Azle canisters can import ic from azle and use ic.caller() to get the principal (public-key linked identifier) of the initiator of an HTTP request. HTTP requests are anonymous (principal 2vxsx-fae) by default, but authentication with web browsers (and maybe Node.js) can be done using a JWT-like API from azle/http_client. First you import toJwt from azle/http_client: import { toJwt } from 'azle/http_client'; Then you use fetch and construct an Authorization header using an @dfinity/agent Identity: const response = await fetch( `http://bkyz2-fmaaa-aaaaa-qaaaq-cai.localhost:8000/whoami`, { method: 'GET', headers: [['Authorization', toJwt(this.identity)]] }\n); Here's an example of the frontend of a simple web application using azle/http_client and Internet Identity : import { Identity } from '@dfinity/agent';\nimport { AuthClient } from '@dfinity/auth-client';\nimport { toJwt } from 'azle/http_client';\nimport { html, LitElement } from 'lit';\nimport { customElement, property } from 'lit/decorators.js'; @customElement('azle-app')\nexport class AzleApp extends LitElement { @property() identity: Identity | null = null; @property() whoami: string = ''; connectedCallback() { super.connectedCallback(); this.authenticate(); } async authenticate() { const authClient = await AuthClient.create(); const isAuthenticated = await authClient.isAuthenticated(); if (isAuthenticated === true) { this.handleIsAuthenticated(authClient); } else { await this.handleIsNotAuthenticated(authClient); } } handleIsAuthenticated(authClient: AuthClient) { this.identity = authClient.getIdentity(); } async handleIsNotAuthenticated(authClient: AuthClient) { await new Promise((resolve, reject) => { authClient.login({ identityProvider: import.meta.env.VITE_IDENTITY_PROVIDER, onSuccess: resolve as () => void, onError: reject, windowOpenerFeatures: `width=500,height=500` }); }); this.identity = authClient.getIdentity(); } async whoamiUnauthenticated() { const response = await fetch( `${import.meta.env.VITE_CANISTER_ORIGIN}/whoami` ); const responseText = await response.text(); this.whoami = responseText; } async whoamiAuthenticated() { const response = await fetch( `${import.meta.env.VITE_CANISTER_ORIGIN}/whoami`, { method: 'GET', headers: [['Authorization', toJwt(this.identity)]] } ); const responseText = await response.text(); this.whoami = responseText; } render() { return html`

Internet Identity

Whoami principal: ${this.whoami}

`; }\n} Here's an example of the backend of that same simple web application: import { ic } from 'azle';\nimport express from 'express'; const app = express(); app.get('/whoami', (req, res) => { res.send(ic.caller().toString());\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Authentication » Authentication TL;DR","id":"20","title":"Authentication TL;DR"},"200":{"body":"This section is a work in progress. Examples: ethereum_json_rpc outgoing_http_requests import { Canister, ic, None, Principal, query, Some, update } from 'azle';\nimport { HttpResponse, HttpTransformArgs, managementCanister\n} from 'azle/canisters/management'; export default Canister({ xkcd: update([], HttpResponse, async () => { return await ic.call(managementCanister.http_request, { args: [ { url: `https://xkcd.com/642/info.0.json`, max_response_bytes: Some(2_000n), method: { get: null }, headers: [], body: None, transform: Some({ function: [ic.id(), 'xkcdTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); }), xkcdTransform: query([HttpTransformArgs], HttpResponse, (args) => { return { ...args.response, headers: [] }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » http_request » http_request","id":"200","title":"http_request"},"201":{"body":"This section is a work in progress. Examples: management_canister import { blob, bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], bool, async (canisterId, wasmModule) => { await ic.call(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); return true; } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » install_code » install_code","id":"201","title":"install_code"},"202":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, None, update } from 'azle';\nimport { managementCanister, ProvisionalCreateCanisterWithCyclesResult\n} from 'azle/canisters/management'; export default Canister({ provisionalCreateCanisterWithCycles: update( [], ProvisionalCreateCanisterWithCyclesResult, async () => { return await ic.call( managementCanister.provisional_create_canister_with_cycles, { args: [ { amount: None, settings: None } ] } ); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » provisional_create_canister_with_cycles » provisional_create_canister_with_cycles","id":"202","title":"provisional_create_canister_with_cycles"},"203":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, nat, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ provisionalTopUpCanister: update( [Principal, nat], bool, async (canisterId, amount) => { await ic.call(managementCanister.provisional_top_up_canister, { args: [ { canister_id: canisterId, amount } ] }); return true; } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » provisional_top_up_canister » provisional_top_up_canister","id":"203","title":"provisional_top_up_canister"},"204":{"body":"This section is a work in progress. Examples: async/await heartbeat management_canister timers import { blob, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ getRawRand: update([], blob, async () => { return await ic.call(managementCanister.raw_rand); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » raw_rand » raw_rand","id":"204","title":"raw_rand"},"205":{"body":"This section is a work in progress. Examples: threshold_ecdsa import { blob, Canister, ic, Record, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const Signature = Record({ signature: blob\n}); export default Canister({ sign: update([blob], Signature, async (messageHash) => { if (messageHash.length !== 32) { ic.trap('messageHash must be 32 bytes'); } const caller = ic.caller().toUint8Array(); const signatureResult = await ic.call( managementCanister.sign_with_ecdsa, { args: [ { message_hash: messageHash, derivation_path: [caller], key_id: { curve: { secp256k1: null }, name: 'dfx_test_key' } } ], cycles: 10_000_000_000n } ); return { signature: signatureResult.signature }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » sign_with_ecdsa » sign_with_ecdsa","id":"205","title":"sign_with_ecdsa"},"206":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeStartCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.start_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » start_canister » start_canister","id":"206","title":"start_canister"},"207":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeStopCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.stop_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » stop_canister » stop_canister","id":"207","title":"stop_canister"},"208":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeUninstallCode: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.uninstall_code, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » uninstall_code » uninstall_code","id":"208","title":"uninstall_code"},"209":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, None, Principal, Some, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeUpdateSettings: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.update_settings, { args: [ { canister_id: canisterId, settings: { controllers: None, compute_allocation: Some(1n), memory_allocation: Some(3_000_000n), freezing_threshold: Some(2_000_000n) } } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » update_settings » update_settings","id":"209","title":"update_settings"},"21":{"body":"Examples: fetch_ic internet_identity","breadcrumbs":"Authentication » Authentication","id":"21","title":"Authentication"},"210":{"body":"Azle plugins allow developers to wrap Rust code in TypeScript/JavaScript APIs that can then be exposed to Azle canisters, providing a clean and simple developer experience with the underlying Rust code. Plugins are in a very early alpha state. You can create and use them now, but be aware that the API will be changing significantly in the near future. You can use the following example plugins as you create your own plugins:","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » Plugins","id":"210","title":"Plugins"},"211":{"body":"If you just want to create a plugin in the same repo as your project, see the plugins example .","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » Local plugin","id":"211","title":"Local plugin"},"212":{"body":"If you want to create a plugin that can be published and/or used with npm, see the ic-sqlite-plugin example .","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » npm plugin","id":"212","title":"npm plugin"},"213":{"body":"stable structures stable bytes stable grow stable read stable size stable write stable64 grow stable64 read stable64 size stable64 write","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » Stable Memory","id":"213","title":"Stable Memory"},"214":{"body":"This section is a work in progress. Examples: audio_recorder ethereum_json_rpc func_types http_counter inline_types persistent-storage pre_and_post_upgrade stable_structures import { bool, Canister, nat64, nat8, Opt, query, StableBTreeMap, text, Tuple, update, Vec\n} from 'azle'; const Key = nat8;\ntype Key = typeof Key.tsType; const Value = text;\ntype Value = typeof Value.tsType; let map = StableBTreeMap(0); export default Canister({ containsKey: query([Key], bool, (key) => { return map.containsKey(key); }), get: query([Key], Opt(Value), (key) => { return map.get(key); }), insert: update([Key, Value], Opt(Value), (key, value) => { return map.insert(key, value); }), isEmpty: query([], bool, () => { return map.isEmpty(); }), items: query([], Vec(Tuple(Key, Value)), () => { return map.items(); }), keys: query([], Vec(Key), () => { return Uint8Array.from(map.keys()); }), len: query([], nat64, () => { return map.len(); }), remove: update([Key], Opt(Value), (key) => { return map.remove(key); }), values: query([], Vec(Value), () => { return map.values(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable structures » stable structures","id":"214","title":"stable structures"},"215":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, query } from 'azle'; export default Canister({ stableBytes: query([], blob, () => { return ic.stableBytes(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable bytes » stable bytes","id":"215","title":"stable bytes"},"216":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat32, update } from 'azle'; export default Canister({ stableGrow: update([nat32], nat32, (newPages) => { return ic.stableGrow(newPages); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable grow » stable grow","id":"216","title":"stable grow"},"217":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat32, query } from 'azle'; export default Canister({ stableRead: query([nat32, nat32], blob, (offset, length) => { return ic.stableRead(offset, length); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable read » stable read","id":"217","title":"stable read"},"218":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat32, query } from 'azle'; export default Canister({ stableSize: query([], nat32, () => { return ic.stableSize(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable size » stable size","id":"218","title":"stable size"},"219":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat32, update, Void } from 'azle'; export default Canister({ stableWrite: update([nat32, blob], Void, (offset, buf) => { ic.stableWrite(offset, buf); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable write » stable write","id":"219","title":"stable write"},"22":{"body":"Authentication of ICP calls is done through signatures on messages. @dfinity/agent provides very nice abstractions for creating all of the required signatures in the correct formats when calling into canisters on ICP. Unfortunately this requires you to abandon traditional HTTP requests, as you must use the agent's APIs. Azle attempts to enable you to perform traditional HTTP requests with traditional libraries. Currently Azle focuses on fetch. When importing toJwt, azle/http_client will overwrite the global fetch function and will intercept fetch requests that have Authorization headers with an Identity as a value. Once intercepted, these requests are turned into @dfinity/agent requests that call the http_request and http_request_update canister methods directly, thus performing all of the required client-side authentication work. We are working to push for ICP to more natively understand JWTs for authentication, without the need to intercept fetch requests and convert them into agent requests.","breadcrumbs":"Authentication » Under-the-hood","id":"22","title":"Under-the-hood"},"220":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat64, update } from 'azle'; export default Canister({ stable64Grow: update([nat64], nat64, (newPages) => { return ic.stable64Grow(newPages); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 grow » stable64 grow","id":"220","title":"stable64 grow"},"221":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat64, query } from 'azle'; export default Canister({ stable64Read: query([nat64, nat64], blob, (offset, length) => { return ic.stable64Read(offset, length); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 read » stable64 read","id":"221","title":"stable64 read"},"222":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat64, query } from 'azle'; export default Canister({ stable64Size: query([], nat64, () => { return ic.stable64Size(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 size » stable64 size","id":"222","title":"stable64 size"},"223":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat64, update, Void } from 'azle'; export default Canister({ stable64Write: update([nat64, blob], Void, (offset, buf) => { ic.stable64Write(offset, buf); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 write » stable64 write","id":"223","title":"stable64 write"},"224":{"body":"clear timer set timer set timer interval","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » Timers","id":"224","title":"Timers"},"225":{"body":"This section is a work in progress. Examples: timers import { Canister, ic, TimerId, update, Void } from 'azle'; export default Canister({ clearTimer: update([TimerId], Void, (timerId) => { ic.clearTimer(timerId); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » clear timer » clear timer","id":"225","title":"clear timer"},"226":{"body":"This section is a work in progress. Examples: timers import { Canister, Duration, ic, TimerId, Tuple, update } from 'azle'; export default Canister({ setTimers: update([Duration], Tuple(TimerId, TimerId), (delay) => { const functionTimerId = ic.setTimer(delay, callback); const capturedValue = '🚩'; const closureTimerId = ic.setTimer(delay, () => { console.log(`closure called and captured value ${capturedValue}`); }); return [functionTimerId, closureTimerId]; })\n}); function callback() { console.log('callback called');\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » set timer » set timer","id":"226","title":"set timer"},"227":{"body":"This section is a work in progress. Examples: timers import { Canister, Duration, ic, TimerId, Tuple, update } from 'azle'; export default Canister({ setTimerIntervals: update( [Duration], Tuple(TimerId, TimerId), (interval) => { const functionTimerId = ic.setTimerInterval(interval, callback); const capturedValue = '🚩'; const closureTimerId = ic.setTimerInterval(interval, () => { console.log( `closure called and captured value ${capturedValue}` ); }); return [functionTimerId, closureTimerId]; } )\n}); function callback() { console.log('callback called');\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » set timer interval » set timer interval","id":"227","title":"set timer interval"},"228":{"body":"The IC currently limits Wasm binaries to a relatively small size of ~2MiB (with some caveats). You are likely to hit this limit as your Azle canisters grow in size. Azle provides some automatic optimizations to help you deal with this limit. It is hoped that the IC-imposed limit will be greatly increased sometime in 2023. To optimize the Wasm binary of an Azle canister, you can add the opt_level property to your dfx.json with the following options: \"0\", \"1\", \"2\", \"3\", or \"4\". \"0\" is the default option if opt_level is not specified. Each option is intended to reduce the size of your Wasm binary as the value increases. Each option is likely to take longer to compile than the previous option. It is recommended to start at \"1\" and increase only as necessary. Here's an example using opt_level \"1\": { \"canisters\": { \"hello_world\": { \"type\": \"custom\", \"main\": \"src/index.ts\", \"build\": \"npx azle hello_world\", \"candid\": \"src/index.did\", \"wasm\": \".azle/hello_world/hello_world.wasm.gz\", \"opt_level\": \"1\" } }\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Wasm Binary Optimization » Wasm Binary Optimization","id":"228","title":"Wasm Binary Optimization"},"23":{"body":"If your terminal logs ever say did not produce a response or response failed classification=Status code: 502 Bad Gateway, it most likely means that your canister has thrown an error and halted execution for that call. Use console.log and try/catch liberally to track down problems and reveal error information. If your error logs do not have useful messages, use try/catch with a console.log of the catch error argument to reveal the underlying error message.","breadcrumbs":"Debugging » Debugging TL;DR","id":"23","title":"Debugging TL;DR"},"24":{"body":"console.log and try/catch Canister did not produce a response No error message Final Compiled and Bundled JavaScript Azle currently has less-than-elegant error reporting. We hope to improve this significantly in the future. In the meantime, consider the following tips when trying to debug your application.","breadcrumbs":"Debugging » Debugging","id":"24","title":"Debugging"},"25":{"body":"At the highest level, the most important tip is this: use console.log and try/catch liberally to track down problems and reveal error information.","breadcrumbs":"Debugging » console.log and try/catch","id":"25","title":"console.log and try/catch"},"26":{"body":"If you ever see an error that looks like this: Replica Error: reject code CanisterError, reject message IC0506: Canister bkyz2-fmaaa-aaaaa-qaaaq-cai did not produce a response, error code Some(\"IC0506\") or this: 2024-04-17T15:01:39.194377Z WARN icx_proxy_dev::proxy::agent: Replica Error\n2024-04-17T15:01:39.194565Z ERROR tower_http::trace::on_failure: response failed classification=Status code: 502 Bad Gateway latency=61 ms it most likely means that your canister has thrown an error and halted execution for that call. First check the replica's logs for any errors messages. If there are no useful error messages, use console.log and try/catch liberally to track down the source of the error and to reveal more information about the error. Don't be surprised if you need to console.log after each of your program's statements (including dependencies found in node_modules) to find out where the error is coming from. And don't be surprised if you need to use try/catch with a console.log of the catch error argument to reveal useful error messaging.","breadcrumbs":"Debugging » Canister did not produce a response","id":"26","title":"Canister did not produce a response"},"27":{"body":"You might find yourself in a situation where an error is reported without a useful message like this: \n\n\n\nError\n\n\n
    at <anonymous> (azle_main:110643)
   at handle (azle_main:73283)
   at next (azle_main:73452)
   at dispatch (azle_main:73432)
   at handle (azle_main:73283)
   at <anonymous> (azle_main:73655)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at expressInit (azle_main:73910)
   at handle (azle_main:73283)
   at trim_prefix (azle_main:73684)
   at <anonymous> (azle_main:73657)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at query3 (azle_main:73938)
   at handle (azle_main:73283)
   at trim_prefix (azle_main:73684)
   at <anonymous> (azle_main:73657)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at handle (azle_main:73587)
   at handle (azle_main:76233)
   at app2 (azle_main:78091)
   at call (native)
   at emitTwo (azle_main:9782)
   at emit2 (azle_main:10023)
   at httpHandler (azle_main:87618)
\n\n or like this: 2024-04-17 14:35:30.433501980 UTC: [Canister bkyz2-fmaaa-aaaaa-qaaaq-cai] \" at (azle_main:110643)\\n at handle (azle_main:73283)\\n at next (azle_main:73452)\\n at dispatch (azle_main:73432)\\n at handle (azle_main:73283)\\n at (azle_main:73655)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at expressInit (azle_main:73910)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at query3 (azle_main:73938)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at handle (azle_main:73587)\\n at handle (azle_main:76233)\\n at app2 (azle_main:78091)\\n at call (native)\\n at emitTwo (azle_main:9782)\\n at emit2 (azle_main:10023)\\n at httpHandler (azle_main:87618)\\n\"\n2024-04-17T14:35:31.983590Z ERROR tower_http::trace::on_failure: response failed classification=Status code: 500 Internal Server Error latency=101 ms\n2024-04-17 14:36:34.652587412 UTC: [Canister bkyz2-fmaaa-aaaaa-qaaaq-cai] \" at (azle_main:110643)\\n at handle (azle_main:73283)\\n at next (azle_main:73452)\\n at dispatch (azle_main:73432)\\n at handle (azle_main:73283)\\n at (azle_main:73655)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at expressInit (azle_main:73910)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at query3 (azle_main:73938)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at handle (azle_main:73587)\\n at handle (azle_main:76233)\\n at app2 (azle_main:78091)\\n at call (native)\\n at emitTwo (azle_main:9782)\\n at emit2 (azle_main:10023)\\n at httpHandler (azle_main:87618)\\n\" In these situations you might be able to use try/catch with a console.log of the catch error argument to reveal the underlying error message. For example, this code without a try/catch will log errors without the message This is the error text: import express from 'express'; const app = express(); app.get('/hello-world', (_req, res) => { throw new Error('This is the error text'); res.send('Hello World!');\n}); app.listen(); You can get the message to print in the replica terminal like this: import express from 'express'; const app = express(); app.get('/hello-world', (_req, res) => { try { throw new Error('This is the error text'); res.send('Hello World!'); } catch (error) { console.log(error); }\n}); app.listen();","breadcrumbs":"Debugging » No error message","id":"27","title":"No error message"},"28":{"body":"Azle compiles and bundles your TypeScript/JavaScript into a final JavaScript file to be included and executed inside of your canister. Inspecting this final JavaScript code may help you to debug your application. When you see something like (azle_main:110643) in your error stack traces, it is a reference to the final compiled and bundled JavaScript file that is actually deployed with and executed by the canister. The right-hand side of azle_main e.g. :110643 is the line number in that file. You can find the file at [project_name]/.azle/[canister_name]/canister/src/main.js. If you have the AZLE_AUTORELOAD environment variable set to true then you should instead look at [project_name]/.azle/[canister_name]/canister/src/main_reloaded.js","breadcrumbs":"Debugging » Final Compiled and Bundled JavaScript","id":"28","title":"Final Compiled and Bundled JavaScript"},"29":{"body":"There are a number of limitations that you are likely to run into while you develop with Azle on ICP. These are generally the most limiting: 5 billion instruction limit for query calls (HTTP GET requests) (~1 second of computation) 20 billion instruction limit for update calls (HTTP POST/etc requests) (~5 seconds of computation) 2 MiB request size limit 3 MiB response size limit 4 GiB heap limit High request latency relative to traditional web applications (think seconds not milliseconds) High costs relative to traditional web applications (think ~10x traditional web costs) Read more here for in-depth information on current ICP limitations.","breadcrumbs":"Limitations » Limitations TL;DR","id":"29","title":"Limitations TL;DR"},"3":{"body":"npx azle new hello_world\ncd hello_world npm install dfx start --clean --host 127.0.0.1:8000 In a separate terminal in the hello_world directory: dfx deploy If you are building an HTTP-based canister and would like your canister to autoreload on file changes (DO NOT deploy to mainnet with autoreload enabled): AZLE_AUTORELOAD=true dfx deploy If you have problems deploying see Common deployment issues . View your frontend in a web browser at http://[canisterId].localhost:8000. To obtain your application's [canisterId]: dfx canister id backend Communicate with your canister using any HTTP client library, for example using curl: curl http://[canisterId].localhost:8000/db\ncurl -X POST -H \"Content-Type: application/json\" -d \"{ \\\"hello\\\": \\\"world\\\" }\" http://[canisterId].localhost:8000/db/update","breadcrumbs":"Get Started » Deployment","id":"3","title":"Deployment"},"30":{"body":"Autoreload Environment Variables Native Compilation","breadcrumbs":"Reference » Reference","id":"30","title":"Reference"},"31":{"body":"Deploying to mainnet with AZLE_AUTORELOAD=true will expose your canister to arbitrary untrusted JavaScript code execution You can turn on automatic reloading of your canister's final compiled JavaScript by using the AZLE_AUTORELOAD environment variable during deploy: AZLE_AUTORELOAD=true dfx deploy The autoreload feature watches all .ts and .js files recursively in the directory with your dfx.json file (the root directory of your project), excluding files found in .azle, .dfx, and node_modules. Autoreload only works properly if you do not change the methods of your canister. HTTP-based canisters will generally work well with autoreload as the query and update methods http_request and http_request_update will not need to change often. Candid-based canisters with explicit query and update methods may require manual deploys more often. Autoreload will not reload assets uploaded through the assets property of your dfx.json. It is extremely important to keep in mind that setting AZLE_AUTORELOAD=true will create an update method in your canister called reload_js that has no authorization built into it. If you deploy this to mainnet, anyone will be able to call this method and change the JavaScript of your canister.","breadcrumbs":"Reference » Autoreload » Autoreload","id":"31","title":"Autoreload"},"32":{"body":"AZLE_AUTORELOAD AZLE_DOCKERFILE_HASH AZLE_IDENTITY_STORAGE_MODE AZLE_INSTRUCTION_COUNT AZLE_PROPTEST_NUM_RUNS AZLE_PROPTEST_PATH AZLE_PROPTEST_QUIET AZLE_PROPTEST_SEED AZLE_PROPTEST_VERBOSE AZLE_TEST_FETCH AZLE_USE_DOCKERFILE AZLE_VERBOSE AZLE_WASMEDGE_QUICKJS_DIR","breadcrumbs":"Reference » Environment Variables » Environment Variables","id":"32","title":"Environment Variables"},"33":{"body":"Set this to true to enable autoreloading of your TypeScript/JavaScript code when making any changes to .ts or .js files in your project.","breadcrumbs":"Reference » Environment Variables » AZLE_AUTORELOAD","id":"33","title":"AZLE_AUTORELOAD"},"34":{"body":"Set this to the hash that you would like Azle to use when determining the container image, container, and wasmedge-quickjs directory names. The container image file and wasmedge-quickjs directory will be stored at ~/.config/azle. The hash is the final part of each of those names.","breadcrumbs":"Reference » Environment Variables » AZLE_DOCKERFILE_HASH","id":"34","title":"AZLE_DOCKERFILE_HASH"},"35":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_IDENTITY_STORAGE_MODE","id":"35","title":"AZLE_IDENTITY_STORAGE_MODE"},"36":{"body":"Set this to true to see rough instruction counts just before JavaScript execution completes for calls.","breadcrumbs":"Reference » Environment Variables » AZLE_INSTRUCTION_COUNT","id":"36","title":"AZLE_INSTRUCTION_COUNT"},"37":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_NUM_RUNS","id":"37","title":"AZLE_PROPTEST_NUM_RUNS"},"38":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_PATH","id":"38","title":"AZLE_PROPTEST_PATH"},"39":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_QUIET","id":"39","title":"AZLE_PROPTEST_QUIET"},"4":{"body":"There are many Azle examples in the examples directory . We recommend starting with the following: apollo_server audio_and_video autoreload ethers ethers_base express fetch_ic file_protocol fs hello_world http_outcall_fetch hybrid_canister ic_evm_rpc internet_identity large_files sqlite tfjs web_assembly","breadcrumbs":"Examples » Examples","id":"4","title":"Examples"},"40":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_SEED","id":"40","title":"AZLE_PROPTEST_SEED"},"41":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_VERBOSE","id":"41","title":"AZLE_PROPTEST_VERBOSE"},"42":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_TEST_FETCH","id":"42","title":"AZLE_TEST_FETCH"},"43":{"body":"Set this to true to force Azle to build the container image locally from the internal Dockerfile instead of attempting to download the container image.","breadcrumbs":"Reference » Environment Variables » AZLE_USE_DOCKERFILE","id":"43","title":"AZLE_USE_DOCKERFILE"},"44":{"body":"Set this to true to enable more logging output during dfx deploy.","breadcrumbs":"Reference » Environment Variables » AZLE_VERBOSE","id":"44","title":"AZLE_VERBOSE"},"45":{"body":"Set this to the path that you would like Azle to use to find the wasmedge-quickjs directory. The default is ~/.config/azle/wasmedge-quickjs_[current Dockerfile hash].","breadcrumbs":"Reference » Environment Variables » AZLE_WASMEDGE_QUICKJS_DIR","id":"45","title":"AZLE_WASMEDGE_QUICKJS_DIR"},"46":{"body":"Add the --native-compilation option to the command in the build property of your canister object in your dfx.json file. Make sure you install the correct dependencies for your project's version of Azle.","breadcrumbs":"Reference » Native Compilation » Native Compilation TL;DR","id":"46","title":"Native Compilation TL;DR"},"47":{"body":"Examples: key_value_store primitive_types stable_structures Azle uses a container image and Podman to simplify the development environment experience. Because of this, Azle only requires dfx, node/npm, and podman to be installed on the developer's machine. But this setup isn't always desirable. For example, Podman has trouble running inside of a Docker container. If you would like to skip the container and run Azle's build process directly on your machine, you can do so as follows: Add the --native-compilation option to the command in the build property of your canister object in your dfx.json file, like this: npx azle canister_name --native-compilation. Install prerequisites: sudo apt-get update\nsudo apt-get install clang\nsudo apt-get install build-essential Install Rust: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.73.0 --profile=minimal Install wasm32-wasi: rustup target add wasm32-wasi Install wasi2ic: cargo install --git https://github.com/wasm-forge/wasi2ic --rev 806c3558aad24224852a9582f018178402cb3679 Download and rename wasmedge-quickjs: mkdir -p ~/.config/azle\ncd ~/.config/azle\ngit clone https://github.com/demergent-labs/wasmedge-quickjs\ncd wasmedge-quickjs\ngit checkout c21ff69f442998e4cda4619166e23a9bc91418be\ncd -\nmv wasmedge-quickjs wasmedge-quickjs_$(npx azle@0.21.1 dockerfile-hash) Keep in mind that much of this setup is Azle version-specific. The installation steps above are accurate as of version 0.21.1 of Azle. If your Azle project uses a different version of Azle then you might need to make changes to these instructions to ensure correct compilation and execution. If you are struggling to get --native-compilation to work, it may be helpful for you to view the following files from the Azle repository: Dockerfile test.yml , search for --native-compilation","breadcrumbs":"Reference » Native Compilation » Native Compilation","id":"47","title":"Native Compilation"},"48":{"body":"This entire section of the documentation may be out of date Azle is currently going through a transition to give higher priority to utilizing HTTP, REST, JSON, and other familiar web technologies. This is in contrast to having previously focused on ICP-specific technologies like Candid and explicitly creating Canister objects with query and update methods. We are calling these two paradigms HTTP-based and Candid-based. Many concepts from the Candid-based documentation are still applicable in the HTTP-based paradigm. The HTTP-based paradigm simply focuses on changing the communication and serialization strategies to be more web-focused and less custom.","breadcrumbs":"Old Candid-based Documentation » Old Candid-based Documentation","id":"48","title":"Old Candid-based Documentation"},"49":{"body":"Azle is a TypeScript and JavaScript Canister Development Kit (CDK) for the Internet Computer (IC). In other words, it's a TypeScript/JavaScript runtime for building applications ( canisters ) on the IC. npm package GitHub repo Discord channel","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Azle (Beta)","id":"49","title":"Azle (Beta)"},"5":{"body":"Starting the local replica Deploying to the local replica Interacting with your canister Deploying to mainnet Common deployment issues There are two main ICP environments that you will generally interact with: the local replica and mainnet . We recommend using the dfx command line tools to deploy to these environments. Please note that not all dfx commands are shown here. See the dfx CLI reference for more information.","breadcrumbs":"Deployment » Deployment","id":"5","title":"Deployment"},"50":{"body":"Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Disclaimer","id":"50","title":"Disclaimer"},"51":{"body":"Azle is currently developed by Demergent Labs , a for-profit company with a grant from DFINITY . Demergent Labs' vision is to accelerate the adoption of Web3, the Internet Computer, and sustainable open source.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Demergent Labs","id":"51","title":"Demergent Labs"},"52":{"body":"Azle and the IC provide unique benefits and drawbacks, and both are not currently suitable for all application use-cases. The following information will help you to determine when Azle and the IC might be beneficial for your use-case.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Benefits and drawbacks","id":"52","title":"Benefits and drawbacks"},"53":{"body":"Azle intends to be a full TypeScript and JavaScript environment for the IC (a decentralized cloud platform), with support for all of the TypeScript and JavaScript language and as many relevant environment APIs as possible. These environment APIs will be similar to those available in the Node.js and web browser environments. One of the core benefits of Azle is that it allows web developers to bring their TypeScript or JavaScript skills to the IC. For example, Azle allows the use of various npm packages and VS Code intellisense. As for the IC, we believe its main benefits can be broken down into the following categories: Ownership Security Developer Experience Most of these benefits stem from the decentralized nature of the IC, though the IC is best thought of as a progressively decentralizing cloud platform. As opposed to traditional cloud platforms, its goal is to be owned and controlled by many independent entities. Ownership Full-stack group ownership Autonomous ownership Permanent APIs Credible neutrality Reduced platform risk Full-stack group ownership The IC allows you to build applications that are controlled directly and only (with some caveats) by a group of people. This is in opposition to most cloud applications written today, which must be under the control of a very limited number of people and often a single legal entity that answers directly to a cloud provider, which itself is a single legal entity. In the blockchain world, group-owned applications are known as DAOs . As opposed to DAOs built on most blockchains, the IC allows full-stack applications to be controlled by groups. This means that the group fully controls the running instances of the frontend and the backend code. Autonomous ownership In addition to allowing applications to be owned by groups of people, the IC also allows applications to be owned by no one. This essentially creates autonomous applications or everlasting processes that execute indefinitely. The IC will essentially allow such an application to run indefinitely, unless it depletes its balance of cycles, or the NNS votes to shut it down, neither of which is inevitable. Permanent APIs Because most web APIs are owned and operated by individual entities, their fate is tied to that of their owners. If their owners go out of business, then those APIs may cease to exist. If their owners decide that they do not like or agree with certain users, they may restrict their access. In the end, they may decide to shut down or restrict access for arbitrary reasons. Because the IC allows for group and autonomous ownership of cloud software, the IC is able to produce potentially permanent web APIs. A decentralized group of independent entities will find it difficult to censor API consumers or shut down an API. An autonomous API would take those difficulties to the extreme, as it would continue operating as long as consumers were willing to pay for it. Credible neutrality Group and autonomous ownership makes it possible to build neutral cloud software on the IC. This type of software would allow independent parties to coordinate with reduced trust in each other or a single third-party coordinator. This removes the risk of the third-party coordinator acting in its own self-interest against the interests of the coordinating participants. The coordinating participants would also find it difficult to implement changes that would benefit themselves to the detriment of other participants. Examples could include mobile app stores, ecommerce marketplaces, and podcast directories. Reduced platform risk Because the IC is not owned or controlled by any one entity or individual, the risk of being deplatformed is reduced. This is in opposition to most cloud platforms, where the cloud provider itself generally has the power to arbitrarily remove users from its platform. While deplatforming can still occur on the IC, the only endogenous means of forcefully taking down an application is through an NNS vote. Security Built-in replication Built-in authentication Built-in firewall/port management Built-in sandboxing Threshold protocols Verifiable source code Blockchain integration Built-in replication Replication has many benefits that stem from reducing various central points of failure. The IC is at its core a Byzantine Fault Tolerant replicated compute environment. Applications are deployed to subnets which are composed of nodes running replicas. Each replica is an independent replicated state machine that executes an application's state transitions (usually initiated with HTTP requests) and persists the results. This replication provides a high level of security out-of-the-box. It is also the foundation of a number of protocols that provide threshold cryptographic operations to IC applications. Built-in authentication IC client tooling makes it easy to sign and send messages to the IC, and Internet Identity provides a novel approach to self-custody of private keys. The IC automatically authenticates messages with the public key of the signer, and provides a compact representation of that public key, called a principal, to the application. The principal can be used for authorization purposes. This removes many authentication concerns from the developer. Built-in firewall/port management The concept of ports and various other low-level network infrastructure on the IC is abstracted away from the developer. This can greatly reduce application complexity thus minimizing the chance of introducing vulnerabilities through incorrect configurations. Canisters expose endpoints through various methods, usually query or update methods. Because authentication is also built-in, much of the remaining vulnerability surface area is minimized to implementing correct authorization rules in the canister method endpoints. Built-in sandboxing Canisters have at least two layers of sandboxing to protect colocated canisters from each other. All canisters are at their core Wasm modules and thus inherit the built-in Wasm sandbox. In case there is any bug in the underlying implementation of the Wasm execution environment (or a vulnerability in the imported host functionality), there is also an OS-level sandbox. Developers need not do anything to take advantage of these sandboxes. Threshold protocols The IC provides a number of threshold protocols that allow groups of independent nodes to perform cryptographic operations. These protocols remove central points of failure while providing familiar and useful cryptographic operations to developers. Included are ECDSA , BLS , VRF-like , and in the future threshold key derivation . Verifiable source code IC applications (canisters) are compiled into Wasm and deployed to the IC as Wasm modules. The IC hashes each canister's Wasm binary and stores it for public retrieval. The Wasm binary hash can be retrieved and compared with the hash of an independently compiled Wasm binary derived from available source code. If the hashes match, then one can know with a high degree of certainty that the application is executing the Wasm binary that was compiled from that source code. Blockchain integration When compared with web APIs built for the same purpose, the IC provides a high degree of security when integrating with various other blockchains. It has a direct client integration with Bitcoin, allowing applications to query its state with BFT guarantees. A similar integration is coming for Ethereum. In addition to these blockchain client integrations, a threshold ECDSA protocol (tECDSA) allows the IC to create keys and sign transactions on various ECDSA chains . These chains include Bitcoin and Ethereum, and in the future the protocol may be extended to allow interaction with various EdDSA chains . These direct integrations combined with tECDSA provide a much more secure way to provide blockchain functionality to end users than creating and storing their private keys on traditional cloud infrastructure. Developer experience Built-in devops Orthogonal persistence Built-in devops The IC provides many devops benefits automatically. Though currently limited in its scalability, the protocol attempts to remove the need for developers to concern themselves with concepts such as autoscaling, load balancing, uptime, sandboxing, and firewalls/port management. Correctly constructed canisters have a simple deploy process and automatically inherit these devops capabilities up unto the current scaling limits of the IC. DFINITY engineers are constantly working to remove scalability bottlenecks. Orthogonal persistence The IC automatically persists its heap. This creates an extremely convenient way for developers to store application state, by simply writing into global variables in their programming language of choice. This is a great way to get started. If a canister upgrades its code, swapping out its Wasm binary, then the heap must be cleared. To overcome this limitation, there is a special area of memory called stable memory that persists across these canister upgrades. Special stable data structures provide a familiar API that allows writing into stable memory directly. All of this together provides the foundation for a very simple persistence experience for the developer. The persistence tools now available and coming to the IC may be simpler than their equivalents on traditional cloud infrastructure.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Benefits","id":"53","title":"Benefits"},"54":{"body":"It's important to note that both Azle and the IC are early-stage projects. The IC officially launched in May of 2021, and Azle reached beta in April of 2022. Azle Some of Azle's main drawbacks can be summarized as follows: Beta Security risks Missing APIs Beta Azle reached beta in April of 2022. It's an immature project that may have unforeseen bugs and other issues. We're working constantly to improve it. We hope to get to a production-ready 1.0 in 2024. The following are the major blockers to 1.0: Extensive automated property test coverage Multiple independent security reviews/audits Broad npm package support Security risks As discussed earlier, these are some things to keep in mind: Azle does not yet have extensive automated property tests Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to the IC Missing APIs Azle is not Node.js nor is it V8 running in a web browser. It is using a JavaScript interpreter running in a very new and very different environment. APIs from the Node.js and web browser ecosystems may not be present in Azle. Our goal is to support as many of these APIs as possible over time. IC Some of the IC's main drawbacks can be summarized as follows: Early High latencies Limited and expensive compute resources Limited scalability Lack of privacy NNS risk Early The IC launched officially in May of 2021. As a relatively new project with an extremely ambitious vision, you can expect a small community, immature tooling, and an unproven track record. Much has been delivered, but many promises are yet to be fulfilled. High latencies Any requests that change state on the IC must go through consensus, thus you can expect latencies of a few seconds for these types of requests. When canisters need to communicate with each other across subnets or under heavy load, these latencies can be even longer. Under these circumstances, in the worst case latencies will build up linearly. For example, if canister A calls canister B calls canister C, and these canisters are all on different subnets or under heavy load, then you might need to multiply the latency by the total number of calls. Limited and expensive compute resources CPU usage, data storage, and network usage may be more expensive than the equivalent usage on traditional cloud platforms. Combining these costs with the high latencies explained above, it becomes readily apparent that the IC is currently not built for high-performance computing. Limited scalability The IC might not be able to scale to the needs of your application. It is constantly seeking to improve scalability bottlenecks, but it will probably not be able to onboard millions of users to your traditional web application. Lack of privacy You should assume that all of your application data (unless it is end-to-end encrypted) is accessible to multiple third-parties with no direct relationship and limited commitment to you. Currently all canister state sits unencrypted on node operator's machines. Application-layer access controls for data are possible, but motivated node operators will have an easy time getting access to your data. NNS risk The NNS has the ability to uninstall any canister and can generally change anything about the IC protocol. The NNS uses a simple liquid democracy based on coin/token voting and follower relationships. At the time of this writing most of the voting power on the NNS follows DFINITY for protocol changes, effectively giving DFINITY write control to the protocol while those follower relationships remain in place. The NNS must mature and decentralize to provide practical and realistic protections to canisters and their users.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Drawbacks","id":"54","title":"Drawbacks"},"55":{"body":"The Internet Computer (IC) is a decentralized cloud platform. Actually, it is better thought of as a progressively decentralizing cloud platform. Its full vision is yet to be fulfilled. It aims to be owned and operated by many independent entities in many geographies and legal jurisdictions throughout the world. This is in opposition to most traditional cloud platforms today, which are generally owned and operated by one overarching legal entity. The IC is composed of computer hardware nodes running the IC protocol software. Each running IC protocol software process is known as a replica. Nodes are assigned into groups known as subnets. Each subnet attempts to maximize its decentralization of nodes according to factors such as data center location and node operator independence. The subnets vary in size. Generally speaking the larger the size of the subnet the more secure it will be. Subnets currently range in size from 13 to 40 nodes, with most subnets having 13 nodes. IC applications, known as canisters, are deployed to specific subnets. They are then accessible through Internet Protocol requests such as HTTP. Each subnet replicates all canisters across all of its replicas. A consensus protocol is run by the replicas to ensure Byzantine Fault Tolerance . View the IC Dashboard to explore all data centers, subnets, node operators, and many other aspects of the IC.","breadcrumbs":"Old Candid-based Documentation » Internet Computer Overview » Internet Computer Overview","id":"55","title":"Internet Computer Overview"},"56":{"body":"Canisters are Internet Computer (IC) applications. They are the encapsulation of your code and state, and are essentially Wasm modules. State can be stored on the 4 GiB heap or in a larger 96 GiB location called stable memory. You can store state on the heap using your language's native global variables. You can store state in stable memory using low-level APIs or special stable data structures that behave similarly to native language data structures. State changes must go through a process called consensus. The consensus process ensures that state changes are Byzantine Fault Tolerant . This process takes a few seconds to complete. Operations on canister state are exposed to users through canister methods. These methods can be invoked through HTTP requests. Query methods allow state to be read and are low-latency. Update methods allow state to be changed and are higher-latency. Update methods take a few seconds to complete because of the consensus process.","breadcrumbs":"Old Candid-based Documentation » Canisters Overview » Canisters Overview","id":"56","title":"Canisters Overview"},"57":{"body":"Windows is only supported through a Linux virtual environment of some kind, such as WSL On Ubuntu/WSL: sudo apt-get install podman On Mac: brew install podman It's recommended to use nvm and Node.js 20: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash Restart your terminal and then run: nvm install 20 Check that the installation went smoothly by looking for clean output from the following command: node --version Install the dfx command line tools for managing ICP applications: DFX_VERSION=0.16.1 sh -ci \"$(curl -fsSL https://sdk.dfinity.org/install.sh)\" Check that the installation went smoothly by looking for clean output from the following command: dfx --version If after trying to run dfx --version you encounter an error such as dfx: command not found, you might need to add $HOME/bin to your path. Here's an example of doing this in your .bashrc: echo 'export PATH=\"$PATH:$HOME/bin\"' >> \"$HOME/.bashrc\"","breadcrumbs":"Old Candid-based Documentation » Installation » Installation","id":"57","title":"Installation"},"58":{"body":"Quick start Methodical start The project directory and file structure index.ts tsconfig.json dfx.json Local deployment Common deployment issues Interacting with your canister from the command line Interacting with your canister from the web UI Let's build your first application (canister) with Azle! Before embarking please ensure you've followed all of the installation instructions , especially noting the build dependencies . We'll build a simple Hello World canister that shows the basics of importing Azle, exposing a query method, exposing an update method, and storing some state in a global variable. We'll then interact with it from the command line and from our web browser.","breadcrumbs":"Old Candid-based Documentation » Hello World » Hello World","id":"58","title":"Hello World"},"59":{"body":"We are going to use the Azle new command which creates a simple example project. First use the new command to create a new project called azle_hello_world: npx azle new azle_hello_world Now let's go inside of our project: cd azle_hello_world We should install Azle and all of its dependencies: npm install Start up your local replica: dfx start In another terminal, deploy your canister: dfx deploy azle_hello_world Call the setMessage method: dfx canister call azle_hello_world setMessage '(\"Hello world!\")' Call the getMessage method: dfx canister call azle_hello_world getMessage If you run into an error during deployment, see the common deployment issues section . See the official azle_hello_world example for more information.","breadcrumbs":"Old Candid-based Documentation » Hello World » Quick Start","id":"59","title":"Quick Start"},"6":{"body":"We recommend running your local replica in its own terminal and on a port of your choosing: dfx start --host 127.0.0.1:8000 Alternatively you can start the local replica as a background process: dfx start --background --host 127.0.0.1:8000 If you want to stop a local replica running in the background: dfx stop If you ever see this kind of error after dfx stop: Error: Failed to kill all processes. Remaining: 627221 626923 627260 Then try this: sudo kill -9 627221\nsudo kill -9 626923\nsudo kill -9 627260 If your replica starts behaving strangely, we recommend starting the replica clean, which will clean the dfx state of your project: dfx start --clean --host 127.0.0.1:8000","breadcrumbs":"Deployment » Starting the local replica","id":"6","title":"Starting the local replica"},"60":{"body":"","breadcrumbs":"Old Candid-based Documentation » Hello World » Methodical start","id":"60","title":"Methodical start"},"61":{"body":"Assuming you're starting completely from scratch, run these commands to setup your project's directory and file structure: mkdir azle_hello_world\ncd azle_hello_world mkdir src touch src/index.ts\ntouch tsconfig.json\ntouch dfx.json Now install Azle, which will create your package.json and package-lock.json files: npm install azle Open up azle_hello_world in your text editor (we recommend VS Code ).","breadcrumbs":"Old Candid-based Documentation » Hello World » The project directory and file structure","id":"61","title":"The project directory and file structure"},"62":{"body":"Here's the main code of the project, which you should put in the azle_hello_world/src/index.ts file of your canister: import { Canister, query, text, update, Void } from 'azle'; // This is a global variable that is stored on the heap\nlet message = ''; export default Canister({ // Query calls complete quickly because they do not go through consensus getMessage: query([], text, () => { return message; }), // Update calls take a few seconds to complete // This is because they persist state changes and go through consensus setMessage: update([text], Void, (newMessage) => { message = newMessage; // This change will be persisted })\n}); Let's discuss each section of the code. import { Canister, query, text, update, Void } from 'azle'; The code starts off by importing Canister, query, text, update and Void from azle. The azle module provides most of the Internet Computer (IC) APIs for your canister. // This is a global variable that is stored on the heap\nlet message = ''; We have created a global variable to store the state of our application. This variable is in scope to all of the functions defined in this module. We have set it equal to an empty string. export default Canister({ ...\n}); The Canister function allows us to export our canister's definition to the Azle IC environment. // Query calls complete quickly because they do not go through consensus\ngetMessage: query([], text, () => { return message;\n}), We are exposing a canister query method here. This method simply returns our global message variable. We use a CandidType object called text to instruct Azle to encode the return value as a Candid text value. When query methods are called they execute quickly because they do not have to go through consensus. // Update calls take a few seconds to complete\n// This is because they persist state changes and go through consensus\nsetMessage: update([text], Void, (newMessage) => { message = newMessage; // This change will be persisted\n}); We are exposing an update method here. This method accepts a string from the caller and will store it in our global message variable. We use a CandidType object called text to instruct Azle to decode the newMessage parameter from a Candid text value to a JavaScript string value. Azle will infer the TypeScript type for newMessage. We use a CandidType object called Void to instruct Azle to encode the return value as the absence of a Candid value. When update methods are called they take a few seconds to complete. This is because they persist changes and go through consensus. A majority of nodes in a subnet must agree on all state changes introduced in calls to update methods. That's it! We've created a very simple getter/setter Hello World application. But no Hello World project is complete without actually yelling Hello world! To do that, we'll need to setup the rest of our project.","breadcrumbs":"Old Candid-based Documentation » Hello World » index.ts","id":"62","title":"index.ts"},"63":{"body":"Create the following in azle_hello_world/tsconfig.json: { \"compilerOptions\": { \"strict\": true, \"target\": \"ES2020\", \"moduleResolution\": \"node\", \"allowJs\": true, \"outDir\": \"HACK_BECAUSE_OF_ALLOW_JS\" }\n}","breadcrumbs":"Old Candid-based Documentation » Hello World » tsconfig.json","id":"63","title":"tsconfig.json"},"64":{"body":"Create the following in azle_hello_world/dfx.json: { \"canisters\": { \"azle_hello_world\": { \"type\": \"custom\", \"main\": \"src/index.ts\", \"candid\": \"src/index.did\", \"build\": \"npx azle azle_hello_world\", \"wasm\": \".azle/azle_hello_world/azle_hello_world.wasm\", \"gzip\": true } }\n}","breadcrumbs":"Old Candid-based Documentation » Hello World » dfx.json","id":"64","title":"dfx.json"},"65":{"body":"Let's deploy to our local replica. First startup the replica: dfx start --background Then deploy the canister: dfx deploy","breadcrumbs":"Old Candid-based Documentation » Hello World » Local deployment","id":"65","title":"Local deployment"},"66":{"body":"If you run into an error during deployment, see the common deployment issues section .","breadcrumbs":"Old Candid-based Documentation » Hello World » Common deployment issues","id":"66","title":"Common deployment issues"},"67":{"body":"Once we've deployed we can ask for our message: dfx canister call azle_hello_world getMessage We should see (\"\") representing an empty message. Now let's yell Hello World!: dfx canister call azle_hello_world setMessage '(\"Hello World!\")' Retrieve the message: dfx canister call azle_hello_world getMessage We should see (\"Hello World!\").","breadcrumbs":"Old Candid-based Documentation » Hello World » Interacting with your canister from the command line","id":"67","title":"Interacting with your canister from the command line"},"68":{"body":"After deploying your canister, you should see output similar to the following in your terminal: Deployed canisters.\nURLs: Backend canister via Candid interface: azle_hello_world: http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai Open up http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai or the equivalent URL from your terminal to access the web UI and interact with your canister.","breadcrumbs":"Old Candid-based Documentation » Hello World » Interacting with your canister from the web UI","id":"68","title":"Interacting with your canister from the web UI"},"69":{"body":"Starting the local replica Deploying to the local replica Interacting with your canister Deploying to mainnet Common deployment issues There are two main Internet Computer (IC) environments that you will generally interact with: the local replica and mainnet. When developing on your local machine, our recommended flow is to start up a local replica in your project's root directoy and then deploy to it for local testing.","breadcrumbs":"Old Candid-based Documentation » Deployment » Deployment","id":"69","title":"Deployment"},"7":{"body":"To deploy all canisters defined in your dfx.json: dfx deploy If you are building an HTTP-based canister and would like your canister to autoreload on file changes (DO NOT deploy to mainnet with autoreload enabled): AZLE_AUTORELOAD=true dfx deploy To deploy an individual canister: dfx deploy [canisterName]","breadcrumbs":"Deployment » Deploying to the local replica","id":"7","title":"Deploying to the local replica"},"70":{"body":"Open a terminal and navigate to your project's root directory: dfx start Alternatively you can start the local replica as a background process: dfx start --background If you want to stop a local replica running in the background: dfx stop If you ever see this error after dfx stop: Error: Failed to kill all processes. Remaining: 627221 626923 627260 Then try this: sudo kill -9 627221\nsudo kill -9 626923\nsudo kill -9 627260 If your replica starts behaving strangely, we recommend starting the replica clean, which will clean the dfx state of your project: dfx start --clean","breadcrumbs":"Old Candid-based Documentation » Deployment » Starting the local replica","id":"70","title":"Starting the local replica"},"71":{"body":"To deploy all canisters defined in your dfx.json: dfx deploy To deploy an individual canister: dfx deploy canister_name","breadcrumbs":"Old Candid-based Documentation » Deployment » Deploying to the local replica","id":"71","title":"Deploying to the local replica"},"72":{"body":"As a developer you can generally interact with your canister in three ways: dfx command line dfx web UI @dfinity/agent","breadcrumbs":"Old Candid-based Documentation » Deployment » Interacting with your canister","id":"72","title":"Interacting with your canister"},"73":{"body":"You can see a more complete reference here . The commands you are likely to use most frequently are: # assume a canister named my_canister # builds and deploys all canisters specified in dfx.json\ndfx deploy # builds all canisters specified in dfx.json\ndfx build # builds and deploys my_canister\ndfx deploy my_canister # builds my_canister\ndfx build my_canister # removes the Wasm binary and state of my_canister\ndfx uninstall-code my_canister # calls the methodName method on my_canister with a string argument\ndfx canister call my_canister methodName '(\"This is a Candid string argument\")'","breadcrumbs":"Old Candid-based Documentation » Deployment » dfx command line","id":"73","title":"dfx command line"},"74":{"body":"After deploying your canister, you should see output similar to the following in your terminal: Deployed canisters.\nURLs: Backend canister via Candid interface: my_canister: http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai Open up http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai to access the web UI.","breadcrumbs":"Old Candid-based Documentation » Deployment » dfx web UI","id":"74","title":"dfx web UI"},"75":{"body":"@dfinity/agent is the TypeScript/JavaScript client library for interacting with canisters on the IC. If you are building a client web application, this is probably what you'll want to use. There are other agents for other languages as well: Java Python Rust","breadcrumbs":"Old Candid-based Documentation » Deployment » @dfinity/agent","id":"75","title":"@dfinity/agent"},"76":{"body":"Assuming you are setup with cycles , then you are ready to deploy to mainnet. To deploy all canisters defined in your dfx.json: dfx deploy --network ic To deploy an individual canister: dfx deploy --network ic canister_name","breadcrumbs":"Old Candid-based Documentation » Deployment » Deploying to mainnet","id":"76","title":"Deploying to mainnet"},"77":{"body":"If you run into an error during deployment, try the following: Ensure that you have followed the instructions correctly in the installation chapter , especially noting the build dependencies Start the whole deployment process from scratch by running the following commands: dfx stop or simply terminate dfx in your terminal, dfx start --clean, npx azle clean, dfx deploy Look for more error output by adding the --verbose flag to the build command in your dfx.json file like so: \"build\": \"npx azle build hello_world --verbose Look for errors in each of the files in ~/.config/azle/rust/[rust_version]/logs Reach out in the Discord channel","breadcrumbs":"Old Candid-based Documentation » Deployment » Common deployment issues","id":"77","title":"Common deployment issues"},"78":{"body":"Azle has many example projects showing nearly all Azle APIs. They can be found in the examples directory of the Azle GitHub repository . We'll highlight a few of them and some others here: Query Update Primitive Types Stable Structures Cycles Cross Canister Calls Management Canister Outgoing HTTP Requests Incoming HTTP Requests Pre and Post Upgrade Timers Multisig Vault ICRC-1 IC Chainlink Data Feeds Bitcoin ckBTC","breadcrumbs":"Old Candid-based Documentation » Examples » Examples","id":"78","title":"Examples"},"79":{"body":"","breadcrumbs":"Old Candid-based Documentation » Query Methods » Query Methods","id":"79","title":"Query Methods"},"8":{"body":"You will generally interact with your canister through an HTTP client such as curl, fetch, or a web browser. The URL of your canister locally will look like this: http://[canisterId].localhost:[replicaPort]. Azle will print your canister's URL in the terminal after a successful deploy. # You can obtain the canisterId like this\ndfx canister id [canisterName] # You can obtain the replicaPort like this\ndfx info webserver-port # An example of performing a GET request to a canister\ncurl http://a3shf-5eaaa-aaaaa-qaafa-cai.localhost:8000 # An example of performing a POST request to a canister\ncurl -X POST -H \"Content-Type: application/json\" -d \"{ \\\"hello\\\": \\\"world\\\" }\" http://a3shf-5eaaa-aaaaa-qaafa-cai.localhost:8000","breadcrumbs":"Deployment » Interacting with your canister","id":"8","title":"Interacting with your canister"},"80":{"body":"Created with the query function Read-only Executed on a single node No consensus Latency on the order of ~100 milliseconds 5 billion Wasm instruction limit 4 GiB heap limit ~32k queries per second per canister The most basic way to expose your canister's functionality publicly is through a query method. Here's an example of a simple query method named getString: import { Canister, query, text } from 'azle'; export default Canister({ getString: query([], text, () => { return 'This is a query method!'; })\n}); Query methods are defined inside of a call to Canister using the query function. The first parameter to query is an array of CandidType objects that will be used to decode the Candid bytes of the arguments sent from the client when calling your query method. The second parameter to query is a CandidType object used to encode the return value of your function to Candid bytes to then be sent back to the client. The third parameter to query is the function that receives the decoded arguments, performs some computation, and then returns a value to be encoded. The TypeScript signature of this function (parameter and return types) will be inferred from the CandidType arguments in the first and second parameters to query. getString can be called from the outside world through the IC's HTTP API. You'll usually invoke this API from the dfx command line, dfx web UI, or an agent . From the dfx command line you can call it like this: dfx canister call my_canister getString Query methods are read-only. They do not persist any state changes. Take a look at the following example: import { Canister, query, text, Void } from 'azle'; let db: { [key: string]: string;\n} = {}; export default Canister({ set: query([text, text], Void, (key, value) => { db[key] = value; })\n}); Calling set will perform the operation of setting the key property on the db object to value, but after the call finishes that change will be discarded. This is because query methods are executed on a single node machine and do not go through consensus . This results in lower latencies, perhaps on the order of 100 milliseconds. There is a limit to how much computation can be done in a single call to a query method. The current query call limit is 5 billion Wasm instructions . Here's an example of a query method that runs the risk of reaching the limit: import { Canister, nat32, query, text } from 'azle'; export default Canister({ pyramid: query([nat32], text, (levels) => { return new Array(levels).fill(0).reduce((acc, _, index) => { const asterisks = new Array(index + 1).fill('*').join(''); return `${acc}${asterisks}\\n`; }, ''); })\n}); From the dfx command line you can call pyramid like this: dfx canister call my_canister pyramid '(1_000)' With an argument of 1_000, pyramid will fail with an error ...exceeded the instruction limit for single message execution. Keep in mind that each query method invocation has up to 4 GiB of heap available. In terms of query scalability, an individual canister likely has an upper bound of ~36k queries per second .","breadcrumbs":"Old Candid-based Documentation » Query Methods » TL;DR","id":"80","title":"TL;DR"},"81":{"body":"","breadcrumbs":"Old Candid-based Documentation » Update Methods » Update Methods","id":"81","title":"Update Methods"},"82":{"body":"Created with the update function Read-write Executed on many nodes Consensus Latency ~2-5 seconds 20 billion Wasm instruction limit 4 GiB heap limit 96 GiB stable memory limit ~900 updates per second per canister Update methods are similar to query methods, but state changes can be persisted. Here's an example of a simple update method: import { Canister, nat64, update } from 'azle'; let counter = 0n; export default Canister({ increment: update([], nat64, () => { return counter++; })\n}); Calling increment will return the current value of counter and then increase its value by 1. Because counter is a global variable, the change will be persisted to the heap, and subsequent query and update calls will have access to the new counter value. Because the Internet Computer (IC) persists changes with certain fault tolerance guarantees, update calls are executed on many nodes and go through consensus . This leads to latencies of ~2-5 seconds per update call. Due to the latency and other expenses involved with update methods, it is best to use them only when necessary. Look at the following example: import { Canister, query, text, update, Void } from 'azle'; let message = ''; export default Canister({ getMessage: query([], text, () => { return message; }), setMessage: update([text], Void, (newMessage) => { message = newMessage; })\n}); You'll notice that we use an update method, setMessage, only to perform the change to the global message variable. We use getMessage, a query method, to read the message. Keep in mind that the heap is limited to 4 GiB, and thus there is an upper bound to global variable storage capacity. You can imagine how a simple database like the following would eventually run out of memory with too many entries: import { Canister, None, Opt, query, Some, text, update, Void } from 'azle'; type Db = { [key: string]: string;\n}; let db: Db = {}; export default Canister({ get: query([text], Opt(text), (key) => { const value = db[key]; return value !== undefined ? Some(value) : None; }), set: update([text, text], Void, (key, value) => { db[key] = value; })\n}); If you need more than 4 GiB of storage, consider taking advantage of the 96 GiB of stable memory. Stable structures like StableBTreeMap give you a nice API for interacting with stable memory. These data structures will be covered in more detail later . Here's a simple example: import { Canister, Opt, query, StableBTreeMap, text, update, Void } from 'azle'; let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); })\n}); So far we have only seen how state changes can be persisted. State changes can also be discarded by implicit or explicit traps. A trap is an immediate stop to execution with the ability to provide a message to the execution environment. Traps can be useful for ensuring that multiple operations are either all completed or all disregarded, or in other words atomic. Keep in mind that these guarantees do not hold once cross-canister calls are introduced, but that's a more advanced topic covered later . Here's an example of how to trap and ensure atomic changes to your database: import { Canister, ic, Opt, query, Record, StableBTreeMap, text, update, Vec, Void\n} from 'azle'; const Entry = Record({ key: text, value: text\n}); let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); }), setMany: update([Vec(Entry)], Void, (entries) => { entries.forEach((entry) => { if (entry.key === 'trap') { ic.trap('explicit trap'); } db.insert(entry.key, entry.value); }); })\n}); In addition to ic.trap, an explicit JavaScript throw or any unhandled exception will also trap. There is a limit to how much computation can be done in a single call to an update method. The current update call limit is 20 billion Wasm instructions . If we modify our database example, we can introduce an update method that runs the risk of reaching the limit: import { Canister, nat64, Opt, query, StableBTreeMap, text, update, Void\n} from 'azle'; let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); }), setMany: update([nat64], Void, (numEntries) => { for (let i = 0; i < numEntries; i++) { db.insert(i.toString(), i.toString()); } })\n}); From the dfx command line you can call setMany like this: dfx canister call my_canister setMany '(10_000)' With an argument of 10_000, setMany will fail with an error ...exceeded the instruction limit for single message execution. In terms of update scalability, an individual canister likely has an upper bound of ~900 updates per second .","breadcrumbs":"Old Candid-based Documentation » Update Methods » TL;DR","id":"82","title":"TL;DR"},"83":{"body":"text blob nat nat8 nat16 nat32 nat64 int int8 int16 int32 int64 float32 float64 bool null vec opt record variant func service principal reserved empty Candid is an interface description language created by DFINITY . It can be used to define interfaces between services (canisters), allowing canisters and clients written in various languages to easily interact with each other. This interaction occurs through the serialization/encoding and deserialization/decoding of runtime values to and from Candid bytes. Azle performs automatic encoding and decoding of JavaScript values to and from Candid bytes through the use of various CandidType objects. For example, CandidType objects are used when defining the parameter and return types of your query and update methods. They are also used to define the keys and values of a StableBTreeMap. It's important to note that the CandidType objects decode Candid bytes into specific JavaScript runtime data structures that may differ in behavior from the description of the actual Candid type. For example, a float32 Candid type is a JavaScript Number , a nat64 is a JavaScript BigInt , and an int is also a JavaScript BigInt . Keep this in mind as it may result in unexpected behavior. Each CandidType object and its equivalent JavaScript runtime value is explained in more detail in The Azle Book Candid reference . A more canonical reference of all Candid types available on the Internet Computer (IC) can be found here . The following is a simple example showing how to import and use many of the CandidType objects available in Azle: import { blob, bool, Canister, float32, float64, Func, int, int16, int32, int64, int8, nat, nat16, nat32, nat64, nat8, None, Null, Opt, Principal, query, Record, Recursive, text, update, Variant, Vec\n} from 'azle'; const MyCanister = Canister({ query: query([], bool), update: update([], text)\n}); const Candid = Record({ text: text, blob: blob, nat: nat, nat64: nat64, nat32: nat32, nat16: nat16, nat8: nat8, int: int, int64: int64, int32: int32, int16: int16, int8: int8, float64: float64, float32: float32, bool: bool, null: Null, vec: Vec(text), opt: Opt(nat), record: Record({ firstName: text, lastName: text, age: nat8 }), variant: Variant({ Tag1: Null, Tag2: Null, Tag3: int }), func: Recursive(() => Func([], Candid, 'query')), canister: Canister({ query: query([], bool), update: update([], text) }), principal: Principal\n}); export default Canister({ candidTypes: query([], Candid, () => { return { text: 'text', blob: Uint8Array.from([]), nat: 340_282_366_920_938_463_463_374_607_431_768_211_455n, nat64: 18_446_744_073_709_551_615n, nat32: 4_294_967_295, nat16: 65_535, nat8: 255, int: 170_141_183_460_469_231_731_687_303_715_884_105_727n, int64: 9_223_372_036_854_775_807n, int32: 2_147_483_647, int16: 32_767, int8: 127, float64: Math.E, float32: Math.PI, bool: true, null: null, vec: ['has one element'], opt: None, record: { firstName: 'John', lastName: 'Doe', age: 35 }, variant: { Tag1: null }, func: [ Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'), 'candidTypes' ], canister: MyCanister(Principal.fromText('aaaaa-aa')), principal: Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai') }; })\n}); Calling candidTypes with dfx will return: ( record { func = func \"rrkah-fqaaa-aaaaa-aaaaq-cai\".candidTypes; text = \"text\"; nat16 = 65_535 : nat16; nat32 = 4_294_967_295 : nat32; nat64 = 18_446_744_073_709_551_615 : nat64; record = record { age = 35 : nat8; lastName = \"Doe\"; firstName = \"John\" }; int = 170_141_183_460_469_231_731_687_303_715_884_105_727 : int; nat = 340_282_366_920_938_463_463_374_607_431_768_211_455 : nat; opt = null; vec = vec { \"has one element\" }; variant = variant { Tag1 }; nat8 = 255 : nat8; canister = service \"aaaaa-aa\"; int16 = 32_767 : int16; int32 = 2_147_483_647 : int32; int64 = 9_223_372_036_854_775_807 : int64; null = null : null; blob = vec {}; bool = true; principal = principal \"ryjl3-tyaaa-aaaaa-aaaba-cai\"; int8 = 127 : int8; float32 = 3.1415927 : float32; float64 = 2.718281828459045 : float64; },\n)","breadcrumbs":"Old Candid-based Documentation » Candid » Candid","id":"83","title":"Candid"},"84":{"body":"","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Stable Structures","id":"84","title":"Stable Structures"},"85":{"body":"96 GiB of stable memory Persistent across upgrades Familiar API Must specify memory id No migrations per memory id Stable structures are data structures with familiar APIs that allow write and read access to stable memory. Stable memory is a separate memory location from the heap that currently allows up to 96 GiB of binary storage. Stable memory persists automatically across upgrades. Persistence on the Internet Computer (IC) is very important to understand. When a canister is upgraded (its code is changed after being initially deployed) its heap is wiped. This includes all global variables. On the other hand, anything stored in stable memory will be preserved. Writing and reading to and from stable memory can be done with a low-level API , but it is generally easier and preferable to use stable structures. Azle currently provides one stable structure called StableBTreeMap. It's similar to a JavaScript Map and has most of the common operations you'd expect such as reading, inserting, and removing values. Here's how to define a simple StableBTreeMap: import { nat8, StableBTreeMap, text } from 'azle'; let map = StableBTreeMap(0); This is a StableBTreeMap with a key of type nat8 and a value of type text. Unless you want a default type of any for your key and value, then you must explicitly type your StableBTreeMap with type arguments. StableBTreeMap works by encoding and decoding values under-the-hood, storing and retrieving these values in bytes in stable memory. When writing to and reading from a StableBTreeMap, by default the stableJson Serializable object is used to encode JS values into bytes and to decode JS values from bytes. stableJson uses JSON.stringify and JSON.parse with a custom replacer and reviver to handle many Candid and other values that you will most likely use in your canisters. You may use other Serializable objects besides stableJson, and you can even create your own. Simply pass in a Serializable object as the second and third parameters to your StableBTreeMap. The second parameter is the key Serializable object and the third parameter is the value Serializable object. For example, the following StableBTreeMap uses the nat8 and text CandidType objects from Azle as Serializable objects. These Serializable objects will encode and decode to and from Candid bytes: import { nat8, StableBTreeMap, text } from 'azle'; let map = StableBTreeMap(0, nat8, text); All CandidType objects imported from azle are Serializable objects. A Serializable object simply has a toBytes method that takes a JS value and returns a Uint8Array, and a fromBytes method that takes a Uint8Array and returns a JS value. Here's an example of how to create your own simple JSON Serializable: export interface Serializable { toBytes: (data: any) => Uint8Array; fromBytes: (bytes: Uint8Array) => any;\n} export function StableSimpleJson(): Serializable { return { toBytes(data: any) { const result = JSON.stringify(data); return Uint8Array.from(Buffer.from(result)); }, fromBytes(bytes: Uint8Array) { return JSON.parse(Buffer.from(bytes).toString()); } };\n} This StableBTreeMap also has a memory id of 0. Each StableBTreeMap instance must have a unique memory id between 0 and 254. Once a memory id is allocated, it cannot be used with a different StableBTreeMap. This means you can't create another StableBTreeMap using the same memory id, and you can't change the key or value types of an existing StableBTreeMap. This problem will be addressed to some extent . Here's an example showing all of the basic StableBTreeMap operations: import { bool, Canister, nat64, nat8, Opt, query, StableBTreeMap, text, Tuple, update, Vec\n} from 'azle'; const Key = nat8;\ntype Key = typeof Key.tsType; const Value = text;\ntype Value = typeof Value.tsType; let map = StableBTreeMap(0); export default Canister({ containsKey: query([Key], bool, (key) => { return map.containsKey(key); }), get: query([Key], Opt(Value), (key) => { return map.get(key); }), insert: update([Key, Value], Opt(Value), (key, value) => { return map.insert(key, value); }), isEmpty: query([], bool, () => { return map.isEmpty(); }), items: query([], Vec(Tuple(Key, Value)), () => { return map.items(); }), keys: query([], Vec(Key), () => { return Uint8Array.from(map.keys()); }), len: query([], nat64, () => { return map.len(); }), remove: update([Key], Opt(Value), (key) => { return map.remove(key); }), values: query([], Vec(Value), () => { return map.values(); })\n}); With these basic operations you can build more complex CRUD database applications: import { blob, Canister, ic, Err, nat64, Ok, Opt, Principal, query, Record, Result, StableBTreeMap, text, update, Variant, Vec\n} from 'azle'; const User = Record({ id: Principal, createdAt: nat64, recordingIds: Vec(Principal), username: text\n});\ntype User = typeof User.tsType; const Recording = Record({ id: Principal, audio: blob, createdAt: nat64, name: text, userId: Principal\n});\ntype Recording = typeof Recording.tsType; const AudioRecorderError = Variant({ RecordingDoesNotExist: Principal, UserDoesNotExist: Principal\n});\ntype AudioRecorderError = typeof AudioRecorderError.tsType; let users = StableBTreeMap(0);\nlet recordings = StableBTreeMap(1); export default Canister({ createUser: update([text], User, (username) => { const id = generateId(); const user: User = { id, createdAt: ic.time(), recordingIds: [], username }; users.insert(user.id, user); return user; }), readUsers: query([], Vec(User), () => { return users.values(); }), readUserById: query([Principal], Opt(User), (id) => { return users.get(id); }), deleteUser: update([Principal], Result(User, AudioRecorderError), (id) => { const userOpt = users.get(id); if ('None' in userOpt) { return Err({ UserDoesNotExist: id }); } const user = userOpt.Some; user.recordingIds.forEach((recordingId) => { recordings.remove(recordingId); }); users.remove(user.id); return Ok(user); }), createRecording: update( [blob, text, Principal], Result(Recording, AudioRecorderError), (audio, name, userId) => { const userOpt = users.get(userId); if ('None' in userOpt) { return Err({ UserDoesNotExist: userId }); } const user = userOpt.Some; const id = generateId(); const recording: Recording = { id, audio, createdAt: ic.time(), name, userId }; recordings.insert(recording.id, recording); const updatedUser: User = { ...user, recordingIds: [...user.recordingIds, recording.id] }; users.insert(updatedUser.id, updatedUser); return Ok(recording); } ), readRecordings: query([], Vec(Recording), () => { return recordings.values(); }), readRecordingById: query([Principal], Opt(Recording), (id) => { return recordings.get(id); }), deleteRecording: update( [Principal], Result(Recording, AudioRecorderError), (id) => { const recordingOpt = recordings.get(id); if ('None' in recordingOpt) { return Err({ RecordingDoesNotExist: id }); } const recording = recordingOpt.Some; const userOpt = users.get(recording.userId); if ('None' in userOpt) { return Err({ UserDoesNotExist: recording.userId }); } const user = userOpt.Some; const updatedUser: User = { ...user, recordingIds: user.recordingIds.filter( (recordingId) => recordingId.toText() !== recording.id.toText() ) }; users.insert(updatedUser.id, updatedUser); recordings.remove(id); return Ok(recording); } )\n}); function generateId(): Principal { const randomBytes = new Array(29) .fill(0) .map((_) => Math.floor(Math.random() * 256)); return Principal.fromUint8Array(Uint8Array.from(randomBytes));\n} The example above shows a very basic audio recording backend application. There are two types of entities that need to be stored, User and Recording. These are represented as Candid records. Each entity gets its own StableBTreeMap: import { blob, Canister, ic, Err, nat64, Ok, Opt, Principal, query, Record, Result, StableBTreeMap, text, update, Variant, Vec\n} from 'azle'; const User = Record({ id: Principal, createdAt: nat64, recordingIds: Vec(Principal), username: text\n});\ntype User = typeof User.tsType; const Recording = Record({ id: Principal, audio: blob, createdAt: nat64, name: text, userId: Principal\n});\ntype Recording = typeof Recording.tsType; const AudioRecorderError = Variant({ RecordingDoesNotExist: Principal, UserDoesNotExist: Principal\n});\ntype AudioRecorderError = typeof AudioRecorderError.tsType; let users = StableBTreeMap(0);\nlet recordings = StableBTreeMap(1); Notice that each StableBTreeMap has a unique memory id. You can begin to create basic database CRUD functionality by creating one StableBTreeMap per entity. It's up to you to create functionality for querying, filtering, and relations. StableBTreeMap is not a full-featured database solution, but a fundamental building block that may enable you to achieve more advanced database functionality. Demergent Labs plans to deeply explore database solutions on the IC in the future.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » TL;DR","id":"85","title":"TL;DR"},"86":{"body":"","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Caveats","id":"86","title":"Caveats"},"87":{"body":"It seems to be only some float64 values cannot be successfully stored and retrieved with a StableBTreeMap using stableJson because of this bug with JSON.parse: https://github.com/bellard/quickjs/issues/206","breadcrumbs":"Old Candid-based Documentation » Stable Structures » float64 values","id":"87","title":"float64 values"},"88":{"body":"Azle's Candid encoding/decoding implementation is currently not well optimized, and Candid may not be the most optimal encoding format overall, so you may experience heavy instruction usage when performing many StableBTreeMap operations in succession. A rough idea of the overhead from our preliminary testing is probably 1-2 million instructions for a full Candid encoding and decoding of values per StableBTreeMap operation. For these reasons we recommend using the stableJson Serializable object (the default) instead of CandidType Serializable objects.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » CandidType Performance","id":"88","title":"CandidType Performance"},"89":{"body":"Migrations must be performed manually by reading the values out of one StableBTreeMap and writing them into another. Once a StableBTreeMap is initialized to a specific memory id, that memory id cannot be changed unless the canister is completely wiped and initialized again.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Migrations","id":"89","title":"Migrations"},"9":{"body":"Assuming you are setup with a cycles wallet , then you are ready to deploy to mainnet. To deploy all canisters defined in your dfx.json: dfx deploy --network ic To deploy an individual canister: dfx deploy --network ic [canisterName] The URL of your canister on mainnet will look like this: https://[canisterId].raw.icp0.io.","breadcrumbs":"Deployment » Deploying to mainnet","id":"9","title":"Deploying to mainnet"},"90":{"body":"Canister values do not currently work with the default stableJson implementation. If you must persist Canisters, consider using the Canister CandidType object as your Serializable object in your StableBTreeMap, or create a custom replacer or reviver for stableJson that handles Canister.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Canister","id":"90","title":"Canister"},"91":{"body":"Examples: async_await bitcoin composite_queries cross_canister_calls cycles ethereum_json_rpc func_types heartbeat inline_types ledger_canister management_canister outgoing_http_requests threshold_ecdsa rejections timers tuple_types whoami Canisters are generally able to call the query or update methods of other canisters in any subnet. We refer to these types of calls as cross-canister calls. A cross-canister call begins with a definition of the canister to be called. Imagine a simple canister called token_canister: import { Canister, ic, nat64, Opt, Principal, StableBTreeMap, update\n} from 'azle'; let accounts = StableBTreeMap(0); export default Canister({ transfer: update([Principal, nat64], nat64, (to, amount) => { const from = ic.caller(); const fromBalance = getBalance(accounts.get(from)); const toBalance = getBalance(accounts.get(to)); accounts.insert(from, fromBalance - amount); accounts.insert(to, toBalance + amount); return amount; })\n}); function getBalance(accountOpt: Opt): nat64 { if ('None' in accountOpt) { return 0n; } else { return accountOpt.Some; }\n} Now that you have the canister definition, you can import and instantiate it in another canister: import { Canister, ic, nat64, Principal, update } from 'azle';\nimport TokenCanister from './token_canister'; const tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); If you don't have the actual definition of the token canister with the canister method implementations, you can always create your own canister definition without method implementations: import { Canister, ic, nat64, Principal, update } from 'azle'; const TokenCanister = Canister({ transfer: update([Principal, nat64], nat64)\n}); const tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); The IC guarantees that cross-canister calls will return. This means that, generally speaking, you will always receive a response from ic.call. If there are errors during the call, ic.call will throw. Wrapping your cross-canister call in a try...catch allows you to handle these errors. Let's add to our example code and explore adding some practical error-handling to stop people from stealing tokens. token_canister: import { Canister, ic, nat64, Opt, Principal, StableBTreeMap, update\n} from 'azle'; let accounts = StableBTreeMap(0); export default Canister({ transfer: update([Principal, nat64], nat64, (to, amount) => { const from = ic.caller(); const fromBalance = getBalance(accounts.get(from)); if (amount > fromBalance) { throw new Error(`${from} has an insufficient balance`); } const toBalance = getBalance(accounts.get(to)); accounts.insert(from, fromBalance - amount); accounts.insert(to, toBalance + amount); return amount; })\n}); function getBalance(accountOpt: Opt): nat64 { if ('None' in accountOpt) { return 0n; } else { return accountOpt.Some; }\n} payout_canister: import { Canister, ic, nat64, Principal, update } from 'azle';\nimport TokenCanister from './index'; const tokenCanister = TokenCanister( Principal.fromText('bkyz2-fmaaa-aaaaa-qaaaq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { try { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); } catch (error) { console.log(error); } return 0n; })\n}); Throwing will allow you to express error conditions and halt execution, but you may find embracing the Result variant as a better solution for error handling because of its composability and predictability. So far we have only shown a cross-canister call from an update method. Update methods can call other update methods or query methods (but not composite query methods as discussed below). If an update method calls a query method, that query method will be called in replicated mode. Replicated mode engages the consensus process, but for queries the state will still be discarded. Cross-canister calls can also be initiated from query methods. These are known as composite queries, and in Azle they are simply async query methods. Composite queries can call other composite query methods and regular query methods. Composite queries cannot call update methods. Here's an example of a composite query method: import { bool, Canister, ic, Principal, query } from 'azle'; const SomeCanister = Canister({ queryForBoolean: query([], bool)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ querySomeCanister: query([], bool, async () => { return await ic.call(someCanister.queryForBoolean); })\n}); You can expect cross-canister calls within the same subnet to take up to a few seconds to complete, and cross-canister calls across subnets take about double that time . Composite queries should be much faster, similar to query calls in latency. If you don't need to wait for your cross-canister call to return, you can use notify: import { Canister, ic, Principal, update, Void } from 'azle'; const SomeCanister = Canister({ receiveNotification: update([], Void)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ sendNotification: update([], Void, () => { return ic.notify(someCanister.receiveNotification); })\n}); If you need to send cycles with your cross-canister call, you can add cycles to the config object of ic.notify: import { Canister, ic, Principal, update, Void } from 'azle'; const SomeCanister = Canister({ receiveNotification: update([], Void)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ sendNotification: update([], Void, () => { return ic.notify(someCanister.receiveNotification, { cycles: 1_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Cross-canister » Cross-canister","id":"91","title":"Cross-canister"},"92":{"body":"This chapter is a work in progress.","breadcrumbs":"Old Candid-based Documentation » HTTP » HTTP","id":"92","title":"HTTP"},"93":{"body":"Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, query, Record, text, Tuple, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request: query([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » HTTP » Incoming HTTP requests","id":"93","title":"Incoming HTTP requests"},"94":{"body":"Examples: ethereum_json_rpc outgoing_http_requests import { Canister, ic, init, nat32, Principal, query, Some, StableBTreeMap, text, update\n} from 'azle';\nimport { HttpResponse, HttpTransformArgs, managementCanister\n} from 'azle/canisters/management'; let stableStorage = StableBTreeMap(0); export default Canister({ init: init([text], (ethereumUrl) => { stableStorage.insert('ethereumUrl', ethereumUrl); }), ethGetBalance: update([text], text, async (ethereumAddress) => { const urlOpt = stableStorage.get('ethereumUrl'); if ('None' in urlOpt) { throw new Error('ethereumUrl is not defined'); } const url = urlOpt.Some; const httpResponse = await ic.call(managementCanister.http_request, { args: [ { url, max_response_bytes: Some(2_000n), method: { post: null }, headers: [], body: Some( Buffer.from( JSON.stringify({ jsonrpc: '2.0', method: 'eth_getBalance', params: [ethereumAddress, 'earliest'], id: 1 }), 'utf-8' ) ), transform: Some({ function: [ic.id(), 'ethTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); return Buffer.from(httpResponse.body.buffer).toString('utf-8'); }), ethGetBlockByNumber: update([nat32], text, async (number) => { const urlOpt = stableStorage.get('ethereumUrl'); if ('None' in urlOpt) { throw new Error('ethereumUrl is not defined'); } const url = urlOpt.Some; const httpResponse = await ic.call(managementCanister.http_request, { args: [ { url, max_response_bytes: Some(2_000n), method: { post: null }, headers: [], body: Some( Buffer.from( JSON.stringify({ jsonrpc: '2.0', method: 'eth_getBlockByNumber', params: [`0x${number.toString(16)}`, false], id: 1 }), 'utf-8' ) ), transform: Some({ function: [ic.id(), 'ethTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); return Buffer.from(httpResponse.body.buffer).toString('utf-8'); }), ethTransform: query([HttpTransformArgs], HttpResponse, (args) => { return { ...args.response, headers: [] }; })\n});","breadcrumbs":"Old Candid-based Documentation » HTTP » Outgoing HTTP requests","id":"94","title":"Outgoing HTTP requests"},"95":{"body":"This chapter is a work in progress. You can access the management canister like this: import { blob, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ randomBytes: update([], blob, async () => { return await ic.call(managementCanister.raw_rand); })\n}); See the management canister reference section for more information.","breadcrumbs":"Old Candid-based Documentation » Management Canister » Management Canister","id":"95","title":"Management Canister"},"96":{"body":"This chapter is a work in progress. import { Canister, init, postUpgrade, preUpgrade } from 'azle'; export default Canister({ init: init([], () => { console.log('runs on first canister install'); }), preUpgrade: preUpgrade(() => { console.log('runs before canister upgrade'); }), postUpgrade: postUpgrade([], () => { console.log('runs after canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Canister Lifecycle » Canister Lifecycle","id":"96","title":"Canister Lifecycle"},"97":{"body":"This chapter is a work in progress. import { blob, bool, Canister, Duration, ic, int8, query, Record, text, TimerId, update, Void\n} from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const StatusReport = Record({ single: bool, inline: int8, capture: text, repeat: int8, singleCrossCanister: blob, repeatCrossCanister: blob\n}); const TimerIds = Record({ single: TimerId, inline: TimerId, capture: TimerId, repeat: TimerId, singleCrossCanister: TimerId, repeatCrossCanister: TimerId\n}); let statusReport: typeof StatusReport = { single: false, inline: 0, capture: '', repeat: 0, singleCrossCanister: Uint8Array.from([]), repeatCrossCanister: Uint8Array.from([])\n}; export default Canister({ clearTimer: update([TimerId], Void, (timerId) => { ic.clearTimer(timerId); console.log(`timer ${timerId} cancelled`); }), setTimers: update([Duration, Duration], TimerIds, (delay, interval) => { const capturedValue = '🚩'; const singleId = ic.setTimer(delay, oneTimeTimerCallback); const inlineId = ic.setTimer(delay, () => { statusReport.inline = 1; console.log('Inline timer called'); }); const captureId = ic.setTimer(delay, () => { statusReport.capture = capturedValue; console.log(`Timer captured value ${capturedValue}`); }); const repeatId = ic.setTimerInterval(interval, () => { statusReport.repeat++; console.log(`Repeating timer. Call ${statusReport.repeat}`); }); const singleCrossCanisterId = ic.setTimer( delay, singleCrossCanisterTimerCallback ); const repeatCrossCanisterId = ic.setTimerInterval( interval, repeatCrossCanisterTimerCallback ); return { single: singleId, inline: inlineId, capture: captureId, repeat: repeatId, singleCrossCanister: singleCrossCanisterId, repeatCrossCanister: repeatCrossCanisterId }; }), statusReport: query([], StatusReport, () => { return statusReport; })\n}); function oneTimeTimerCallback() { statusReport.single = true; console.log('oneTimeTimerCallback called');\n} async function singleCrossCanisterTimerCallback() { console.log('singleCrossCanisterTimerCallback'); statusReport.singleCrossCanister = await ic.call( managementCanister.raw_rand );\n} async function repeatCrossCanisterTimerCallback() { console.log('repeatCrossCanisterTimerCallback'); statusReport.repeatCrossCanister = Uint8Array.from([ ...statusReport.repeatCrossCanister, ...(await ic.call(managementCanister.raw_rand)) ]);\n}","breadcrumbs":"Old Candid-based Documentation » Timers » Timers","id":"97","title":"Timers"},"98":{"body":"This chapter is a work in progress. Cycles are essentially units of computational resources such as bandwidth, memory, and CPU instructions. Costs are generally metered on the Internet Computer (IC) by cycles. You can see a breakdown of all cycle costs here . Currently queries do not have any cycle costs. Most important to you will probably be update costs. TODO break down some cycle scenarios maybe? Perhaps we should show some of our analyses for different types of applications. Maybe show how to send and receive cycles, exactly how to do it. Show all of the APIs for sending or receiving cycles? Perhaps we don't need to do that here, since each API will show this information. Maybe here we just show the basic concept of cycles, link to the main cycles cost page, and show a few examples of how to break down these costs or estimate these costs.","breadcrumbs":"Old Candid-based Documentation » Cycles » Cycles","id":"98","title":"Cycles"},"99":{"body":"","breadcrumbs":"Old Candid-based Documentation » Caveats » Caveats","id":"99","title":"Caveats"}},"length":229,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772}}},"df":6,"docs":{"137":{"tf":2.0},"161":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"129":{"tf":1.0},"16":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"x":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"6":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"1":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"'":{"*":{"'":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":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":{"80":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"134":{"tf":1.0}}},"5":{"df":1,"docs":{"134":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"29":{"tf":1.0}}}},"1":{"0":{"6":{"4":{"3":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"134":{"tf":1.0}}},"4":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"134":{"tf":1.0}}},"7":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"6":{"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":2,"docs":{"144":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"8":{"df":9,"docs":{"111":{"tf":2.449489742783178},"117":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.4142135623730951}}},"4":{":":{"3":{"5":{":":{"3":{"0":{".":{"4":{"3":{"3":{"5":{"0":{"1":{"9":{"8":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"3":{"4":{".":{"6":{"5":{"2":{"5":{"8":{"7":{"4":{"1":{"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"_":{"1":{"4":{"1":{"_":{"1":{"8":{"3":{"_":{"4":{"6":{"0":{"_":{"4":{"6":{"9":{"_":{"2":{"3":{"1":{"_":{"7":{"3":{"1":{"_":{"6":{"8":{"7":{"_":{"3":{"0":{"3":{"_":{"7":{"1":{"5":{"_":{"8":{"8":{"4":{"_":{"1":{"0":{"5":{"_":{"7":{"2":{"7":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"143":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"27":{"tf":1.4142135623730951}},"t":{"1":{"4":{":":{"3":{"5":{":":{"3":{"1":{".":{"9":{"8":{"3":{"5":{"9":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"1":{":":{"3":{"9":{".":{"1":{"9":{"4":{"3":{"7":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"_":{"4":{"4":{"6":{"_":{"7":{"4":{"4":{"_":{"0":{"7":{"3":{"_":{"7":{"0":{"9":{"_":{"5":{"5":{"1":{"_":{"6":{"1":{"5":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"152":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"161":{"tf":1.7320508075688772},"178":{"tf":1.0},"228":{"tf":2.0},"29":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"2":{".":{"0":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"7":{"1":{"8":{"2":{"8":{"1":{"8":{"2":{"8":{"4":{"5":{"9":{"0":{"4":{"5":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"228":{"tf":1.0}}},"4":{"df":4,"docs":{"0":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"54":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"57":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}},"5":{"4":{"df":1,"docs":{"85":{"tf":1.0}}},"5":{"df":2,"docs":{"149":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"4":{"7":{"_":{"4":{"8":{"3":{"_":{"6":{"4":{"7":{"df":2,"docs":{"146":{"tf":1.7320508075688772},"83":{"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":8,"docs":{"103":{"tf":1.0},"161":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0},"82":{"tf":1.4142135623730951},"88":{"tf":1.0}},"i":{"a":{"a":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"7":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0}}},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"3":{".":{"1":{"4":{"1":{"5":{"9":{"2":{"7":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"7":{"6":{"7":{"df":2,"docs":{"145":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"174":{"tf":1.0},"205":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"3":{"df":1,"docs":{"134":{"tf":1.0}}},"4":{"0":{"_":{"2":{"8":{"2":{"_":{"3":{"6":{"6":{"_":{"9":{"2":{"0":{"_":{"9":{"3":{"8":{"_":{"4":{"6":{"3":{"_":{"4":{"6":{"3":{"_":{"3":{"7":{"4":{"_":{"6":{"0":{"7":{"_":{"4":{"3":{"1":{"_":{"7":{"6":{"8":{"_":{"2":{"1":{"1":{"_":{"4":{"5":{"5":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"6":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":4,"docs":{"161":{"tf":1.7320508075688772},"18":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}},"2":{"df":1,"docs":{"135":{"tf":1.0}}},"_":{"2":{"9":{"4":{"_":{"9":{"6":{"7":{"_":{"2":{"9":{"5":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"83":{"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":5,"docs":{"228":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772}}},"5":{"0":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}},"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":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"a":{"a":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"2":{"6":{"9":{"2":{"3":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"1":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"_":{"5":{"3":{"5":{"df":2,"docs":{"150":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"a":{"a":{"a":{"a":{"df":3,"docs":{"115":{"tf":1.0},"142":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"6":{"c":{"3":{"5":{"5":{"8":{"a":{"a":{"d":{"2":{"4":{"2":{"2":{"4":{"8":{"5":{"2":{"a":{"9":{"5":{"8":{"2":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"1":{"7":{"8":{"4":{"0":{"2":{"c":{"b":{"3":{"6":{"7":{"9":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"27":{"tf":1.0},"94":{"tf":2.0}}},"9":{"0":{"0":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":1,"docs":{"19":{"tf":1.0}}},"6":{"df":3,"docs":{"56":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"_":{"2":{"2":{"3":{"_":{"3":{"7":{"2":{"_":{"0":{"3":{"6":{"_":{"8":{"5":{"4":{"_":{"7":{"7":{"5":{"_":{"8":{"0":{"7":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"147":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}},"_":{"df":1,"docs":{"80":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"17":{"tf":2.0},"27":{"tf":1.4142135623730951}}}}}},"a":{"a":{"a":{"a":{"a":{"df":14,"docs":{"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"68":{"tf":2.0},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"91":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"q":{"df":5,"docs":{"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"b":{"a":{"df":5,"docs":{"129":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{},"q":{"df":3,"docs":{"115":{"tf":1.0},"142":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"158":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"82":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"13":{"tf":1.0},"182":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"}":{"$":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"142":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"28":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"57":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"df":2,"docs":{"77":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":1,"docs":{"83":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"22":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"62":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"210":{"tf":1.0},"53":{"tf":3.7416573867739413},"56":{"tf":1.4142135623730951},"62":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"j":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.0},"182":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"70":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"47":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"115":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"91":{"tf":3.872983346207417}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"212":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":2.8284271247461903}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"59":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"139":{"tf":2.0},"157":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":21,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"13":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"210":{"tf":1.4142135623730951},"22":{"tf":1.0},"53":{"tf":3.4641016151377544},"54":{"tf":2.0},"56":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"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":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"'":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":8,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"53":{"tf":1.0}},"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":{"3":{"tf":1.0},"53":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":21,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":4.123105625617661},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"75":{"tf":1.0},"85":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"y":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"1":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"2":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"3":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"4":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":27,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"128":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"139":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"2":{"9":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"0":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"(":{"(":{"a":{"c":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"142":{"tf":1.0},"161":{"tf":1.0},"19":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":3.4641016151377544},"31":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"17":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"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":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"175":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"85":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"85":{"tf":2.6457513110645907}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":2.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"53":{"tf":2.23606797749979}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":2.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"df":8,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":2.449489742783178}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"111":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"53":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":34,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":3.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":2.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"187":{"tf":1.0},"210":{"tf":1.0}}},"y":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":160,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":2.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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":2.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.8284271247461903},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":3.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":3.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":2.0},"85":{"tf":2.8284271247461903},"91":{"tf":3.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"'":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"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":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"188":{"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":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":2.23606797749979},"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"@":{"0":{".":{"2":{"1":{".":{"1":{"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":{}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}}},"df":4,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"59":{"tf":2.6457513110645907},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"32":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"36":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"1":{"0":{"0":{"2":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"6":{"4":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"2":{"8":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"5":{"5":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"1":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"6":{"1":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"32":{"tf":1.0},"37":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"39":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"32":{"tf":1.0},"40":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"44":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"142":{"tf":1.0},"16":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"d":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"162":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"53":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"48":{"tf":2.449489742783178},"54":{"tf":1.0},"7":{"tf":1.0}}},"h":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"58":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"54":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"161":{"tf":1.0},"54":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"184":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"85":{"tf":1.0},"91":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"104":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"91":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.4142135623730951},"53":{"tf":2.6457513110645907}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"a":{"df":6,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"100":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"91":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"83":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"228":{"tf":2.0},"53":{"tf":2.23606797749979},"73":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":2.23606797749979},"115":{"tf":1.0},"118":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"53":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"53":{"tf":1.0}},"o":{"b":{"df":31,"docs":{"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"137":{"tf":3.4641016151377544},"139":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"194":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"93":{"tf":2.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"53":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"179":{"tf":2.0},"180":{"tf":2.0},"200":{"tf":1.0},"27":{"tf":1.4142135623730951},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"l":{"df":29,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"121":{"tf":2.0},"135":{"tf":2.0},"136":{"tf":1.0},"138":{"tf":3.4641016151377544},"154":{"tf":1.7320508075688772},"158":{"tf":2.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"214":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"52":{"tf":1.0},"54":{"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":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"g":{"df":4,"docs":{"105":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.0},"228":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.0},"77":{"tf":2.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"31":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":3.7416573867739413},"54":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":2.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"2":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"6":{"9":{"df":0,"docs":{},"f":{"4":{"4":{"2":{"9":{"9":{"8":{"df":0,"docs":{},"e":{"4":{"c":{"d":{"a":{"4":{"6":{"1":{"9":{"1":{"6":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"a":{"9":{"b":{"c":{"9":{"1":{"4":{"1":{"8":{"b":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"\"":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"91":{"tf":2.449489742783178}}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"142":{"tf":1.0},"17":{"tf":1.4142135623730951},"179":{"tf":2.0},"180":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"93":{"tf":2.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":66,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.449489742783178},"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},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"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.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":2.0},"17":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"22":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979},"62":{"tf":3.1622776601683795},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":3.3166247903554},"82":{"tf":3.0},"83":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":4.58257569495584},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"111":{"tf":1.0},"120":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":46,"docs":{"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"11":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":2.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":3.4641016151377544},"85":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"103":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":169,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"150":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":2.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":2.449489742783178},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":2.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":2.8284271247461903},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":2.0},"31":{"tf":2.449489742783178},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":3.0},"54":{"tf":2.8284271247461903},"55":{"tf":1.4142135623730951},"56":{"tf":2.0},"58":{"tf":2.0},"59":{"tf":1.7320508075688772},"62":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"8":{"tf":2.449489742783178},"80":{"tf":3.3166247903554},"82":{"tf":4.0},"83":{"tf":3.0},"85":{"tf":2.6457513110645907},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979},"91":{"tf":6.324555320336759},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979},"96":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":10,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.7320508075688772},"31":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"188":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"190":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"47":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"190":{"tf":1.0},"195":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"165":{"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":{"26":{"tf":1.0}}}}}}},"i":{"d":{"df":14,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"97":{"tf":2.23606797749979}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"154":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"228":{"tf":1.0},"53":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"3":{"tf":1.0},"47":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.0}},"k":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"49":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"162":{"tf":1.0},"169":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"174":{"tf":1.4142135623730951}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"n":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":15,"docs":{"210":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"62":{"tf":2.449489742783178},"7":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":2.6457513110645907},"85":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"57":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":3,"docs":{"107":{"tf":1.0},"110":{"tf":2.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"210":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"53":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}},"u":{"d":{"df":3,"docs":{"53":{"tf":3.3166247903554},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":19,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"210":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"53":{"tf":2.6457513110645907},"56":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"73":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"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":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}}},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"228":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"53":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"36":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.449489742783178},"73":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}},"x":{"df":2,"docs":{"53":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"107":{"tf":1.0},"29":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"34":{"tf":1.0},"47":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"62":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"i":{"d":{"df":3,"docs":{"24":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"n":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}}}}},"`":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":23,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}}}}}}}},"df":6,"docs":{"227":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}}}},"df":35,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"179":{"tf":2.8284271247461903},"180":{"tf":2.8284271247461903},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"20":{"tf":2.8284271247461903},"205":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":4.898979485566356},"91":{"tf":4.0},"93":{"tf":2.8284271247461903},"94":{"tf":2.449489742783178},"97":{"tf":3.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"160":{"tf":1.0},"34":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"162":{"tf":1.0},"171":{"tf":1.4142135623730951},"209":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":2.0},"19":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"11":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"54":{"tf":1.0},"98":{"tf":2.6457513110645907}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"162":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.0},"82":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"54":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":2.449489742783178},"90":{"tf":1.0},"91":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"176":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"158":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":3.3166247903554}}}}},"u":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"47":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"13":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":8,"docs":{"11":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":30,"docs":{"111":{"tf":2.449489742783178},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":2.23606797749979},"127":{"tf":2.23606797749979},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":2.0},"94":{"tf":1.4142135623730951},"98":{"tf":3.1622776601683795}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979}}}},"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":{"169":{"tf":1.0}}}}}}}},"df":17,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"139":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"82":{"tf":2.449489742783178}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"228":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":31,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"62":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":123,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.8284271247461903},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"62":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"62":{"tf":1.0},"91":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":1.7320508075688772},"85":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"26":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"df":0,"docs":{},"y":{"df":32,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":2.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":2.449489742783178},"31":{"tf":2.23606797749979},"44":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"65":{"tf":2.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"7":{"tf":2.6457513110645907},"71":{"tf":2.23606797749979},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"76":{"tf":2.449489742783178},"77":{"tf":2.0},"8":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":2.449489742783178}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":1.0},"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"210":{"tf":1.4142135623730951},"29":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":3.1622776601683795},"69":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":2.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"11":{"tf":2.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"6":{".":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":52,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"2":{"tf":2.0},"3":{"tf":2.0},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"57":{"tf":2.0},"59":{"tf":2.0},"6":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.6457513110645907},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"i":{"a":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"l":{"\\":{"0":{"0":{"\\":{"0":{"0":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"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":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"4":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"78":{"tf":1.0}}}},"y":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"176":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"100":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"10":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"54":{"tf":1.0},"62":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"52":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"28":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"228":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"62":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"54":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"83":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"108":{"tf":1.0},"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}},"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"131":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":3.605551275463989},"62":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"7":{"tf":1.0},"85":{"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":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"154":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"162":{"tf":1.0},"164":{"tf":1.4142135623730951},"18":{"tf":1.0},"62":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"103":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"53":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"10":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"53":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"170":{"tf":1.0},"82":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"188":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"102":{"tf":1.7320508075688772},"106":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"54":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"154":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"158":{"tf":1.0},"85":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.7320508075688772},"139":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":3.605551275463989},"27":{"tf":3.3166247903554},"28":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":2.449489742783178}}}}}},"s":{"2":{"0":{"2":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":9,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}}},"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":{"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"53":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":110,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979},"83":{"tf":1.7320508075688772},"85":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"161":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"170":{"tf":1.0},"176":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":2.0},"62":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979},"91":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"54":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"54":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"210":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772},"88":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"82":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"55":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":120,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":2.0},"91":{"tf":2.8284271247461903},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"210":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"16":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"27":{"tf":2.449489742783178},"4":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"31":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"139":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"121":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"82":{"tf":1.0},"91":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"13":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"78":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":19,"docs":{"0":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"19":{"tf":2.0},"28":{"tf":2.0},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}}}}},"l":{"(":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"193":{"tf":1.0},"85":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"24":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":1.0},"34":{"tf":1.0}}}},"d":{"df":6,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"160":{"tf":2.23606797749979}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"142":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.4142135623730951},"96":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}},"x":{"df":2,"docs":{"10":{"tf":1.0},"103":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"136":{"tf":1.0},"140":{"tf":3.7416573867739413},"83":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"136":{"tf":1.0},"141":{"tf":3.7416573867739413},"83":{"tf":2.6457513110645907},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":1,"docs":{"69":{"tf":1.0}}}}},"m":{"a":{"a":{"a":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":27,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"210":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.449489742783178},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"df":6,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"a":{"a":{"a":{"df":5,"docs":{"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"101":{"tf":1.0}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":2.23606797749979}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"4":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":5,"docs":{"110":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"n":{"c":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"115":{"tf":1.0},"181":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":6,"docs":{"136":{"tf":1.0},"142":{"tf":3.3166247903554},"179":{"tf":1.0},"180":{"tf":1.0},"83":{"tf":2.6457513110645907},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"142":{"tf":1.0}}},"df":23,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"85":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"210":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":13,"docs":{"18":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"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":1,"docs":{"191":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"m":{"b":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.4142135623730951},"80":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"i":{"b":{"df":6,"docs":{"19":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"49":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":2.23606797749979},"82":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":8,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":1.0}},"o":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"53":{"tf":3.3166247903554},"55":{"tf":1.0}}}},"w":{"df":4,"docs":{"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"220":{"tf":1.0},"228":{"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":{"53":{"tf":1.0},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"64":{"tf":1.0}}}}}},"h":{"1":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"28":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":6,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":4.242640687119285},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"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":1,"docs":{"10":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":2.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"48":{"tf":1.0},"55":{"tf":1.0}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"179":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"22":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"29":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.23606797749979},"204":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"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":6,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"228":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"8":{"tf":1.0}}}},"p":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"228":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":14,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"228":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"91":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":8,"docs":{"139":{"tf":1.4142135623730951},"29":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"103":{"tf":1.0},"135":{"tf":1.0},"29":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":2,"docs":{"22":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"228":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"17":{"tf":1.0}}}}}}}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"/":{"?":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"214":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":4,"docs":{"177":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":8,"docs":{"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"190":{"tf":1.0},"200":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"df":24,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":2.0}}}}}}}}},"s":{":":{"/":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"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":{"/":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"2":{"0":{"6":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"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":{}},"s":{"d":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"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":{},"h":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"k":{"c":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"6":{"4":{"2":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"0":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"c":{"'":{"df":2,"docs":{"54":{"tf":1.0},"80":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"120":{"tf":1.0},"158":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"91":{"tf":2.0},"97":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"118":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"204":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"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":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"135":{"tf":1.0}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"168":{"tf":1.0},"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"121":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.0},"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":2,"docs":{"123":{"tf":1.0},"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"d":{"1":{"2":{"8":{"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":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"158":{"tf":1.0},"91":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"130":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"173":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"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":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.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":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"227":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"97":{"tf":1.0}}}}}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"222":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"218":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"175":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"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":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"0":{"5":{"0":{"6":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":16,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":99,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":5.477225575051661},"54":{"tf":3.0},"55":{"tf":2.6457513110645907},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":2.0},"9":{"tf":1.4142135623730951},"91":{"tf":3.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"p":{"df":12,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"r":{"c":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}}},"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":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"\"":{">":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":2.23606797749979},"162":{"tf":1.0},"168":{"tf":1.7320508075688772},"3":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":4.58257569495584},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"104":{"tf":1.0},"53":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":131,"docs":{"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.4142135623730951},"119":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"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.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.7320508075688772},"85":{"tf":2.6457513110645907},"91":{"tf":3.3166247903554},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"228":{"tf":1.0}},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"24":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"101":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.7320508075688772},"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"78":{"tf":1.0},"93":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"19":{"tf":1.0},"228":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"58":{"tf":1.0},"62":{"tf":1.0}}}},"df":2,"docs":{"80":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":7,"docs":{"53":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":1,"docs":{"8":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"95":{"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":1,"docs":{"53":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"115":{"tf":2.0},"177":{"tf":1.0},"181":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}},"i":{"df":6,"docs":{"181":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"115":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"28":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"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":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"177":{"tf":1.0},"182":{"tf":1.0},"28":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"2":{"tf":2.6457513110645907},"201":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":3.0},"57":{"tf":2.6457513110645907},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"77":{"tf":1.0},"96":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"161":{"tf":1.0},"28":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"36":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"1":{"6":{"df":3,"docs":{"136":{"tf":1.0},"145":{"tf":3.7416573867739413},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"3":{"2":{"df":4,"docs":{"136":{"tf":1.0},"146":{"tf":3.7416573867739413},"161":{"tf":3.4641016151377544},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"136":{"tf":1.0},"147":{"tf":3.7416573867739413},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"136":{"tf":1.0},"144":{"tf":3.7416573867739413},"83":{"tf":2.6457513110645907},"97":{"tf":1.7320508075688772}}},"df":4,"docs":{"135":{"tf":2.0},"136":{"tf":1.0},"143":{"tf":3.7416573867739413},"83":{"tf":3.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"107":{"tf":1.0},"109":{"tf":1.7320508075688772},"53":{"tf":2.6457513110645907}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"n":{"d":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"f":{"a":{"c":{"df":4,"docs":{"68":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"27":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"107":{"tf":1.0},"20":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"53":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"56":{"tf":1.0},"80":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"77":{"tf":1.0}}}}},"t":{"'":{"df":7,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"75":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":1.7320508075688772},"36":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.449489742783178},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}},"s":{"df":5,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"85":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"85":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"16":{"tf":1.4142135623730951},"48":{"tf":1.0},"85":{"tf":1.0}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.7320508075688772}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"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":8,"docs":{"158":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":2.6457513110645907},"53":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"85":{"tf":3.3166247903554}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"6":{"tf":2.0},"70":{"tf":2.0}}}},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"142":{"tf":1.0},"53":{"tf":1.0}},"n":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"51":{"tf":1.7320508075688772},"85":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}},"m":{"df":0,"docs":{},"j":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"29":{"tf":1.0},"54":{"tf":2.6457513110645907},"56":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"91":{"tf":1.0}},"y":{"=":{"1":{"0":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"114":{"tf":1.0},"217":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"24":{"tf":1.0},"48":{"tf":1.0}}}},"t":{"'":{"df":6,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"25":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":1.0},"228":{"tf":2.0},"29":{"tf":3.0},"53":{"tf":2.0},"54":{"tf":2.23606797749979},"80":{"tf":2.449489742783178},"82":{"tf":2.8284271247461903}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":10,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"k":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}}}},"o":{"a":{"d":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.0},"65":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"8":{"tf":1.0}}},"t":{"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"101":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"228":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"57":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":4,"docs":{"135":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"t":{";":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"98":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"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":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"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":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0}}}}}}}},"df":5,"docs":{"131":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"31":{"tf":1.0},"89":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"p":{"(":{"(":{"_":{"df":1,"docs":{"85":{"tf":1.0}}},"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":2.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"h":{".":{"df":2,"docs":{"141":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"140":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}},"y":{"b":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"106":{"tf":1.0},"213":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"82":{"tf":2.0},"85":{"tf":3.872983346207417},"89":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":2.23606797749979},"53":{"tf":1.4142135623730951},"62":{"tf":2.8284271247461903},"67":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}}},"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"df":37,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"142":{"tf":1.0},"158":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":2.23606797749979},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":2.6457513110645907},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":3.1622776601683795},"81":{"tf":1.0},"82":{"tf":2.8284271247461903},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":4.123105625617661},"93":{"tf":1.0},"94":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"b":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"29":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":6,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"102":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"188":{"tf":1.0},"82":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"62":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0}}}}},"s":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}},"g":{"df":7,"docs":{"111":{"tf":2.449489742783178},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.7320508075688772},"82":{"tf":1.0}},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}},"v":{"df":1,"docs":{"47":{"tf":1.0}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":3.0},"74":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"205":{"tf":1.0},"34":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.0}}}},"t":{"1":{"6":{"df":6,"docs":{"136":{"tf":1.0},"150":{"tf":3.7416573867739413},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"136":{"tf":1.0},"151":{"tf":3.7416573867739413},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":2.6457513110645907},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{">":{"(":{"0":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"115":{"tf":2.23606797749979},"116":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"136":{"tf":1.0},"152":{"tf":3.7416573867739413},"165":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"91":{"tf":4.358898943540674}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"149":{"tf":3.7416573867739413},"214":{"tf":1.4142135623730951},"83":{"tf":3.0},"85":{"tf":2.6457513110645907}}},"df":7,"docs":{"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"136":{"tf":1.0},"148":{"tf":3.7416573867739413},"166":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951}},"e":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":5.196152422706632}}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":5.196152422706632}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"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":{"228":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"110":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"31":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"109":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}},"w":{"df":11,"docs":{"134":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":2.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"186":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"216":{"tf":1.0},"220":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":3.4641016151377544}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"n":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":2.449489742783178}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":11,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"2":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":2.6457513110645907},"57":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"154":{"tf":2.0},"169":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":2.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"139":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.0}},"i":{"df":5,"docs":{"111":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"91":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"129":{"tf":1.0},"164":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}},"w":{"df":7,"docs":{"110":{"tf":1.0},"210":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"101":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"3":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}},"x":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"153":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.0},"153":{"tf":3.872983346207417},"154":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":2.6457513110645907},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"83":{"tf":3.605551275463989},"94":{"tf":1.4142135623730951}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"167":{"tf":1.0},"170":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"103":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"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.7320508075688772},"155":{"tf":1.0},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"161":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":2.23606797749979},"85":{"tf":3.3166247903554},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":2,"docs":{"158":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}},"df":7,"docs":{"15":{"tf":1.0},"160":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"101":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"104":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"154":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"6":{"4":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"154":{"tf":1.0}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":2.0}}}}}}}},"df":11,"docs":{"136":{"tf":1.0},"154":{"tf":2.8284271247461903},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"85":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"228":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"135":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":1,"docs":{"53":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"78":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"200":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"173":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":1,"docs":{"54":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":2.8284271247461903}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":2.23606797749979},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"62":{"tf":1.0},"80":{"tf":2.23606797749979},"83":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"53":{"tf":1.7320508075688772},"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"139":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{"$":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"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":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":1.0}}}},"y":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"130":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"r":{"df":5,"docs":{"178":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"158":{"tf":1.0},"162":{"tf":1.0},"172":{"tf":1.0},"22":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"80":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"181":{"tf":1.0},"214":{"tf":1.0},"53":{"tf":2.6457513110645907},"62":{"tf":2.23606797749979},"80":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}},"n":{"df":1,"docs":{"85":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"53":{"tf":2.6457513110645907},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772}}}}}}},"o":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"170":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"53":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"18":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":6,"docs":{"177":{"tf":1.0},"183":{"tf":1.0},"3":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"183":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"54":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"177":{"tf":1.0},"184":{"tf":1.0},"27":{"tf":1.0},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"228":{"tf":1.0}},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":3,"docs":{"142":{"tf":1.0},"155":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":3,"docs":{"129":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":29,"docs":{"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"129":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"155":{"tf":4.0},"156":{"tf":2.23606797749979},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"53":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"85":{"tf":3.872983346207417},"91":{"tf":2.8284271247461903},"94":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":2.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"162":{"tf":1.0},"173":{"tf":1.7320508075688772},"27":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}},"df":1,"docs":{"143":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":1,"docs":{"148":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.7320508075688772}}},"m":{"b":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"54":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"85":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":2.0},"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"77":{"tf":1.0},"91":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"53":{"tf":1.0}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":87,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{".":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"11":{"tf":1.4142135623730951},"17":{"tf":1.0},"211":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"154":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.449489742783178},"20":{"tf":1.7320508075688772},"228":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":1.7320508075688772},"55":{"tf":2.0}}}}},"df":1,"docs":{"47":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":3.7416573867739413},"54":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":1.0},"202":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"53":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"212":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":2,"docs":{"139":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"q":{"a":{"a":{"a":{"df":0,"docs":{},"q":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":73,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":2.8284271247461903},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.23606797749979},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.6457513110645907},"159":{"tf":2.0},"160":{"tf":2.0},"161":{"tf":2.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.0},"17":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":2.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"200":{"tf":1.0},"214":{"tf":2.449489742783178},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":3.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":4.898979485566356},"82":{"tf":3.0},"83":{"tf":2.8284271247461903},"85":{"tf":3.3166247903554},"91":{"tf":4.358898943540674},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"y":{"(":{"[":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"137":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"179":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":1,"docs":{"143":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"151":{"tf":1.0},"217":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"152":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"155":{"tf":1.0},"171":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"159":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"j":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":2.0}},"s":{"_":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"18":{"tf":1.0},"55":{"tf":1.0}}}},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"190":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"111":{"tf":2.449489742783178},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"160":{"tf":3.1622776601683795}}}}}}},"d":{"df":9,"docs":{"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"221":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":2.0},"89":{"tf":1.0}},"i":{"df":3,"docs":{"54":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"101":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"142":{"tf":1.0},"80":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.0},"124":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":2,"docs":{"123":{"tf":1.0},"125":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"129":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"15":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":13,"docs":{"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"156":{"tf":3.0},"179":{"tf":2.449489742783178},"180":{"tf":2.449489742783178},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"54":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":3.0},"85":{"tf":4.358898943540674},"93":{"tf":2.449489742783178},"97":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"1":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"85":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":1,"docs":{"85":{"tf":2.449489742783178}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":7,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"20":{"tf":1.0},"27":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"106":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"5":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"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":{"54":{"tf":1.7320508075688772}}}}}}}}}}},"df":3,"docs":{"228":{"tf":1.0},"29":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"214":{"tf":1.0},"53":{"tf":2.449489742783178},"73":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"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":1,"docs":{"97":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"'":{"df":2,"docs":{"173":{"tf":1.0},"26":{"tf":1.0}}},"df":16,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"5":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"53":{"tf":2.449489742783178},"55":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":3,"docs":{"111":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":2,"docs":{"211":{"tf":1.0},"49":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"78":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.0},"93":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"108":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"29":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"139":{"tf":1.0},"22":{"tf":1.7320508075688772},"31":{"tf":1.0},"47":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"b":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"d":{"b":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"14":{"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":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"136":{"tf":1.0},"157":{"tf":3.605551275463989},"18":{"tf":1.0},"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"20":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":8,"docs":{"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":1.0},"91":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":2.0}}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"df":2,"docs":{"48":{"tf":1.0},"62":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":6,"docs":{"17":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"105":{"tf":1.0},"53":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":104,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"17":{"tf":2.6457513110645907},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.23606797749979},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":3.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"62":{"tf":2.23606797749979},"80":{"tf":2.449489742783178},"82":{"tf":2.6457513110645907},"83":{"tf":1.7320508075688772},"85":{"tf":5.196152422706632},"91":{"tf":3.872983346207417},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"v":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}}}},"f":{"df":1,"docs":{"10":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"28":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"53":{"tf":2.0},"54":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"31":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"36":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":27,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"49":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"210":{"tf":1.4142135623730951},"47":{"tf":1.0},"75":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"53":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"54":{"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":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"10":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":1,"docs":{"47":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"142":{"tf":1.0},"178":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"80":{"tf":2.0},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"199":{"tf":1.0},"205":{"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":85,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"100":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":2.23606797749979},"54":{"tf":2.0},"55":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"13":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":1,"docs":{"54":{"tf":1.0}}},"m":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}},"n":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"d":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"127":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"16":{"tf":1.4142135623730951},"53":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"139":{"tf":1.0},"16":{"tf":1.0},"48":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"103":{"tf":1.0},"85":{"tf":3.4641016151377544},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}}}}}}}},"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":4.0},"27":{"tf":1.0}}}},"i":{"c":{"df":28,"docs":{"110":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.6457513110645907},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"83":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":22,"docs":{"14":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"209":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"115":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"0":{".":{"3":{"9":{".":{"7":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"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":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"58":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"98":{"tf":2.449489742783178}},"n":{"df":2,"docs":{"5":{"tf":1.0},"91":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":2.0},"22":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"205":{"tf":1.0}}}}}}}}}}}}},"df":2,"docs":{"205":{"tf":1.0},"53":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"24":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"53":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"210":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":6,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.7320508075688772},"80":{"tf":2.0},"82":{"tf":1.4142135623730951},"97":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"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":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"19":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"228":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"0":{"5":{"0":{"6":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"2":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"154":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"91":{"tf":3.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"55":{"tf":1.0},"91":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":10,"docs":{"10":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"73":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"212":{"tf":1.0},"4":{"tf":1.0}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"228":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"11":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"106":{"tf":1.0},"213":{"tf":2.6457513110645907},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":3.1622776601683795}},"e":{"6":{"4":{"df":5,"docs":{"213":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"222":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0}}}}}}}},"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":2,"docs":{"214":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":2.0},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}}}},"df":12,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"214":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.0},"85":{"tf":4.795831523312719},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"218":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"28":{"tf":1.0},"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"6":{"tf":2.6457513110645907},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"77":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"176":{"tf":1.0},"210":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"56":{"tf":3.0},"58":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":2.0},"70":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"18":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"97":{"tf":2.449489742783178}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"47":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"10":{"tf":1.0},"176":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"181":{"tf":1.0},"214":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"105":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.7320508075688772},"58":{"tf":1.0},"62":{"tf":2.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"142":{"tf":1.7320508075688772},"159":{"tf":2.23606797749979},"163":{"tf":1.0},"164":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"62":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.7320508075688772},"16":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"108":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":3.0},"62":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"102":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":5,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"101":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"135":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"83":{"tf":1.0}}},"3":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"228":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"63":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"161":{"tf":1.0}},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":2.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":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":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{">":{"(":{"0":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":2.0},"117":{"tf":2.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"142":{"tf":2.8284271247461903},"156":{"tf":1.7320508075688772},"158":{"tf":2.6457513110645907},"159":{"tf":3.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.7320508075688772},"173":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":2.6457513110645907},"180":{"tf":2.6457513110645907},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":1.0},"214":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":3.0},"80":{"tf":2.449489742783178},"82":{"tf":3.4641016151377544},"83":{"tf":3.4641016151377544},"85":{"tf":3.7416573867739413},"93":{"tf":2.6457513110645907},"94":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"j":{"df":1,"docs":{"4":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"62":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}},"k":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"r":{"d":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"102":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"104":{"tf":1.0},"53":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"53":{"tf":1.0},"55":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"72":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":8,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"53":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"173":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":2.449489742783178},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"w":{"df":7,"docs":{"121":{"tf":1.0},"139":{"tf":1.4142135623730951},"182":{"tf":1.0},"27":{"tf":1.4142135623730951},"82":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"161":{"tf":1.0},"22":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"82":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"162":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.0},"54":{"tf":1.7320508075688772},"91":{"tf":1.0}},"r":{"df":10,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":2.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.7320508075688772}},"i":{"d":{"df":4,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"97":{"tf":3.3166247903554}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"1":{".":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":2.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"53":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":2.23606797749979},"91":{"tf":3.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"91":{"tf":1.4142135623730951},"93":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"1":{".":{"7":{"3":{".":{"0":{"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":5,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0}}}},"p":{"df":1,"docs":{"18":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}}},"k":{"df":4,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"115":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"91":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"162":{"tf":1.0},"176":{"tf":1.7320508075688772},"82":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":31,"docs":{"11":{"tf":1.0},"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"83":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"y":{".":{".":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.7320508075688772},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":7,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0}}}},"y":{"a":{"a":{"a":{"df":5,"docs":{"129":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":46,"docs":{"11":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.7320508075688772},"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.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"214":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":3.872983346207417},"91":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":7,"docs":{"115":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"214":{"tf":1.4142135623730951},"85":{"tf":2.8284271247461903},"97":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"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":5,"docs":{"210":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":31,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"62":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"58":{"tf":1.0},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"[":{"8":{"3":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"6":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}}},"df":3,"docs":{"137":{"tf":1.4142135623730951},"161":{"tf":1.0},"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"r":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"210":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"73":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"52":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"50":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":72,"docs":{"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"174":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.0},"186":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"62":{"tf":2.8284271247461903},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":4.58257569495584},"83":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"91":{"tf":4.123105625617661},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"[":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"174":{"tf":1.0},"194":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"220":{"tf":1.0},"223":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":9,"docs":{"115":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"186":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"62":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"209":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"174":{"tf":1.0},"19":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"177":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"13":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"94":{"tf":2.0}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"105":{"tf":1.0},"54":{"tf":1.7320508075688772},"88":{"tf":1.0}}}},"df":53,"docs":{"0":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"161":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":2.23606797749979},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"85":{"tf":2.8284271247461903},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},">":{"(":{"0":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"85":{"tf":2.23606797749979}}}}}}}}}}}}}},"df":5,"docs":{"156":{"tf":3.1622776601683795},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"85":{"tf":4.358898943540674}},"i":{"d":{"df":1,"docs":{"85":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":2.23606797749979},"85":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"85":{"tf":2.449489742783178}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"v":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":20,"docs":{"105":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"142":{"tf":1.0},"154":{"tf":1.4142135623730951},"158":{"tf":1.0},"214":{"tf":2.6457513110645907},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"62":{"tf":2.449489742783178},"80":{"tf":2.23606797749979},"82":{"tf":3.7416573867739413},"83":{"tf":2.0},"85":{"tf":4.358898943540674},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},">":{"(":{"0":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"106":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"135":{"tf":2.23606797749979},"136":{"tf":1.0},"154":{"tf":1.7320508075688772},"158":{"tf":1.0},"160":{"tf":3.3166247903554},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"85":{"tf":2.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"55":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.6457513110645907},"83":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"136":{"tf":1.0},"137":{"tf":2.0},"161":{"tf":3.0},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.6457513110645907},"85":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"85":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"162":{"tf":1.0},"167":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":2,"docs":{"68":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"3":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":3.4641016151377544},"91":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.0}}}},"s":{"df":2,"docs":{"53":{"tf":1.0},"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"139":{"tf":1.4142135623730951},"18":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"m":{"3":{"2":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":2.23606797749979},"53":{"tf":3.1622776601683795},"56":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":2.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"139":{"tf":1.0},"15":{"tf":1.0},"53":{"tf":1.7320508075688772},"72":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"58":{"tf":1.4142135623730951},"62":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":1,"docs":{"54":{"tf":1.0}}},"v":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}},"b":{"3":{"df":1,"docs":{"51":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"31":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"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":{"0":{"tf":1.0},"171":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":7,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":2.0},"91":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"77":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"5":{"0":{"0":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"176":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.7320508075688772},"62":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"49":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":96,"docs":{"101":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"l":{"d":{"df":14,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":2.0},"3":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"210":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"x":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"k":{"c":{"d":{"df":1,"docs":{"200":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":4,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":1,"docs":{"61":{"tf":1.0}}},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772}}},"df":6,"docs":{"137":{"tf":2.0},"161":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"129":{"tf":1.0},"16":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"x":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"6":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"1":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"'":{"*":{"'":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":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":{"80":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"134":{"tf":1.0}}},"5":{"df":1,"docs":{"134":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"29":{"tf":1.0}}}},"1":{"0":{"6":{"4":{"3":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"134":{"tf":1.0}}},"4":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"134":{"tf":1.0}}},"7":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"6":{"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":2,"docs":{"144":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"8":{"df":9,"docs":{"111":{"tf":2.449489742783178},"117":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"162":{"tf":1.0},"166":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.4142135623730951}}},"4":{":":{"3":{"5":{":":{"3":{"0":{".":{"4":{"3":{"3":{"5":{"0":{"1":{"9":{"8":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"3":{"4":{".":{"6":{"5":{"2":{"5":{"8":{"7":{"4":{"1":{"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"_":{"1":{"4":{"1":{"_":{"1":{"8":{"3":{"_":{"4":{"6":{"0":{"_":{"4":{"6":{"9":{"_":{"2":{"3":{"1":{"_":{"7":{"3":{"1":{"_":{"6":{"8":{"7":{"_":{"3":{"0":{"3":{"_":{"7":{"1":{"5":{"_":{"8":{"8":{"4":{"_":{"1":{"0":{"5":{"_":{"7":{"2":{"7":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"143":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"27":{"tf":1.4142135623730951}},"t":{"1":{"4":{":":{"3":{"5":{":":{"3":{"1":{".":{"9":{"8":{"3":{"5":{"9":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"1":{":":{"3":{"9":{".":{"1":{"9":{"4":{"3":{"7":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"_":{"4":{"4":{"6":{"_":{"7":{"4":{"4":{"_":{"0":{"7":{"3":{"_":{"7":{"0":{"9":{"_":{"5":{"5":{"1":{"_":{"6":{"1":{"5":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"152":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"161":{"tf":1.7320508075688772},"178":{"tf":1.0},"228":{"tf":2.0},"29":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"2":{".":{"0":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"7":{"1":{"8":{"2":{"8":{"1":{"8":{"2":{"8":{"4":{"5":{"9":{"0":{"4":{"5":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"228":{"tf":1.0}}},"4":{"df":4,"docs":{"0":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"54":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"57":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}},"5":{"4":{"df":1,"docs":{"85":{"tf":1.0}}},"5":{"df":2,"docs":{"149":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"4":{"7":{"_":{"4":{"8":{"3":{"_":{"6":{"4":{"7":{"df":2,"docs":{"146":{"tf":1.7320508075688772},"83":{"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":8,"docs":{"103":{"tf":1.0},"161":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0},"82":{"tf":1.4142135623730951},"88":{"tf":1.0}},"i":{"a":{"a":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"7":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0}}},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"3":{".":{"1":{"4":{"1":{"5":{"9":{"2":{"7":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"7":{"6":{"7":{"df":2,"docs":{"145":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"174":{"tf":1.0},"205":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"3":{"df":1,"docs":{"134":{"tf":1.0}}},"4":{"0":{"_":{"2":{"8":{"2":{"_":{"3":{"6":{"6":{"_":{"9":{"2":{"0":{"_":{"9":{"3":{"8":{"_":{"4":{"6":{"3":{"_":{"4":{"6":{"3":{"_":{"3":{"7":{"4":{"_":{"6":{"0":{"7":{"_":{"4":{"3":{"1":{"_":{"7":{"6":{"8":{"_":{"2":{"1":{"1":{"_":{"4":{"5":{"5":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"6":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":4,"docs":{"161":{"tf":1.7320508075688772},"18":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}},"2":{"df":1,"docs":{"135":{"tf":1.0}}},"_":{"2":{"9":{"4":{"_":{"9":{"6":{"7":{"_":{"2":{"9":{"5":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"83":{"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":5,"docs":{"228":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772}}},"5":{"0":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}},"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":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"a":{"a":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"2":{"6":{"9":{"2":{"3":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"1":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"_":{"5":{"3":{"5":{"df":2,"docs":{"150":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"a":{"a":{"a":{"a":{"df":3,"docs":{"115":{"tf":1.0},"142":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"6":{"c":{"3":{"5":{"5":{"8":{"a":{"a":{"d":{"2":{"4":{"2":{"2":{"4":{"8":{"5":{"2":{"a":{"9":{"5":{"8":{"2":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"1":{"7":{"8":{"4":{"0":{"2":{"c":{"b":{"3":{"6":{"7":{"9":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"27":{"tf":1.0},"94":{"tf":2.0}}},"9":{"0":{"0":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":1,"docs":{"19":{"tf":1.0}}},"6":{"df":3,"docs":{"56":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"_":{"2":{"2":{"3":{"_":{"3":{"7":{"2":{"_":{"0":{"3":{"6":{"_":{"8":{"5":{"4":{"_":{"7":{"7":{"5":{"_":{"8":{"0":{"7":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"147":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}},"_":{"df":1,"docs":{"80":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"17":{"tf":2.0},"27":{"tf":1.4142135623730951}}}}}},"a":{"a":{"a":{"a":{"a":{"df":14,"docs":{"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"68":{"tf":2.0},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"91":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"q":{"df":5,"docs":{"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"b":{"a":{"df":5,"docs":{"129":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{},"q":{"df":3,"docs":{"115":{"tf":1.0},"142":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"158":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"82":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"13":{"tf":1.0},"182":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"}":{"$":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"142":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"28":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"57":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"df":2,"docs":{"77":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":1,"docs":{"83":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"22":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"62":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"210":{"tf":1.0},"53":{"tf":3.7416573867739413},"56":{"tf":1.4142135623730951},"62":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"j":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.0},"182":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"70":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"47":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"115":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"91":{"tf":3.872983346207417}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"212":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":2.8284271247461903}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"59":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"139":{"tf":2.0},"157":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":59,"docs":{"101":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"210":{"tf":1.4142135623730951},"22":{"tf":1.0},"53":{"tf":3.4641016151377544},"54":{"tf":2.0},"56":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"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":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"'":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":8,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"53":{"tf":1.0}},"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":{"3":{"tf":1.0},"53":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":21,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":4.123105625617661},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"75":{"tf":1.0},"85":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"y":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"1":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"2":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"3":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"4":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":27,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"128":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"139":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"2":{"9":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"0":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"(":{"(":{"a":{"c":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"142":{"tf":1.0},"161":{"tf":1.0},"19":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":3.7416573867739413},"31":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"17":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"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":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"175":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"85":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"85":{"tf":2.6457513110645907}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":2.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":1.7320508075688772},"22":{"tf":2.0},"53":{"tf":2.23606797749979}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":2.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"df":8,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":2.449489742783178}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.6457513110645907},"33":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"111":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"53":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":34,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":3.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":2.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"187":{"tf":1.0},"210":{"tf":1.0}}},"y":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":160,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":2.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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":2.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.8284271247461903},"48":{"tf":1.0},"49":{"tf":2.0},"50":{"tf":2.23606797749979},"51":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"53":{"tf":2.0},"54":{"tf":3.1622776601683795},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":3.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":2.0},"85":{"tf":2.8284271247461903},"91":{"tf":3.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"'":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"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":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"188":{"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":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":2.23606797749979},"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"@":{"0":{".":{"2":{"1":{".":{"1":{"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":{}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}}},"df":4,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"59":{"tf":2.6457513110645907},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"32":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"1":{"0":{"0":{"2":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"6":{"4":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"2":{"8":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"5":{"5":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"1":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"6":{"1":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"32":{"tf":1.0},"37":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"32":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"41":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"142":{"tf":1.0},"16":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"d":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"162":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":184,"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.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},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"48":{"tf":2.8284271247461903},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"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},"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},"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},"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}}},"h":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"58":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"54":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"161":{"tf":1.0},"54":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"184":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"85":{"tf":1.0},"91":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"104":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"91":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.7320508075688772},"53":{"tf":2.8284271247461903}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"a":{"df":9,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"100":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"91":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"83":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"228":{"tf":2.449489742783178},"53":{"tf":2.23606797749979},"73":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":13,"docs":{"106":{"tf":1.0},"107":{"tf":2.23606797749979},"108":{"tf":1.0},"109":{"tf":2.6457513110645907},"110":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"53":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"53":{"tf":1.0}},"o":{"b":{"df":31,"docs":{"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"137":{"tf":3.7416573867739413},"139":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"194":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"93":{"tf":2.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"53":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"179":{"tf":2.0},"180":{"tf":2.0},"200":{"tf":1.0},"27":{"tf":1.4142135623730951},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":2.23606797749979},"83":{"tf":1.0}}},"l":{"df":29,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"121":{"tf":2.0},"135":{"tf":2.0},"136":{"tf":1.0},"138":{"tf":3.7416573867739413},"154":{"tf":1.7320508075688772},"158":{"tf":2.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"214":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"52":{"tf":1.0},"54":{"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":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"g":{"df":4,"docs":{"105":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.0},"228":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.0},"77":{"tf":2.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"31":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":3.7416573867739413},"54":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":2.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":2.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"2":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"6":{"9":{"df":0,"docs":{},"f":{"4":{"4":{"2":{"9":{"9":{"8":{"df":0,"docs":{},"e":{"4":{"c":{"d":{"a":{"4":{"6":{"1":{"9":{"1":{"6":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"a":{"9":{"b":{"c":{"9":{"1":{"4":{"1":{"8":{"b":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"\"":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"91":{"tf":2.449489742783178}}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"142":{"tf":1.0},"17":{"tf":1.4142135623730951},"179":{"tf":2.0},"180":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"93":{"tf":2.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":83,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.8284271247461903},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"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},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"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.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":2.0},"17":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"22":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979},"62":{"tf":3.1622776601683795},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":3.3166247903554},"82":{"tf":3.0},"83":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":4.58257569495584},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"111":{"tf":1.0},"120":{"tf":2.0},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":184,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"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},"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},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":2.0},"137":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":2.23606797749979},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":2.0},"160":{"tf":2.0},"161":{"tf":2.0},"162":{"tf":1.7320508075688772},"163":{"tf":2.449489742783178},"164":{"tf":2.449489742783178},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"31":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"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.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":3.872983346207417},"84":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.0},"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}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"103":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":169,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"150":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":2.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":2.449489742783178},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"162":{"tf":2.6457513110645907},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":2.6457513110645907},"166":{"tf":2.6457513110645907},"167":{"tf":2.449489742783178},"168":{"tf":2.449489742783178},"169":{"tf":2.0},"17":{"tf":1.4142135623730951},"170":{"tf":2.0},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":2.0},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"184":{"tf":2.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":2.8284271247461903},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":2.0},"31":{"tf":2.449489742783178},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":3.0},"54":{"tf":2.8284271247461903},"55":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"58":{"tf":2.0},"59":{"tf":1.7320508075688772},"62":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":2.449489742783178},"69":{"tf":1.0},"7":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"8":{"tf":2.6457513110645907},"80":{"tf":3.3166247903554},"82":{"tf":4.0},"83":{"tf":3.0},"85":{"tf":2.6457513110645907},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":2.449489742783178},"91":{"tf":6.48074069840786},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":2.6457513110645907},"96":{"tf":2.8284271247461903},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":10,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.7320508075688772},"31":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"188":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"190":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"47":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"190":{"tf":1.0},"195":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"165":{"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":{"26":{"tf":1.0}}}}}}},"i":{"d":{"df":14,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"97":{"tf":2.23606797749979}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"154":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"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},"228":{"tf":1.0},"53":{"tf":1.0},"86":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"3":{"tf":1.0},"47":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.0}},"k":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"49":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"162":{"tf":1.0},"169":{"tf":2.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"174":{"tf":2.0}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"n":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":15,"docs":{"210":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"62":{"tf":2.449489742783178},"7":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":2.6457513110645907},"85":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"57":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":3,"docs":{"107":{"tf":1.0},"110":{"tf":2.23606797749979},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"210":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"53":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}},"u":{"d":{"df":3,"docs":{"53":{"tf":3.3166247903554},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":19,"docs":{"111":{"tf":1.0},"132":{"tf":1.7320508075688772},"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"210":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"53":{"tf":2.6457513110645907},"56":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"73":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"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":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"3":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}}},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"228":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":2.8284271247461903},"53":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"36":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.449489742783178},"73":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}},"x":{"df":2,"docs":{"53":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"107":{"tf":1.0},"29":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"34":{"tf":1.0},"47":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"62":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"i":{"d":{"df":3,"docs":{"24":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"n":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}}}}},"`":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":23,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}}}}}}}},"df":6,"docs":{"227":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}}}},"df":35,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"179":{"tf":2.8284271247461903},"180":{"tf":2.8284271247461903},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"20":{"tf":2.8284271247461903},"205":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":4.898979485566356},"91":{"tf":4.0},"93":{"tf":2.8284271247461903},"94":{"tf":2.449489742783178},"97":{"tf":3.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"160":{"tf":1.0},"34":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"162":{"tf":1.0},"171":{"tf":2.0},"209":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":2.0},"19":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"11":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"54":{"tf":1.0},"98":{"tf":2.6457513110645907}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"162":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"54":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":2.449489742783178},"90":{"tf":1.0},"91":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"196":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"176":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"158":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":3.605551275463989}}}}},"u":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"47":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"13":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":8,"docs":{"11":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":30,"docs":{"111":{"tf":2.449489742783178},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":2.23606797749979},"125":{"tf":2.23606797749979},"126":{"tf":2.6457513110645907},"127":{"tf":2.6457513110645907},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":2.0},"94":{"tf":1.4142135623730951},"98":{"tf":3.4641016151377544}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979}}}},"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":{"169":{"tf":1.0}}}}}}}},"df":17,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":2.0},"139":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.4142135623730951},"169":{"tf":2.0},"174":{"tf":2.23606797749979},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"82":{"tf":2.449489742783178}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"228":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":31,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.0},"62":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":123,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.8284271247461903},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"62":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"62":{"tf":1.0},"91":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"197":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":2.0},"85":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"26":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"df":0,"docs":{},"y":{"df":36,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":2.6457513110645907},"31":{"tf":2.23606797749979},"44":{"tf":1.0},"5":{"tf":2.6457513110645907},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"6":{"tf":1.0},"65":{"tf":2.23606797749979},"66":{"tf":2.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":2.6457513110645907},"7":{"tf":3.0},"70":{"tf":1.0},"71":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":2.23606797749979},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":2.8284271247461903},"77":{"tf":2.449489742783178},"8":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":2.8284271247461903}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":1.0},"198":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"210":{"tf":1.4142135623730951},"29":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":3.1622776601683795},"69":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":2.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"11":{"tf":2.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"6":{".":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":52,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"2":{"tf":2.0},"3":{"tf":2.0},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"57":{"tf":2.0},"59":{"tf":2.0},"6":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.8284271247461903},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"i":{"a":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"l":{"\\":{"0":{"0":{"\\":{"0":{"0":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"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":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"4":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":1.0}}}},"y":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"176":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"100":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"10":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"54":{"tf":1.0},"62":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":182,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"48":{"tf":2.23606797749979},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.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},"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}}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"52":{"tf":1.7320508075688772},"54":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"28":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"228":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"62":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"54":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"83":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"108":{"tf":1.0},"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}},"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"131":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":3.872983346207417},"62":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"7":{"tf":1.0},"85":{"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":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"154":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"162":{"tf":1.0},"164":{"tf":2.0},"18":{"tf":1.0},"62":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"103":{"tf":2.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"103":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"53":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"10":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"53":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"170":{"tf":1.0},"82":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"188":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":31,"docs":{"102":{"tf":2.0},"106":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"2":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"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},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"54":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"154":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"158":{"tf":1.0},"85":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.7320508075688772},"139":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":3.605551275463989},"27":{"tf":3.4641016151377544},"28":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":2.449489742783178}}}}}},"s":{"2":{"0":{"2":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":9,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}}},"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":{"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"53":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":110,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979},"8":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979},"83":{"tf":1.7320508075688772},"85":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"161":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"170":{"tf":1.0},"176":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":2.0},"62":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979},"91":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"54":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"54":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"210":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772},"88":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"82":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"55":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":120,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":2.0},"91":{"tf":2.8284271247461903},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"210":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"16":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"27":{"tf":2.449489742783178},"4":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"31":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"139":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"121":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"82":{"tf":1.0},"91":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"13":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"78":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":19,"docs":{"0":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"19":{"tf":2.0},"28":{"tf":2.0},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}}}}},"l":{"(":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"193":{"tf":1.0},"85":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"24":{"tf":1.0},"28":{"tf":2.23606797749979},"31":{"tf":1.0},"34":{"tf":1.0}}}},"d":{"df":6,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"160":{"tf":2.23606797749979}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"142":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.4142135623730951},"96":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}},"x":{"df":2,"docs":{"10":{"tf":1.0},"103":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"136":{"tf":1.0},"140":{"tf":4.0},"83":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"105":{"tf":1.7320508075688772},"136":{"tf":1.0},"141":{"tf":4.0},"83":{"tf":2.6457513110645907},"87":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":1,"docs":{"69":{"tf":1.0}}}}},"m":{"a":{"a":{"a":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":27,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"210":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.449489742783178},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"df":6,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"a":{"a":{"a":{"df":5,"docs":{"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"101":{"tf":1.0}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":2.23606797749979}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"4":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":5,"docs":{"110":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"n":{"c":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"115":{"tf":1.0},"181":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":6,"docs":{"136":{"tf":1.0},"142":{"tf":3.605551275463989},"179":{"tf":1.0},"180":{"tf":1.0},"83":{"tf":2.6457513110645907},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"142":{"tf":1.0}}},"df":23,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"85":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"210":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":13,"docs":{"18":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"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":1,"docs":{"191":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"m":{"b":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.4142135623730951},"80":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"i":{"b":{"df":6,"docs":{"19":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"49":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":2.23606797749979},"82":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":8,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":1.0}},"o":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"53":{"tf":3.3166247903554},"55":{"tf":1.0}}}},"w":{"df":4,"docs":{"213":{"tf":1.4142135623730951},"216":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"228":{"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":{"53":{"tf":1.0},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"64":{"tf":1.0}}}}}},"h":{"1":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"28":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":6,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":4.242640687119285},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"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":1,"docs":{"10":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":2.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"48":{"tf":1.0},"55":{"tf":1.0}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"179":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"22":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"29":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.6457513110645907},"204":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"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":6,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"228":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"8":{"tf":1.0}}}},"p":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"228":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":14,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"228":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"91":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":8,"docs":{"139":{"tf":1.4142135623730951},"29":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"135":{"tf":1.0},"29":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"228":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":2.0},"17":{"tf":1.0}}}}}}}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"/":{"?":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"214":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":4,"docs":{"177":{"tf":1.0},"180":{"tf":1.4142135623730951},"22":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":8,"docs":{"177":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":1.4142135623730951},"190":{"tf":1.0},"200":{"tf":1.7320508075688772},"22":{"tf":1.0},"31":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"df":24,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":2.0}}}}}}}}},"s":{":":{"/":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"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":{"/":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"2":{"0":{"6":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"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":{}},"s":{"d":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"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":{},"h":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"k":{"c":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"6":{"4":{"2":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"0":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"c":{"'":{"df":2,"docs":{"54":{"tf":1.0},"80":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"120":{"tf":1.0},"158":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"91":{"tf":2.0},"97":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"118":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"204":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"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":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"135":{"tf":1.0}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"168":{"tf":1.0},"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"121":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.0},"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":2,"docs":{"123":{"tf":1.0},"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"d":{"1":{"2":{"8":{"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":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"158":{"tf":1.0},"91":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"130":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"173":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"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":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.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":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"227":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"97":{"tf":1.0}}}}}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"222":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"218":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"175":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"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":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"0":{"5":{"0":{"6":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":16,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":99,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":5.477225575051661},"54":{"tf":3.0},"55":{"tf":2.6457513110645907},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":2.0},"9":{"tf":1.4142135623730951},"91":{"tf":3.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"p":{"df":12,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"r":{"c":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}}},"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":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"\"":{">":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":2.23606797749979},"162":{"tf":1.0},"168":{"tf":2.23606797749979},"3":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":4.58257569495584},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"104":{"tf":1.0},"53":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":131,"docs":{"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.4142135623730951},"119":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"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.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.7320508075688772},"85":{"tf":2.6457513110645907},"91":{"tf":3.3166247903554},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"228":{"tf":1.0}},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"24":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"101":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.7320508075688772},"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"78":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"19":{"tf":1.0},"228":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"58":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":2,"docs":{"80":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":7,"docs":{"53":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":1,"docs":{"8":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"95":{"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":1,"docs":{"53":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"115":{"tf":2.0},"177":{"tf":1.0},"181":{"tf":2.6457513110645907},"94":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}},"i":{"df":6,"docs":{"181":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"115":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"28":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"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":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"177":{"tf":1.0},"182":{"tf":1.7320508075688772},"28":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"2":{"tf":2.8284271247461903},"201":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":3.0},"57":{"tf":3.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"77":{"tf":1.0},"96":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"201":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"161":{"tf":1.0},"28":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":2.0},"29":{"tf":1.4142135623730951},"36":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"1":{"6":{"df":3,"docs":{"136":{"tf":1.0},"145":{"tf":4.0},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"3":{"2":{"df":4,"docs":{"136":{"tf":1.0},"146":{"tf":4.0},"161":{"tf":3.4641016151377544},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"136":{"tf":1.0},"147":{"tf":4.0},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"136":{"tf":1.0},"144":{"tf":4.0},"83":{"tf":2.6457513110645907},"97":{"tf":1.7320508075688772}}},"df":4,"docs":{"135":{"tf":2.0},"136":{"tf":1.0},"143":{"tf":4.0},"83":{"tf":3.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"107":{"tf":1.0},"109":{"tf":2.0},"53":{"tf":2.6457513110645907}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"n":{"d":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"75":{"tf":1.0},"8":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"f":{"a":{"c":{"df":4,"docs":{"68":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"27":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"107":{"tf":1.0},"20":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"224":{"tf":1.0},"227":{"tf":2.0},"97":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"53":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"56":{"tf":1.0},"80":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"10":{"tf":1.7320508075688772},"101":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"t":{"'":{"df":7,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"75":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"102":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":2.23606797749979},"31":{"tf":1.7320508075688772},"36":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.449489742783178},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}},"s":{"df":5,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"85":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"85":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"16":{"tf":1.4142135623730951},"48":{"tf":1.0},"85":{"tf":1.0}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":2.0}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"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":8,"docs":{"158":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":2.6457513110645907},"53":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"85":{"tf":3.3166247903554}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"6":{"tf":2.0},"70":{"tf":2.0}}}},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"142":{"tf":1.0},"53":{"tf":1.0}},"n":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"51":{"tf":2.0},"85":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}},"m":{"df":0,"docs":{},"j":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"29":{"tf":1.0},"54":{"tf":2.6457513110645907},"56":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"91":{"tf":1.0}},"y":{"=":{"1":{"0":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"114":{"tf":1.0},"217":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"24":{"tf":1.0},"48":{"tf":1.0}}}},"t":{"'":{"df":6,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"25":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":2.23606797749979},"19":{"tf":1.0},"228":{"tf":2.0},"29":{"tf":3.3166247903554},"53":{"tf":2.0},"54":{"tf":2.23606797749979},"80":{"tf":2.449489742783178},"82":{"tf":2.8284271247461903}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":10,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"k":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}}}},"o":{"a":{"d":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.4142135623730951},"43":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178},"7":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"t":{"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"101":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"228":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"57":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":4,"docs":{"135":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"t":{";":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"98":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.7320508075688772},"9":{"tf":2.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":28,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"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":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"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":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0}}}}}}}},"df":5,"docs":{"131":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"31":{"tf":1.0},"89":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"p":{"(":{"(":{"_":{"df":1,"docs":{"85":{"tf":1.0}}},"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":2.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"h":{".":{"df":2,"docs":{"141":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"140":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}},"y":{"b":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"106":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"82":{"tf":2.0},"85":{"tf":3.872983346207417},"89":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"182":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"62":{"tf":2.8284271247461903},"67":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}}},"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"df":42,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":2.0},"142":{"tf":1.0},"158":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":2.23606797749979},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":2.6457513110645907},"73":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":3.3166247903554},"81":{"tf":1.7320508075688772},"82":{"tf":3.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":4.123105625617661},"93":{"tf":1.0},"94":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"b":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"29":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":6,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"102":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"188":{"tf":1.0},"82":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"62":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0}}}}},"s":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}},"g":{"df":7,"docs":{"111":{"tf":2.449489742783178},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.7320508075688772},"82":{"tf":1.0}},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}},"v":{"df":1,"docs":{"47":{"tf":1.0}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":3.0},"74":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"121":{"tf":1.7320508075688772},"142":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"205":{"tf":1.0},"34":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.0}}}},"t":{"1":{"6":{"df":6,"docs":{"136":{"tf":1.0},"150":{"tf":4.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"136":{"tf":1.0},"151":{"tf":4.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":2.6457513110645907},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{">":{"(":{"0":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"115":{"tf":2.23606797749979},"116":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"136":{"tf":1.0},"152":{"tf":4.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"91":{"tf":4.358898943540674}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"149":{"tf":4.0},"214":{"tf":1.4142135623730951},"83":{"tf":3.0},"85":{"tf":2.6457513110645907}}},"df":7,"docs":{"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"136":{"tf":1.0},"148":{"tf":4.0},"166":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":2.6457513110645907},"56":{"tf":1.4142135623730951}},"e":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":5.196152422706632}}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":5.196152422706632}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"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":{"228":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"110":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"31":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"109":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}},"w":{"df":11,"docs":{"134":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":2.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"186":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"216":{"tf":1.0},"220":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":3.4641016151377544}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"n":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":2.449489742783178}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":11,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":2.0},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"2":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":2.6457513110645907},"57":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"154":{"tf":2.0},"169":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":2.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"139":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.0}},"i":{"df":5,"docs":{"111":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"91":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"129":{"tf":1.0},"164":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}},"w":{"df":7,"docs":{"110":{"tf":1.0},"210":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"101":{"tf":2.449489742783178},"19":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"3":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}},"x":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"153":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.0},"153":{"tf":4.123105625617661},"154":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":2.6457513110645907},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"83":{"tf":3.605551275463989},"94":{"tf":1.4142135623730951}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"167":{"tf":1.0},"170":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"103":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"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.7320508075688772},"155":{"tf":1.0},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"161":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":2.23606797749979},"85":{"tf":3.3166247903554},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":2,"docs":{"158":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"l":{"d":{"df":181,"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.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},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.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},"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}}},"df":0,"docs":{}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}},"df":7,"docs":{"15":{"tf":1.0},"160":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"101":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"104":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"154":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"6":{"4":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"154":{"tf":1.0}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":2.0}}}}}}}},"df":11,"docs":{"136":{"tf":1.0},"154":{"tf":3.1622776601683795},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"85":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"228":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"135":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":1,"docs":{"53":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"78":{"tf":1.0},"94":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"200":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"173":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":1,"docs":{"54":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"55":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":2.8284271247461903}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":2.449489742783178},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"62":{"tf":1.0},"80":{"tf":2.23606797749979},"83":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"53":{"tf":1.7320508075688772},"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"139":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{"$":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"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":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":1.0}}}},"y":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"r":{"df":5,"docs":{"178":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"158":{"tf":1.0},"162":{"tf":1.0},"172":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"80":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"181":{"tf":1.0},"214":{"tf":1.0},"53":{"tf":2.6457513110645907},"62":{"tf":2.23606797749979},"80":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}},"n":{"df":1,"docs":{"85":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"53":{"tf":2.6457513110645907},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"210":{"tf":2.6457513110645907},"211":{"tf":2.23606797749979},"212":{"tf":2.23606797749979}}}}}}},"o":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"170":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"53":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"18":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":6,"docs":{"177":{"tf":1.0},"183":{"tf":1.7320508075688772},"3":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"183":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"54":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"177":{"tf":1.0},"184":{"tf":1.7320508075688772},"27":{"tf":1.0},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"228":{"tf":1.0}},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":3,"docs":{"142":{"tf":1.0},"155":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":3,"docs":{"129":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":29,"docs":{"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"129":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"155":{"tf":4.242640687119285},"156":{"tf":2.23606797749979},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"53":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"85":{"tf":3.872983346207417},"91":{"tf":2.8284271247461903},"94":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":2.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"162":{"tf":1.0},"173":{"tf":2.23606797749979},"27":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}},"df":1,"docs":{"143":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":1,"docs":{"148":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.7320508075688772}}},"m":{"b":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"54":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"85":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":2.0},"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"77":{"tf":1.0},"91":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"53":{"tf":1.0}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":87,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{".":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"211":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"54":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"154":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.449489742783178},"20":{"tf":1.7320508075688772},"228":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":1.7320508075688772},"55":{"tf":2.0}}}}},"df":1,"docs":{"47":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":3.7416573867739413},"54":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":1.0},"202":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"203":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"53":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"212":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":2,"docs":{"139":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"q":{"a":{"a":{"a":{"df":0,"docs":{},"q":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":73,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":2.8284271247461903},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.23606797749979},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.6457513110645907},"159":{"tf":2.0},"160":{"tf":2.0},"161":{"tf":2.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.0},"17":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":2.449489742783178},"186":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"200":{"tf":1.0},"214":{"tf":2.449489742783178},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":3.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":5.0},"82":{"tf":3.0},"83":{"tf":2.8284271247461903},"85":{"tf":3.3166247903554},"91":{"tf":4.358898943540674},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"y":{"(":{"[":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"137":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"179":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":1,"docs":{"143":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"151":{"tf":1.0},"217":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"152":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"155":{"tf":1.0},"171":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"159":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.4142135623730951}},"j":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":2.0}},"s":{"_":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"18":{"tf":1.0},"55":{"tf":1.0}}}},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"190":{"tf":1.0},"204":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"111":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"160":{"tf":3.1622776601683795}}}}}}},"d":{"df":9,"docs":{"213":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":2.0},"89":{"tf":1.0}},"i":{"df":3,"docs":{"54":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"101":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"142":{"tf":1.0},"80":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.0},"124":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":2,"docs":{"123":{"tf":1.0},"125":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"129":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"15":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":13,"docs":{"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"156":{"tf":3.3166247903554},"179":{"tf":2.449489742783178},"180":{"tf":2.449489742783178},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"54":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":3.0},"85":{"tf":4.358898943540674},"93":{"tf":2.449489742783178},"97":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"1":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"85":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":1,"docs":{"85":{"tf":2.449489742783178}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":7,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"20":{"tf":1.0},"27":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":149,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.7320508075688772},"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},"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},"5":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"131":{"tf":2.23606797749979},"132":{"tf":2.0},"133":{"tf":2.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"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":{"54":{"tf":1.7320508075688772}}}}}}}}}}},"df":3,"docs":{"228":{"tf":1.0},"29":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"214":{"tf":1.0},"53":{"tf":2.449489742783178},"73":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"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":1,"docs":{"97":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"'":{"df":2,"docs":{"173":{"tf":1.0},"26":{"tf":1.0}}},"df":16,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"5":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":2.6457513110645907},"65":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":1.4142135623730951},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"53":{"tf":2.449489742783178},"55":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":3,"docs":{"111":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":2,"docs":{"211":{"tf":1.0},"49":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"78":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.0},"93":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"108":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"29":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"139":{"tf":1.0},"22":{"tf":1.7320508075688772},"31":{"tf":1.0},"47":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"b":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"d":{"b":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"14":{"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":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"136":{"tf":1.0},"157":{"tf":3.872983346207417},"18":{"tf":1.0},"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"20":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":8,"docs":{"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.0},"29":{"tf":1.0},"91":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":2.0}}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"df":2,"docs":{"48":{"tf":1.0},"62":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":6,"docs":{"17":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"105":{"tf":1.0},"53":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":104,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"17":{"tf":2.6457513110645907},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.23606797749979},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":3.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"62":{"tf":2.23606797749979},"80":{"tf":2.449489742783178},"82":{"tf":2.6457513110645907},"83":{"tf":1.7320508075688772},"85":{"tf":5.196152422706632},"91":{"tf":3.872983346207417},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"v":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}}}},"f":{"df":1,"docs":{"10":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"28":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"53":{"tf":2.0},"54":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"31":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"36":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":27,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"49":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"210":{"tf":1.4142135623730951},"47":{"tf":1.0},"75":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"53":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"54":{"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":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"10":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":1,"docs":{"47":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"142":{"tf":1.0},"178":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"80":{"tf":2.0},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"199":{"tf":1.0},"205":{"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":85,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"100":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":2.23606797749979},"54":{"tf":2.0},"55":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"13":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":1,"docs":{"54":{"tf":1.0}}},"m":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}},"n":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"d":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"127":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"16":{"tf":1.4142135623730951},"53":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"139":{"tf":1.0},"16":{"tf":1.0},"48":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"103":{"tf":1.0},"85":{"tf":3.4641016151377544},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}}}}}}}},"df":10,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":2.449489742783178},"13":{"tf":2.8284271247461903},"14":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":4.242640687119285},"18":{"tf":1.0},"27":{"tf":1.0}}}},"i":{"c":{"df":28,"docs":{"110":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":3.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"83":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":22,"docs":{"14":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":2.0},"18":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"209":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"115":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"0":{".":{"3":{"9":{".":{"7":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"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":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"58":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"98":{"tf":2.449489742783178}},"n":{"df":2,"docs":{"5":{"tf":1.0},"91":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":2.0},"22":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"205":{"tf":1.0}}}}}}}}}}}}},"df":2,"docs":{"205":{"tf":1.0},"53":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"24":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"53":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"210":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":6,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.7320508075688772},"80":{"tf":2.0},"82":{"tf":1.4142135623730951},"97":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"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":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"111":{"tf":1.0},"114":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"228":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"0":{"5":{"0":{"6":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"2":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"154":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"91":{"tf":3.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"55":{"tf":1.0},"91":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":10,"docs":{"10":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"73":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"212":{"tf":1.0},"4":{"tf":1.0}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"228":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"11":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":23,"docs":{"106":{"tf":1.0},"213":{"tf":3.0},"214":{"tf":2.0},"215":{"tf":2.0},"216":{"tf":2.0},"217":{"tf":2.0},"218":{"tf":2.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.7320508075688772},"85":{"tf":3.3166247903554},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"e":{"6":{"4":{"df":5,"docs":{"213":{"tf":2.0},"220":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"223":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"222":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0}}}}}}}},"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":2,"docs":{"214":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":2.0},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}}}},"df":12,"docs":{"103":{"tf":1.0},"105":{"tf":1.7320508075688772},"214":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.0},"85":{"tf":4.795831523312719},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"218":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"28":{"tf":1.0},"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"206":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"6":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.8284271247461903},"77":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"176":{"tf":1.0},"210":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"56":{"tf":3.0},"58":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":2.0},"70":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"18":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"97":{"tf":2.449489742783178}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"47":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"207":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"10":{"tf":1.0},"176":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"181":{"tf":1.0},"214":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"105":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.7320508075688772},"58":{"tf":1.0},"62":{"tf":2.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"142":{"tf":1.7320508075688772},"159":{"tf":2.23606797749979},"163":{"tf":1.0},"164":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"62":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":19,"docs":{"103":{"tf":1.0},"11":{"tf":2.23606797749979},"16":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"108":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":3.0},"62":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"102":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":5,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"101":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"135":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"83":{"tf":1.0}}},"3":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"228":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"63":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"161":{"tf":1.0}},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":2.23606797749979},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":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":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{">":{"(":{"0":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":2.0},"117":{"tf":2.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"142":{"tf":2.8284271247461903},"156":{"tf":1.7320508075688772},"158":{"tf":2.6457513110645907},"159":{"tf":3.3166247903554},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.7320508075688772},"173":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":2.6457513110645907},"180":{"tf":2.6457513110645907},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":1.0},"214":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":3.0},"80":{"tf":2.449489742783178},"82":{"tf":3.4641016151377544},"83":{"tf":3.4641016151377544},"85":{"tf":3.7416573867739413},"93":{"tf":2.6457513110645907},"94":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"j":{"df":1,"docs":{"4":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"62":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}},"k":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"r":{"d":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"102":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"104":{"tf":1.0},"53":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"53":{"tf":1.0},"55":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"72":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":8,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"53":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"173":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":2.449489742783178},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"w":{"df":7,"docs":{"121":{"tf":1.0},"139":{"tf":1.4142135623730951},"182":{"tf":1.0},"27":{"tf":1.4142135623730951},"82":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"161":{"tf":1.0},"22":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"82":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"162":{"tf":1.0},"175":{"tf":2.0},"178":{"tf":1.0},"54":{"tf":1.7320508075688772},"91":{"tf":1.0}},"r":{"df":10,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":2.449489742783178},"225":{"tf":2.23606797749979},"226":{"tf":2.23606797749979},"227":{"tf":2.23606797749979},"78":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":2.23606797749979}},"i":{"d":{"df":4,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"97":{"tf":3.3166247903554}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"1":{".":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":2.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"53":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":2.23606797749979},"91":{"tf":3.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"91":{"tf":1.4142135623730951},"93":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"1":{".":{"7":{"3":{".":{"0":{"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":5,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0}}}},"p":{"df":1,"docs":{"18":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}}},"k":{"df":4,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"115":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"91":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"162":{"tf":1.0},"176":{"tf":2.23606797749979},"82":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":31,"docs":{"11":{"tf":1.0},"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"83":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"y":{".":{".":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.7320508075688772},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":7,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0}}}},"y":{"a":{"a":{"a":{"df":5,"docs":{"129":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":46,"docs":{"11":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.7320508075688772},"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.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"214":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":3.872983346207417},"91":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":7,"docs":{"115":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"214":{"tf":1.4142135623730951},"85":{"tf":2.8284271247461903},"97":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"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":5,"docs":{"210":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":31,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"62":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"58":{"tf":1.0},"68":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"[":{"8":{"3":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"6":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}}},"df":3,"docs":{"137":{"tf":1.4142135623730951},"161":{"tf":1.0},"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"r":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"210":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"73":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"208":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"52":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":72,"docs":{"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"174":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.0},"186":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"62":{"tf":2.8284271247461903},"78":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":4.69041575982343},"83":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"91":{"tf":4.123105625617661},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"[":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"174":{"tf":1.0},"194":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"220":{"tf":1.0},"223":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":9,"docs":{"115":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"186":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"62":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"209":{"tf":1.7320508075688772}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"174":{"tf":1.0},"19":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"177":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"184":{"tf":2.0},"53":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"13":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"94":{"tf":2.0}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"105":{"tf":1.0},"54":{"tf":1.7320508075688772},"88":{"tf":1.0}}}},"df":53,"docs":{"0":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"161":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":2.23606797749979},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"85":{"tf":2.8284271247461903},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},">":{"(":{"0":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"85":{"tf":2.23606797749979}}}}}}}}}}}}}},"df":5,"docs":{"156":{"tf":3.1622776601683795},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"85":{"tf":4.358898943540674}},"i":{"d":{"df":1,"docs":{"85":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":2.23606797749979},"85":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"85":{"tf":2.449489742783178}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"v":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":20,"docs":{"105":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"142":{"tf":1.0},"154":{"tf":1.4142135623730951},"158":{"tf":1.0},"214":{"tf":2.6457513110645907},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"62":{"tf":2.449489742783178},"80":{"tf":2.23606797749979},"82":{"tf":3.7416573867739413},"83":{"tf":2.0},"85":{"tf":4.358898943540674},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},">":{"(":{"0":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"106":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"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},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"135":{"tf":2.23606797749979},"136":{"tf":1.0},"154":{"tf":1.7320508075688772},"158":{"tf":1.0},"160":{"tf":3.605551275463989},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"85":{"tf":2.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"55":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.6457513110645907},"83":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"136":{"tf":1.0},"137":{"tf":2.0},"161":{"tf":3.3166247903554},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.6457513110645907},"85":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"85":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"162":{"tf":1.0},"167":{"tf":2.0},"2":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":2,"docs":{"68":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"3":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":3.4641016151377544},"91":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.0}}}},"s":{"df":2,"docs":{"53":{"tf":1.0},"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"139":{"tf":1.4142135623730951},"18":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"m":{"3":{"2":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":2.6457513110645907},"53":{"tf":3.1622776601683795},"56":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":2.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"139":{"tf":1.0},"15":{"tf":1.0},"53":{"tf":1.7320508075688772},"72":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"58":{"tf":1.4142135623730951},"62":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":1,"docs":{"54":{"tf":1.0}}},"v":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}},"b":{"3":{"df":1,"docs":{"51":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"31":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"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":{"0":{"tf":1.0},"171":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":7,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":2.0},"91":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"77":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"5":{"0":{"0":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"176":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.7320508075688772},"62":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"49":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":96,"docs":{"101":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"l":{"d":{"df":21,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":2.0},"3":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"210":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"223":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"x":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"k":{"c":{"d":{"df":1,"docs":{"200":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":4,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":1,"docs":{"61":{"tf":1.0}}},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}}},"title":{"root":{"1":{"2":{"8":{"df":7,"docs":{"117":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"162":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"49":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"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":{}}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}}}}}}},"t":{"a":{"df":2,"docs":{"0":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"107":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}},"l":{"df":1,"docs":{"138":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"103":{"tf":1.0},"136":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"48":{"tf":1.0},"83":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"26":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"67":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"28":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"170":{"tf":1.0},"172":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":11,"docs":{"10":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"188":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"102":{"tf":1.0},"187":{"tf":1.0},"32":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"216":{"tf":1.0},"220":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"200":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"93":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":1,"docs":{"143":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"67":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}},"v":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"10":{"tf":1.0},"66":{"tf":1.0},"77":{"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":2,"docs":{"102":{"tf":1.0},"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}}}}}}}},"l":{"a":{"b":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"29":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"67":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"211":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"9":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"190":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"112":{"tf":1.0},"133":{"tf":1.0},"182":{"tf":1.0},"27":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"121":{"tf":1.0},"177":{"tf":1.0},"60":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"g":{"df":6,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"101":{"tf":1.0},"212":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"130":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"172":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"184":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"173":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"79":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"217":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.0},"30":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"126":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":4,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"94":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":3,"docs":{"174":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"114":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"84":{"tf":1.0}},"e":{"6":{"4":{"df":4,"docs":{"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"1":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"214":{"tf":1.0},"61":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"175":{"tf":1.0}},"r":{"df":5,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"68":{"tf":1.0},"74":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"186":{"tf":1.0},"81":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"183":{"tf":1.0},"184":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"187":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"68":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"219":{"tf":1.0},"223":{"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":["the_azle_book.html#the-azle-book-beta","get_started.html#get-started","get_started.html#installation","get_started.html#deployment","rest_based_examples.html#examples","deployment.html#deployment","deployment.html#starting-the-local-replica","deployment.html#deploying-to-the-local-replica","deployment.html#interacting-with-your-canister","deployment.html#deploying-to-mainnet","deployment.html#common-deployment-issues","project_structure.html#project-structure-tldr","servers.html#servers-tldr","servers.html#servers","servers.html#nodejs-httpserver","servers.html#express","servers.html#jsonstringify","servers.html#server","servers.html#limitations","assets.html#assets-tldr","authentication.html#authentication-tldr","authentication.html#authentication","authentication.html#under-the-hood","fetch.html#fetch-tldr","fetch.html#fetch","fetch.html#cross-canister-calls-to-a-candid-canister","fetch.html#cross-canister-calls-to-an-http-canister","fetch.html#https-outcalls","debugging.html#debugging-tldr","debugging.html#debugging","debugging.html#consolelog-and-trycatch","debugging.html#canister-did-not-produce-a-response","debugging.html#no-error-message","debugging.html#final-compiled-and-bundled-javascript","limitations.html#limitations-tldr","reference_http/reference.html#reference","reference_http/autoreload.html#autoreload","reference_http/environment_variables.html#environment-variables","reference_http/environment_variables.html#azle_autoreload","reference_http/environment_variables.html#azle_dockerfile_hash","reference_http/environment_variables.html#azle_identity_storage_mode","reference_http/environment_variables.html#azle_instruction_count","reference_http/environment_variables.html#azle_proptest_num_runs","reference_http/environment_variables.html#azle_proptest_path","reference_http/environment_variables.html#azle_proptest_quiet","reference_http/environment_variables.html#azle_proptest_seed","reference_http/environment_variables.html#azle_proptest_verbose","reference_http/environment_variables.html#azle_test_fetch","reference_http/environment_variables.html#azle_use_dockerfile","reference_http/environment_variables.html#azle_verbose","reference_http/environment_variables.html#azle_wasmedge_quickjs_dir","reference_http/native_compilation.html#native-compilation-tldr","reference_http/native_compilation.html#native-compilation","candid_based_documentation.html#old-candid-based-documentation","azle.html#azle-beta","azle.html#disclaimer","azle.html#demergent-labs","azle.html#benefits-and-drawbacks","azle.html#benefits","azle.html#drawbacks","internet_computer_overview.html#internet-computer-overview","canisters_overview.html#canisters-overview","installation.html#installation","hello_world.html#hello-world","hello_world.html#quick-start","hello_world.html#methodical-start","hello_world.html#the-project-directory-and-file-structure","hello_world.html#indexts","hello_world.html#tsconfigjson","hello_world.html#dfxjson","hello_world.html#local-deployment","hello_world.html#common-deployment-issues","hello_world.html#interacting-with-your-canister-from-the-command-line","hello_world.html#interacting-with-your-canister-from-the-web-ui","deployment_candid_based.html#deployment","deployment_candid_based.html#starting-the-local-replica","deployment_candid_based.html#deploying-to-the-local-replica","deployment_candid_based.html#interacting-with-your-canister","deployment_candid_based.html#dfx-command-line","deployment_candid_based.html#dfx-web-ui","deployment_candid_based.html#dfinityagent","deployment_candid_based.html#deploying-to-mainnet","deployment_candid_based.html#common-deployment-issues","examples.html#examples","query_methods.html#query-methods","query_methods.html#tldr","update_methods.html#update-methods","update_methods.html#tldr","candid.html#candid","stable_structures.html#stable-structures","stable_structures.html#tldr","stable_structures.html#caveats","stable_structures.html#float64-values","stable_structures.html#candidtype-performance","stable_structures.html#migrations","stable_structures.html#canister","cross_canister.html#cross-canister","http.html#http","http.html#incoming-http-requests","http.html#outgoing-http-requests","management_canister.html#management-canister","canister_lifecycle.html#canister-lifecycle","timers.html#timers","cycles.html#cycles","caveats.html#caveats","caveats.html#unknown-security-vulnerabilities","caveats.html#npm-packages","caveats.html#javascript-environment-apis","caveats.html#high-candid-encodingdecoding-costs","caveats.html#promises","caveats.html#jsonparse-and-stablebtreemap-float64-values","reference/reference.html#reference","reference/bitcoin.html#bitcoin","reference/bitcoin.html#tecdsa","reference/bitcoin.html#bitcoin-integration","reference/bitcoin.html#ckbtc","reference/call_apis/call_apis.html#call-apis","reference/call_apis/accept_message.html#accept-message","reference/call_apis/arg_data_raw.html#arg-data-raw","reference/call_apis/arg_data_raw_size.html#arg-data-raw-size","reference/call_apis/call.html#call","reference/call_apis/call_raw.html#call-raw","reference/call_apis/call_raw128.html#call-raw-128","reference/call_apis/call_with_payment.html#call-with-payment","reference/call_apis/call_with_payment128.html#call-with-payment-128","reference/call_apis/caller.html#caller","reference/call_apis/method_name.html#method-name","reference/call_apis/msg_cycles_accept.html#msg-cycles-accept","reference/call_apis/msg_cycles_accept128.html#msg-cycles-accept-128","reference/call_apis/msg_cycles_available.html#msg-cycles-available","reference/call_apis/msg_cycles_available128.html#msg-cycles-available-128","reference/call_apis/msg_cycles_refunded.html#msg-cycles-refunded","reference/call_apis/msg_cycles_refunded128.html#msg-cycles-refunded-128","reference/call_apis/notify.html#notify","reference/call_apis/notify_raw.html#notify-raw","reference/call_apis/notify_with_payment_128.html#notify-with-payment-128","reference/call_apis/reject.html#reject","reference/call_apis/reject_code.html#reject-code","reference/call_apis/reject_message.html#reject-message","reference/call_apis/reply.html#reply","reference/call_apis/reply_raw.html#reply-raw","reference/candid/candid.html#candid","reference/candid/blob.html#blob","reference/candid/bool.html#bool","reference/candid/empty.html#empty","reference/candid/float32.html#float32","reference/candid/float64.html#float64","reference/candid/func.html#func","reference/candid/int.html#int","reference/candid/int8.html#int8","reference/candid/int16.html#int16","reference/candid/int32.html#int32","reference/candid/int64.html#int64","reference/candid/nat.html#nat","reference/candid/nat8.html#nat8","reference/candid/nat16.html#nat16","reference/candid/nat32.html#nat32","reference/candid/nat64.html#nat64","reference/candid/null.html#null","reference/candid/opt.html#opt","reference/candid/principal.html#principal","reference/candid/record.html#record","reference/candid/reserved.html#reserved","reference/candid/service.html#service","reference/candid/text.html#text","reference/candid/variant.html#variant","reference/candid/vec.html#vec","reference/canister_apis/canister_apis.html#canister-apis","reference/canister_apis/candid_decode.html#candid-decode","reference/canister_apis/candid_encode.html#candid-encode","reference/canister_apis/canister_balance.html#canister-balance","reference/canister_apis/canister_balance128.html#canister-balance-128","reference/canister_apis/canister_version.html#canister-version","reference/canister_apis/canister_id.html#canister-id","reference/canister_apis/data_certificate.html#data-certificate","reference/canister_apis/instruction_counter.html#instruction-counter","reference/canister_apis/is_controller.html#is-controller","reference/canister_apis/performance_counter.html#performance-counter","reference/canister_apis/print.html#print","reference/canister_apis/set_certified_data.html#set-certified-data","reference/canister_apis/time.html#time","reference/canister_apis/trap.html#trap","reference/canister_methods/canister_methods.html#canister-methods","reference/canister_methods/heartbeat.html#heartbeat","reference/canister_methods/http_request.html#http_request","reference/canister_methods/http_request_update.html#http_request","reference/canister_methods/init.html#init","reference/canister_methods/inspect_message.html#inspect-message","reference/canister_methods/post_upgrade.html#post-upgrade","reference/canister_methods/pre_upgrade.html#pre-upgrade","reference/canister_methods/query.html#query","reference/canister_methods/update.html#update","reference/environment_variables.html#environment-variables","reference/environment_variables.html#dfxjson","reference/environment_variables.html#processenv","reference/management_canister/management_canister.html#management-canister","reference/management_canister/bitcoin_get_balance.html#bitcoin_get_balance","reference/management_canister/bitcoin_get_current_fee_percentiles.html#bitcoin_get_current_fee_percentiles","reference/management_canister/bitcoin_get_utxos.html#bitcoin_get_utxos","reference/management_canister/bitcoin_send_transaction.html#bitcoin_send_transaction","reference/management_canister/canister_status.html#canister_status","reference/management_canister/create_canister.html#create_canister","reference/management_canister/delete_canister.html#delete_canister","reference/management_canister/deposit_cycles.html#deposit_cycles","reference/management_canister/ecdsa_public_key.html#ecdsa_public_key","reference/management_canister/http_request.html#http_request","reference/management_canister/install_code.html#install_code","reference/management_canister/provisional_create_canister_with_cycles.html#provisional_create_canister_with_cycles","reference/management_canister/provisional_top_up_canister.html#provisional_top_up_canister","reference/management_canister/raw_rand.html#raw_rand","reference/management_canister/sign_with_ecdsa.html#sign_with_ecdsa","reference/management_canister/start_canister.html#start_canister","reference/management_canister/stop_canister.html#stop_canister","reference/management_canister/uninstall_code.html#uninstall_code","reference/management_canister/update_settings.html#update_settings","reference/plugins.html#plugins","reference/plugins.html#local-plugin","reference/plugins.html#npm-plugin","reference/stable_memory/stable_memory.html#stable-memory","reference/stable_memory/stable_structures.html#stable-structures","reference/stable_memory/stable_bytes.html#stable-bytes","reference/stable_memory/stable_grow.html#stable-grow","reference/stable_memory/stable_read.html#stable-read","reference/stable_memory/stable_size.html#stable-size","reference/stable_memory/stable_write.html#stable-write","reference/stable_memory/stable64_grow.html#stable64-grow","reference/stable_memory/stable64_read.html#stable64-read","reference/stable_memory/stable64_size.html#stable64-size","reference/stable_memory/stable64_write.html#stable64-write","reference/timers/timers.html#timers","reference/timers/clear_timer.html#clear-timer","reference/timers/set_timer.html#set-timer","reference/timers/set_timer_interval.html#set-timer-interval","reference/wasm_binary_optimization.html#wasm-binary-optimization"],"index":{"documentStore":{"docInfo":{"0":{"body":155,"breadcrumbs":6,"title":3},"1":{"body":48,"breadcrumbs":2,"title":1},"10":{"body":75,"breadcrumbs":4,"title":3},"100":{"body":32,"breadcrumbs":8,"title":2},"101":{"body":29,"breadcrumbs":8,"title":2},"102":{"body":163,"breadcrumbs":6,"title":1},"103":{"body":83,"breadcrumbs":6,"title":1},"104":{"body":0,"breadcrumbs":6,"title":1},"105":{"body":7,"breadcrumbs":8,"title":3},"106":{"body":36,"breadcrumbs":7,"title":2},"107":{"body":12,"breadcrumbs":8,"title":3},"108":{"body":27,"breadcrumbs":9,"title":4},"109":{"body":17,"breadcrumbs":6,"title":1},"11":{"body":63,"breadcrumbs":5,"title":3},"110":{"body":17,"breadcrumbs":9,"title":4},"111":{"body":19,"breadcrumbs":6,"title":1},"112":{"body":15,"breadcrumbs":7,"title":1},"113":{"body":26,"breadcrumbs":7,"title":1},"114":{"body":27,"breadcrumbs":8,"title":2},"115":{"body":30,"breadcrumbs":7,"title":1},"116":{"body":58,"breadcrumbs":9,"title":2},"117":{"body":17,"breadcrumbs":11,"title":2},"118":{"body":34,"breadcrumbs":13,"title":3},"119":{"body":36,"breadcrumbs":15,"title":4},"12":{"body":42,"breadcrumbs":3,"title":2},"120":{"body":68,"breadcrumbs":9,"title":1},"121":{"body":39,"breadcrumbs":11,"title":2},"122":{"body":38,"breadcrumbs":13,"title":3},"123":{"body":47,"breadcrumbs":11,"title":2},"124":{"body":42,"breadcrumbs":13,"title":3},"125":{"body":26,"breadcrumbs":9,"title":1},"126":{"body":46,"breadcrumbs":11,"title":2},"127":{"body":24,"breadcrumbs":13,"title":3},"128":{"body":24,"breadcrumbs":15,"title":4},"129":{"body":24,"breadcrumbs":13,"title":3},"13":{"body":74,"breadcrumbs":2,"title":1},"130":{"body":24,"breadcrumbs":15,"title":4},"131":{"body":33,"breadcrumbs":13,"title":3},"132":{"body":33,"breadcrumbs":15,"title":4},"133":{"body":25,"breadcrumbs":9,"title":1},"134":{"body":28,"breadcrumbs":11,"title":2},"135":{"body":24,"breadcrumbs":13,"title":3},"136":{"body":26,"breadcrumbs":9,"title":1},"137":{"body":25,"breadcrumbs":11,"title":2},"138":{"body":25,"breadcrumbs":11,"title":2},"139":{"body":33,"breadcrumbs":9,"title":1},"14":{"body":47,"breadcrumbs":3,"title":2},"140":{"body":62,"breadcrumbs":11,"title":2},"141":{"body":25,"breadcrumbs":7,"title":1},"142":{"body":78,"breadcrumbs":8,"title":1},"143":{"body":54,"breadcrumbs":8,"title":1},"144":{"body":90,"breadcrumbs":8,"title":1},"145":{"body":56,"breadcrumbs":8,"title":1},"146":{"body":56,"breadcrumbs":8,"title":1},"147":{"body":120,"breadcrumbs":8,"title":1},"148":{"body":56,"breadcrumbs":8,"title":1},"149":{"body":56,"breadcrumbs":8,"title":1},"15":{"body":44,"breadcrumbs":2,"title":1},"150":{"body":56,"breadcrumbs":8,"title":1},"151":{"body":56,"breadcrumbs":8,"title":1},"152":{"body":56,"breadcrumbs":8,"title":1},"153":{"body":56,"breadcrumbs":8,"title":1},"154":{"body":56,"breadcrumbs":8,"title":1},"155":{"body":56,"breadcrumbs":8,"title":1},"156":{"body":56,"breadcrumbs":8,"title":1},"157":{"body":56,"breadcrumbs":8,"title":1},"158":{"body":55,"breadcrumbs":8,"title":1},"159":{"body":79,"breadcrumbs":8,"title":1},"16":{"body":60,"breadcrumbs":2,"title":1},"160":{"body":69,"breadcrumbs":8,"title":1},"161":{"body":95,"breadcrumbs":8,"title":1},"162":{"body":54,"breadcrumbs":8,"title":1},"163":{"body":100,"breadcrumbs":8,"title":1},"164":{"body":57,"breadcrumbs":8,"title":1},"165":{"body":103,"breadcrumbs":8,"title":1},"166":{"body":90,"breadcrumbs":8,"title":1},"167":{"body":26,"breadcrumbs":9,"title":2},"168":{"body":27,"breadcrumbs":11,"title":2},"169":{"body":30,"breadcrumbs":11,"title":2},"17":{"body":146,"breadcrumbs":2,"title":1},"170":{"body":25,"breadcrumbs":11,"title":2},"171":{"body":25,"breadcrumbs":13,"title":3},"172":{"body":23,"breadcrumbs":11,"title":2},"173":{"body":26,"breadcrumbs":11,"title":2},"174":{"body":35,"breadcrumbs":11,"title":2},"175":{"body":27,"breadcrumbs":11,"title":2},"176":{"body":27,"breadcrumbs":9,"title":1},"177":{"body":19,"breadcrumbs":11,"title":2},"178":{"body":29,"breadcrumbs":9,"title":1},"179":{"body":26,"breadcrumbs":13,"title":3},"18":{"body":43,"breadcrumbs":2,"title":1},"180":{"body":23,"breadcrumbs":9,"title":1},"181":{"body":35,"breadcrumbs":9,"title":1},"182":{"body":12,"breadcrumbs":9,"title":2},"183":{"body":21,"breadcrumbs":9,"title":1},"184":{"body":105,"breadcrumbs":9,"title":1},"185":{"body":105,"breadcrumbs":9,"title":1},"186":{"body":26,"breadcrumbs":9,"title":1},"187":{"body":46,"breadcrumbs":11,"title":2},"188":{"body":19,"breadcrumbs":11,"title":2},"189":{"body":19,"breadcrumbs":11,"title":2},"19":{"body":180,"breadcrumbs":3,"title":2},"190":{"body":17,"breadcrumbs":9,"title":1},"191":{"body":25,"breadcrumbs":9,"title":1},"192":{"body":25,"breadcrumbs":9,"title":2},"193":{"body":40,"breadcrumbs":8,"title":1},"194":{"body":27,"breadcrumbs":8,"title":1},"195":{"body":20,"breadcrumbs":9,"title":2},"196":{"body":39,"breadcrumbs":9,"title":1},"197":{"body":35,"breadcrumbs":9,"title":1},"198":{"body":39,"breadcrumbs":9,"title":1},"199":{"body":44,"breadcrumbs":9,"title":1},"2":{"body":93,"breadcrumbs":2,"title":1},"20":{"body":221,"breadcrumbs":3,"title":2},"200":{"body":29,"breadcrumbs":9,"title":1},"201":{"body":30,"breadcrumbs":9,"title":1},"202":{"body":30,"breadcrumbs":9,"title":1},"203":{"body":32,"breadcrumbs":9,"title":1},"204":{"body":50,"breadcrumbs":9,"title":1},"205":{"body":56,"breadcrumbs":9,"title":1},"206":{"body":43,"breadcrumbs":9,"title":1},"207":{"body":31,"breadcrumbs":9,"title":1},"208":{"body":35,"breadcrumbs":9,"title":1},"209":{"body":27,"breadcrumbs":9,"title":1},"21":{"body":4,"breadcrumbs":2,"title":1},"210":{"body":57,"breadcrumbs":9,"title":1},"211":{"body":30,"breadcrumbs":9,"title":1},"212":{"body":30,"breadcrumbs":9,"title":1},"213":{"body":30,"breadcrumbs":9,"title":1},"214":{"body":40,"breadcrumbs":9,"title":1},"215":{"body":40,"breadcrumbs":7,"title":1},"216":{"body":9,"breadcrumbs":8,"title":2},"217":{"body":12,"breadcrumbs":8,"title":2},"218":{"body":20,"breadcrumbs":9,"title":2},"219":{"body":98,"breadcrumbs":11,"title":2},"22":{"body":91,"breadcrumbs":3,"title":2},"220":{"body":19,"breadcrumbs":11,"title":2},"221":{"body":20,"breadcrumbs":11,"title":2},"222":{"body":24,"breadcrumbs":11,"title":2},"223":{"body":19,"breadcrumbs":11,"title":2},"224":{"body":24,"breadcrumbs":11,"title":2},"225":{"body":20,"breadcrumbs":11,"title":2},"226":{"body":24,"breadcrumbs":11,"title":2},"227":{"body":19,"breadcrumbs":11,"title":2},"228":{"body":24,"breadcrumbs":11,"title":2},"229":{"body":7,"breadcrumbs":7,"title":1},"23":{"body":179,"breadcrumbs":3,"title":2},"230":{"body":20,"breadcrumbs":10,"title":2},"231":{"body":42,"breadcrumbs":10,"title":2},"232":{"body":44,"breadcrumbs":12,"title":3},"233":{"body":94,"breadcrumbs":11,"title":3},"24":{"body":42,"breadcrumbs":2,"title":1},"25":{"body":19,"breadcrumbs":6,"title":5},"26":{"body":17,"breadcrumbs":6,"title":5},"27":{"body":4,"breadcrumbs":3,"title":2},"28":{"body":42,"breadcrumbs":3,"title":2},"29":{"body":28,"breadcrumbs":2,"title":1},"3":{"body":74,"breadcrumbs":2,"title":1},"30":{"body":14,"breadcrumbs":3,"title":2},"31":{"body":99,"breadcrumbs":4,"title":3},"32":{"body":340,"breadcrumbs":3,"title":2},"33":{"body":54,"breadcrumbs":5,"title":4},"34":{"body":74,"breadcrumbs":3,"title":2},"35":{"body":5,"breadcrumbs":2,"title":1},"36":{"body":106,"breadcrumbs":3,"title":1},"37":{"body":13,"breadcrumbs":5,"title":2},"38":{"body":12,"breadcrumbs":4,"title":1},"39":{"body":26,"breadcrumbs":4,"title":1},"4":{"body":26,"breadcrumbs":2,"title":1},"40":{"body":3,"breadcrumbs":4,"title":1},"41":{"body":11,"breadcrumbs":4,"title":1},"42":{"body":3,"breadcrumbs":4,"title":1},"43":{"body":3,"breadcrumbs":4,"title":1},"44":{"body":3,"breadcrumbs":4,"title":1},"45":{"body":3,"breadcrumbs":4,"title":1},"46":{"body":3,"breadcrumbs":4,"title":1},"47":{"body":3,"breadcrumbs":4,"title":1},"48":{"body":15,"breadcrumbs":4,"title":1},"49":{"body":9,"breadcrumbs":4,"title":1},"5":{"body":42,"breadcrumbs":2,"title":1},"50":{"body":13,"breadcrumbs":4,"title":1},"51":{"body":19,"breadcrumbs":6,"title":3},"52":{"body":174,"breadcrumbs":5,"title":2},"53":{"body":66,"breadcrumbs":8,"title":4},"54":{"body":24,"breadcrumbs":8,"title":2},"55":{"body":31,"breadcrumbs":7,"title":1},"56":{"body":20,"breadcrumbs":8,"title":2},"57":{"body":21,"breadcrumbs":8,"title":2},"58":{"body":866,"breadcrumbs":7,"title":1},"59":{"body":361,"breadcrumbs":7,"title":1},"6":{"body":73,"breadcrumbs":4,"title":3},"60":{"body":137,"breadcrumbs":10,"title":3},"61":{"body":104,"breadcrumbs":8,"title":2},"62":{"body":93,"breadcrumbs":6,"title":1},"63":{"body":68,"breadcrumbs":8,"title":2},"64":{"body":80,"breadcrumbs":8,"title":2},"65":{"body":0,"breadcrumbs":8,"title":2},"66":{"body":43,"breadcrumbs":10,"title":4},"67":{"body":271,"breadcrumbs":7,"title":1},"68":{"body":14,"breadcrumbs":7,"title":1},"69":{"body":19,"breadcrumbs":7,"title":1},"7":{"body":27,"breadcrumbs":4,"title":3},"70":{"body":14,"breadcrumbs":8,"title":2},"71":{"body":9,"breadcrumbs":9,"title":3},"72":{"body":36,"breadcrumbs":10,"title":4},"73":{"body":44,"breadcrumbs":10,"title":4},"74":{"body":39,"breadcrumbs":6,"title":1},"75":{"body":65,"breadcrumbs":8,"title":3},"76":{"body":12,"breadcrumbs":8,"title":3},"77":{"body":13,"breadcrumbs":7,"title":2},"78":{"body":59,"breadcrumbs":8,"title":3},"79":{"body":39,"breadcrumbs":8,"title":3},"8":{"body":65,"breadcrumbs":3,"title":2},"80":{"body":21,"breadcrumbs":6,"title":1},"81":{"body":22,"breadcrumbs":7,"title":2},"82":{"body":64,"breadcrumbs":8,"title":3},"83":{"body":51,"breadcrumbs":6,"title":1},"84":{"body":0,"breadcrumbs":8,"title":2},"85":{"body":304,"breadcrumbs":7,"title":1},"86":{"body":0,"breadcrumbs":8,"title":2},"87":{"body":483,"breadcrumbs":7,"title":1},"88":{"body":421,"breadcrumbs":6,"title":1},"89":{"body":0,"breadcrumbs":8,"title":2},"9":{"body":28,"breadcrumbs":3,"title":2},"90":{"body":794,"breadcrumbs":7,"title":1},"91":{"body":0,"breadcrumbs":7,"title":1},"92":{"body":12,"breadcrumbs":8,"title":2},"93":{"body":50,"breadcrumbs":8,"title":2},"94":{"body":25,"breadcrumbs":7,"title":1},"95":{"body":24,"breadcrumbs":7,"title":1},"96":{"body":538,"breadcrumbs":8,"title":2},"97":{"body":3,"breadcrumbs":6,"title":1},"98":{"body":102,"breadcrumbs":8,"title":3},"99":{"body":149,"breadcrumbs":8,"title":3}},"docs":{"0":{"body":"Welcome to The Azle Book! This is a guide for building secure decentralized/replicated servers in TypeScript or JavaScript on ICP . The current replication factor is 13-40 times . Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP The Azle Book is subject to the following license and Azle's License Extension : MIT License Copyright (c) 2024 AZLE token holders (nlhft-2iaaa-aaaae-qaaua-cai) Permission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.","breadcrumbs":"The Azle Book (Beta) » The Azle Book (Beta)","id":"0","title":"The Azle Book (Beta)"},"1":{"body":"Installation Deployment Azle helps you to build secure decentralized/replicated servers in TypeScript or JavaScript on ICP . The current replication factor is 13-40 times . Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP","breadcrumbs":"Get Started » Get Started","id":"1","title":"Get Started"},"10":{"body":"If you run into an error during deployment, try the following: Ensure that you have followed the installation instructions exactly as specified in the Get Started chapter Start the whole deployment process from scratch and look for more error output by doing the following: In your replica terminal: Terminate the replica in your terminal or run dfx stop if your replica is running in the background dfx start --clean --host 127.0.0.1:8000 In your project terminal at the root directory of your project: rm -rf node_modules npm install npx azle clean AZLE_VERBOSE=true dfx deploy If the build process hangs on Waiting for VM ..., see this issue for possible fixes If the problem is still not resolved, reach out with the error output in the Discord channel","breadcrumbs":"Deployment » Common deployment issues","id":"10","title":"Common deployment issues"},"100":{"body":"This chapter is a work in progress. You can access the management canister like this: import { blob, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ randomBytes: update([], blob, async () => { return await ic.call(managementCanister.raw_rand); })\n}); See the management canister reference section for more information.","breadcrumbs":"Old Candid-based Documentation » Management Canister » Management Canister","id":"100","title":"Management Canister"},"101":{"body":"This chapter is a work in progress. import { Canister, init, postUpgrade, preUpgrade } from 'azle'; export default Canister({ init: init([], () => { console.log('runs on first canister install'); }), preUpgrade: preUpgrade(() => { console.log('runs before canister upgrade'); }), postUpgrade: postUpgrade([], () => { console.log('runs after canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Canister Lifecycle » Canister Lifecycle","id":"101","title":"Canister Lifecycle"},"102":{"body":"This chapter is a work in progress. import { blob, bool, Canister, Duration, ic, int8, query, Record, text, TimerId, update, Void\n} from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const StatusReport = Record({ single: bool, inline: int8, capture: text, repeat: int8, singleCrossCanister: blob, repeatCrossCanister: blob\n}); const TimerIds = Record({ single: TimerId, inline: TimerId, capture: TimerId, repeat: TimerId, singleCrossCanister: TimerId, repeatCrossCanister: TimerId\n}); let statusReport: typeof StatusReport = { single: false, inline: 0, capture: '', repeat: 0, singleCrossCanister: Uint8Array.from([]), repeatCrossCanister: Uint8Array.from([])\n}; export default Canister({ clearTimer: update([TimerId], Void, (timerId) => { ic.clearTimer(timerId); console.log(`timer ${timerId} cancelled`); }), setTimers: update([Duration, Duration], TimerIds, (delay, interval) => { const capturedValue = '🚩'; const singleId = ic.setTimer(delay, oneTimeTimerCallback); const inlineId = ic.setTimer(delay, () => { statusReport.inline = 1; console.log('Inline timer called'); }); const captureId = ic.setTimer(delay, () => { statusReport.capture = capturedValue; console.log(`Timer captured value ${capturedValue}`); }); const repeatId = ic.setTimerInterval(interval, () => { statusReport.repeat++; console.log(`Repeating timer. Call ${statusReport.repeat}`); }); const singleCrossCanisterId = ic.setTimer( delay, singleCrossCanisterTimerCallback ); const repeatCrossCanisterId = ic.setTimerInterval( interval, repeatCrossCanisterTimerCallback ); return { single: singleId, inline: inlineId, capture: captureId, repeat: repeatId, singleCrossCanister: singleCrossCanisterId, repeatCrossCanister: repeatCrossCanisterId }; }), statusReport: query([], StatusReport, () => { return statusReport; })\n}); function oneTimeTimerCallback() { statusReport.single = true; console.log('oneTimeTimerCallback called');\n} async function singleCrossCanisterTimerCallback() { console.log('singleCrossCanisterTimerCallback'); statusReport.singleCrossCanister = await ic.call( managementCanister.raw_rand );\n} async function repeatCrossCanisterTimerCallback() { console.log('repeatCrossCanisterTimerCallback'); statusReport.repeatCrossCanister = Uint8Array.from([ ...statusReport.repeatCrossCanister, ...(await ic.call(managementCanister.raw_rand)) ]);\n}","breadcrumbs":"Old Candid-based Documentation » Timers » Timers","id":"102","title":"Timers"},"103":{"body":"This chapter is a work in progress. Cycles are essentially units of computational resources such as bandwidth, memory, and CPU instructions. Costs are generally metered on the Internet Computer (IC) by cycles. You can see a breakdown of all cycle costs here . Currently queries do not have any cycle costs. Most important to you will probably be update costs. TODO break down some cycle scenarios maybe? Perhaps we should show some of our analyses for different types of applications. Maybe show how to send and receive cycles, exactly how to do it. Show all of the APIs for sending or receiving cycles? Perhaps we don't need to do that here, since each API will show this information. Maybe here we just show the basic concept of cycles, link to the main cycles cost page, and show a few examples of how to break down these costs or estimate these costs.","breadcrumbs":"Old Candid-based Documentation » Cycles » Cycles","id":"103","title":"Cycles"},"104":{"body":"","breadcrumbs":"Old Candid-based Documentation » Caveats » Caveats","id":"104","title":"Caveats"},"105":{"body":"Azle is a beta project. See the disclaimer for more information.","breadcrumbs":"Old Candid-based Documentation » Caveats » Unknown security vulnerabilities","id":"105","title":"Unknown security vulnerabilities"},"106":{"body":"Some npm packages will work and some will not work. It is our long-term goal to support as many npm packages as possible. There are various reasons why an npm package may not currently work, including the small Wasm binary limit of the IC and unimplemented web or Node.js APIs. Feel free to open issues if your npm package does not work in Azle.","breadcrumbs":"Old Candid-based Documentation » Caveats » npm packages","id":"106","title":"npm packages"},"107":{"body":"You may encounter various missing JavaScript environment APIs, such as those you would expect in the web or Node.js environments.","breadcrumbs":"Old Candid-based Documentation » Caveats » JavaScript environment APIs","id":"107","title":"JavaScript environment APIs"},"108":{"body":"Candid encoding/decoding is currently very unoptimized. This will most likely lead to a ~1-2 million extra fixed instruction cost for all calls. Be careful using CandidType Serializable objects with StableBTreeMap, or using any other API or data structure that engages in Candid encoding/decoding.","breadcrumbs":"Old Candid-based Documentation » Caveats » High Candid encoding/decoding costs","id":"108","title":"High Candid encoding/decoding costs"},"109":{"body":"Though promises are implemented, the underlying queue that handles asynchronous operations is very simple. This queue will not behave exactly as queues from the major JS engines.","breadcrumbs":"Old Candid-based Documentation » Caveats » Promises","id":"109","title":"Promises"},"11":{"body":"Your project is just a directory with a dfx.json file that points to your .ts or .js entrypoint. Here's what your directory structure might look like: hello_world/\n|\n├── dfx.json\n|\n└── src/ └── api.ts And the corresponding dfx.json file: { \"canisters\": { \"api\": { \"type\": \"custom\", \"main\": \"src/api.ts\", \"candid\": \"src/api.did\", \"candid_gen\": \"http\", \"build\": \"npx azle api\", \"wasm\": \".azle/api/api.wasm\", \"gzip\": true, \"metadata\": [ { \"name\": \"candid:service\", \"path\": \"src/api.did\" }, { \"name\": \"cdk:name\", \"content\": \"azle\" } ] } }\n} Once you have created this directory structure you can deploy to mainnet or a locally running replica by running the dfx deploy command in the same directory as your dfx.json file.","breadcrumbs":"Project Structure » Project Structure TL;DR","id":"11","title":"Project Structure TL;DR"},"110":{"body":"It seems to be only some float64 values cannot be successfully stored and retrieved with a StableBTreeMap using stableJson because of this bug with JSON.parse: https://github.com/bellard/quickjs/issues/206 This will also affect stand-alone usage of JSON.parse.","breadcrumbs":"Old Candid-based Documentation » Caveats » JSON.parse and StableBTreeMap float64 values","id":"110","title":"JSON.parse and StableBTreeMap float64 values"},"111":{"body":"Bitcoin Call APIs Candid Canister APIs Canister Methods Environment Variables Management Canister Plugins Stable Memory Timers Wasm Binary Optimization","breadcrumbs":"Old Candid-based Documentation » Reference » Reference","id":"111","title":"Reference"},"112":{"body":"The Internet Computer (IC) interacts with the Bitcoin blockchain through the use of tECDSA, the Bitcoin integration, and a ledger canister called ckBTC.","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » Bitcoin","id":"112","title":"Bitcoin"},"113":{"body":"tECDSA on the IC allows canisters to request access to threshold ECDSA keypairs on the tECDSA subnet. This functionality is exposed through two management canister methods: ecdsa_public_key sign_with_ecdsa The following are examples using tECDSA: basic_bitcoin threshold_ecdsa","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » tECDSA","id":"113","title":"tECDSA"},"114":{"body":"The Bitcoin integration allows canisters on the IC to interact directly with the Bitcoin network. This functionality is exposed through the following management canister methods: bitcoin_get_balance bitcoin_get_current_fee_percentiles bitcoin_get_utxos bitcoin_send_transaction The following are examples using the Bitcoin integration: basic_bitcoin bitcoin","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » Bitcoin integration","id":"114","title":"Bitcoin integration"},"115":{"body":"ckBTC is a ledger canister deployed to the IC. It follows the ICRC standard, and can be accessed easily from an Azle canister using azle/canisters/ICRC if you only need the ICRC methods. For access to the full ledger methods you will need to create your own Service for now. The following are examples using ckBTC: ckBTC","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » ckBTC","id":"115","title":"ckBTC"},"116":{"body":"accept message arg data raw arg data raw size call call raw call raw 128 call with payment call with payment 128 caller method name msg cycles accept msg cycles accept 128 msg cycles available msg cycles available 128 msg cycles refunded msg cycles refunded 128 notify notify raw notify with payment 128 reject reject code reject message reply reply raw","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » Call APIs","id":"116","title":"Call APIs"},"117":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { Canister, ic, inspectMessage } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { ic.acceptMessage(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » accept message » accept message","id":"117","title":"accept message"},"118":{"body":"This section is a work in progress. Examples: ic_api import { blob, bool, Canister, ic, int8, query, text } from 'azle'; export default Canister({ // returns the argument data as bytes. argDataRaw: query( [blob, int8, bool, text], blob, (arg1, arg2, arg3, arg4) => { return ic.argDataRaw(); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » arg data raw » arg data raw","id":"118","title":"arg data raw"},"119":{"body":"This section is a work in progress. Examples: ic_api import { blob, bool, Canister, ic, int8, nat, query, text } from 'azle'; export default Canister({ // returns the length of the argument data in bytes argDataRawSize: query( [blob, int8, bool, text], nat, (arg1, arg2, arg3, arg4) => { return ic.argDataRawSize(); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » arg data raw size » arg data raw size","id":"119","title":"arg data raw size"},"12":{"body":"Just write Node.js servers like this: import { createServer } from 'http'; const server = createServer((req, res) => { res.write('Hello World!'); res.end();\n}); server.listen(); or write Express servers like this: import express, { Request } from 'express'; let db = { hello: ''\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.json(db);\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.json(db);\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » Servers TL;DR","id":"12","title":"Servers TL;DR"},"120":{"body":"This section is a work in progress. Examples: async_await bitcoin composite_queries cross_canister_calls cycles ethereum_json_rpc func_types heartbeat inline_types ledger_canister management_canister outgoing_http_requests threshold_ecdsa rejections timers tuple_types whoami import { Canister, ic, init, nat64, Principal, update } from 'azle'; const TokenCanister = Canister({ transfer: update([Principal, nat64], nat64)\n}); let tokenCanister: typeof TokenCanister; export default Canister({ init: init([], setup), postDeploy: init([], setup), payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); function setup() { tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai') );\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call » call","id":"120","title":"call"},"121":{"body":"This section is a work in progress. Examples: call_raw outgoing_http_requests import { Canister, ic, nat64, Principal, text, update } from 'azle'; export default Canister({ executeCallRaw: update( [Principal, text, text, nat64], text, async (canisterId, method, candidArgs, payment) => { const candidBytes = await ic.callRaw( canisterId, method, ic.candidEncode(candidArgs), payment ); return ic.candidDecode(candidBytes); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call raw » call raw","id":"121","title":"call raw"},"122":{"body":"This section is a work in progress. Examples: call_raw import { Canister, ic, nat, Principal, text, update } from 'azle'; export default Canister({ executeCallRaw128: update( [Principal, text, text, nat], text, async (canisterId, method, candidArgs, payment) => { const candidBytes = await ic.callRaw128( canisterId, method, ic.candidEncode(candidArgs), payment ); return ic.candidDecode(candidBytes); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call raw 128 » call raw 128","id":"122","title":"call raw 128"},"123":{"body":"This section is a work in progress. Examples: bitcoin cycles ethereum_json_rpc management_canister outgoing_http_requests threshold_ecdsa import { blob, Canister, ic, Principal, update, Void } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], Void, async (canisterId, wasmModule) => { return await ic.call(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call with payment » call with payment","id":"123","title":"call with payment"},"124":{"body":"This section is a work in progress. Examples: cycles import { blob, Canister, ic, Principal, update, Void } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], Void, async (canisterId, wasmModule) => { return await ic.call128(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call with payment 128 » call with payment 128","id":"124","title":"call with payment 128"},"125":{"body":"This section is a work in progress. Examples: ic_api threshold_ecdsa whoami import { Canister, ic, Principal, update } from 'azle'; export default Canister({ // returns the principal of the identity that called this function caller: update([], Principal, () => { return ic.caller(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » caller » caller","id":"125","title":"caller"},"126":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { bool, Canister, ic, inspectMessage, update } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { console.log('inspectMessage called'); if (ic.methodName() === 'accessible') { ic.acceptMessage(); return; } if (ic.methodName() === 'inaccessible') { return; } throw `Method \"${ic.methodName()}\" not allowed`; }), accessible: update([], bool, () => { return true; }), inaccessible: update([], bool, () => { return false; }), alsoInaccessible: update([], bool, () => { return false; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » method name » method name","id":"126","title":"method name"},"127":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles: update([], nat64, () => { return ic.msgCyclesAccept(ic.msgCyclesAvailable() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles accept » msg cycles accept","id":"127","title":"msg cycles accept"},"128":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles128: update([], nat64, () => { return ic.msgCyclesAccept128(ic.msgCyclesAvailable128() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles accept 128 » msg cycles accept 128","id":"128","title":"msg cycles accept 128"},"129":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles: update([], nat64, () => { return ic.msgCyclesAccept(ic.msgCyclesAvailable() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles available » msg cycles available","id":"129","title":"msg cycles available"},"13":{"body":"Node.js http.server Express Server Limitations Azle supports building HTTP servers on ICP using the Node.js http.Server class as the foundation. These servers can serve static files or act as API backends, or both. Azle currently has good but not comprehensive support for Node.js http.Server and Express . Support for other libraries like Nest are works-in-progress. Once deployed you can access your server at a URL like this locally http://bkyz2-fmaaa-aaaaa-qaaaq-cai.localhost:8000 or like this on mainnet https://bkyz2-fmaaa-aaaaa-qaaaq-cai.raw.icp0.io. You can use any HTTP client to interact with your server, such as curl, fetch, or a web browser. See the Interacting with your canister section of the deployment chapter for help in constructing your canister URL.","breadcrumbs":"Servers » Servers","id":"13","title":"Servers"},"130":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles128: update([], nat64, () => { return ic.msgCyclesAccept128(ic.msgCyclesAvailable128() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles available 128 » msg cycles available 128","id":"130","title":"msg cycles available 128"},"131":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ // Reports the number of cycles returned from the Cycles canister sendCycles: update([], nat64, async () => { await ic.call(otherCanister.receiveCycles, { cycles: 1_000_000n }); return ic.msgCyclesRefunded(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles refunded » msg cycles refunded","id":"131","title":"msg cycles refunded"},"132":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ // Reports the number of cycles returned from the Cycles canister sendCycles128: update([], nat64, async () => { await ic.call128(otherCanister.receiveCycles128, { cycles: 1_000_000n }); return ic.msgCyclesRefunded128(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles refunded 128 » msg cycles refunded 128","id":"132","title":"msg cycles refunded 128"},"133":{"body":"This section is a work in progress. Examples: cross_canister_calls cycles import { Canister, ic, update, Void } from 'azle';\nimport { otherCanister } from './otherCanister'; export default Canister({ sendNotification: update([], Void, () => { return ic.notify(otherCanister.receiveNotification, { args: ['This is the notification'] }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify » notify","id":"133","title":"notify"},"134":{"body":"This section is a work in progress. Examples: notify_raw import { Canister, ic, Principal, update, Void } from 'azle'; export default Canister({ sendNotification: update([], Void, () => { return ic.notifyRaw( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai'), 'receiveNotification', Uint8Array.from(ic.candidEncode('()')), 0n ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify raw » notify raw","id":"134","title":"notify raw"},"135":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, update, Void } from 'azle';\nimport { otherCanister } from './otherCanister'; export default Canister({ sendCycles128Notify: update([], Void, () => { return ic.notify(otherCanister.receiveCycles128, { cycles: 1_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify with payment 128 » notify with payment 128","id":"135","title":"notify with payment 128"},"136":{"body":"This section is a work in progress. Examples: ic_api manual_reply rejections import { Canister, empty, ic, Manual, query, text } from 'azle'; export default Canister({ reject: query( [text], Manual(empty), (message) => { ic.reject(message); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject » reject","id":"136","title":"reject"},"137":{"body":"This section is a work in progress. Examples: rejections import { Canister, ic, RejectionCode, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ getRejectionCodeDestinationInvalid: update([], RejectionCode, async () => { await ic.call(otherCanister.method); return ic.rejectCode(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject code » reject code","id":"137","title":"reject code"},"138":{"body":"This section is a work in progress. Examples: rejections import { Canister, ic, text, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ getRejectionMessage: update([], text, async () => { await ic.call(otherCanister.method); return ic.rejectMessage(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject message » reject message","id":"138","title":"reject message"},"139":{"body":"This section is a work in progress. Examples: composite_queries manual_reply import { blob, Canister, ic, Manual, update } from 'azle'; export default Canister({ updateBlob: update( [], Manual(blob), () => { ic.reply( new Uint8Array([83, 117, 114, 112, 114, 105, 115, 101, 33]), blob ); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reply » reply","id":"139","title":"reply"},"14":{"body":"Azle supports instances of Node.js http.Server . listen() must be called on the server instance for Azle to use it to handle HTTP requests. Azle does not respect a port being passed into listen(). The port is set by the ICP replica (e.g. dfx start --host 127.0.0.1:8000), not by Azle. Here's an example of a very simple Node.js http.Server : import { createServer } from 'http'; const server = createServer((req, res) => { res.write('Hello World!'); res.end();\n}); server.listen();","breadcrumbs":"Servers » Node.js http.server","id":"14","title":"Node.js http.server"},"140":{"body":"This section is a work in progress. Examples: manual_reply outgoing_http_requests import { blob, bool, Canister, ic, int, Manual, Null, Record, text, update, Variant\n} from 'azle'; const Options = Variant({ High: Null, Medium: Null, Low: Null\n}); export default Canister({ replyRaw: update( [], Manual( Record({ int: int, text: text, bool: bool, blob: blob, variant: Options }) ), () => { ic.replyRaw( ic.candidEncode( '(record { \"int\" = 42; \"text\" = \"text\"; \"bool\" = true; \"blob\" = blob \"Surprise!\"; \"variant\" = variant { Medium } })' ) ); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reply raw » reply raw","id":"140","title":"reply raw"},"141":{"body":"blob bool empty float32 float64 func int int8 int16 int32 int64 nat nat8 nat16 nat32 nat64 null opt principal record reserved service text variant vec","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » Candid","id":"141","title":"Candid"},"142":{"body":"The CandidType object blob corresponds to the Candid type blob , is inferred to be a TypeScript Uint8Array and will be decoded into a JavaScript Uint8Array at runtime. TypeScript or JavaScript: import { blob, Canister, query } from 'azle'; export default Canister({ getBlob: query([], blob, () => { return Uint8Array.from([68, 73, 68, 76, 0, 0]); }), printBlob: query([blob], blob, (blob) => { console.log(typeof blob); return blob; })\n}); Candid: service : () -> { getBlob : () -> (vec nat8) query; printBlob : (vec nat8) -> (vec nat8) query;\n} dfx: dfx canister call candid_canister printBlob '(vec { 68; 73; 68; 76; 0; 0; })'\n(blob \"DIDL\\00\\00\") dfx canister call candid_canister printBlob '(blob \"DIDL\\00\\00\")'\n(blob \"DIDL\\00\\00\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » blob » blob","id":"142","title":"blob"},"143":{"body":"The CandidType object bool corresponds to the Candid type bool , is inferred to be a TypeScript boolean, and will be decoded into a JavaScript Boolean at runtime. TypeScript or JavaScript: import { bool, Canister, query } from 'azle'; export default Canister({ getBool: query([], bool, () => { return true; }), printBool: query([bool], bool, (bool) => { console.log(typeof bool); return bool; })\n}); Candid: service : () -> { getBool : () -> (bool) query; printBool : (bool) -> (bool) query;\n} dfx: dfx canister call candid_canister printBool '(true)'\n(true)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » bool » bool","id":"143","title":"bool"},"144":{"body":"The CandidType object empty corresponds to the Candid type empty , is inferred to be a TypeScript never, and has no JavaScript value at runtime. TypeScript or JavaScript: import { Canister, empty, query } from 'azle'; export default Canister({ getEmpty: query([], empty, () => { throw 'Anything you want'; }), // Note: It is impossible to call this function because it requires an argument // but there is no way to pass an \"empty\" value as an argument. printEmpty: query([empty], empty, (empty) => { console.log(typeof empty); throw 'Anything you want'; })\n}); Candid: service : () -> { getEmpty : () -> (empty) query; printEmpty : (empty) -> (empty) query;\n} dfx: dfx canister call candid_canister printEmpty '(\"You can put anything here\")'\nError: Failed to create argument blob.\nCaused by: Failed to create argument blob. Invalid data: Unable to serialize Candid values: type mismatch: \"You can put anything here\" cannot be of type empty","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » empty » empty","id":"144","title":"empty"},"145":{"body":"The CandidType object float32 corresponds to the Candid type float32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, float32, query } from 'azle'; export default Canister({ getFloat32: query([], float32, () => { return Math.PI; }), printFloat32: query([float32], float32, (float32) => { console.log(typeof float32); return float32; })\n}); Candid: service : () -> { getFloat32 : () -> (float32) query; printFloat32 : (float32) -> (float32) query;\n} dfx: dfx canister call candid_canister printFloat32 '(3.1415927 : float32)'\n(3.1415927 : float32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » float32 » float32","id":"145","title":"float32"},"146":{"body":"The CandidType object float64 corresponds to the Candid type float64 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, float64, query } from 'azle'; export default Canister({ getFloat64: query([], float64, () => { return Math.E; }), printFloat64: query([float64], float64, (float64) => { console.log(typeof float64); return float64; })\n}); Candid: service : () -> { getFloat64 : () -> (float64) query; printFloat64 : (float64) -> (float64) query;\n} dfx: dfx canister call candid_canister printFloat64 '(2.718281828459045 : float64)'\n(2.718281828459045 : float64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » float64 » float64","id":"146","title":"float64"},"147":{"body":"Values created by the CandidType function Func correspond to the Candid type func , are inferred to be TypeScript [Principal, string] tuples, and will be decoded into JavaScript array with two elements at runtime. The first element is an @dfinity/principal and the second is a JavaScript string . The @dfinity/principal represents the principal of the canister/service where the function exists, and the string represents the function's name. A func acts as a callback, allowing the func receiver to know which canister instance and method must be used to call back. TypeScript or JavaScript: import { Canister, Func, Principal, query, text } from 'azle'; const BasicFunc = Func([text], text, 'query'); export default Canister({ getBasicFunc: query([], BasicFunc, () => { return [ Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'), 'getBasicFunc' ]; }), printBasicFunc: query([BasicFunc], BasicFunc, (basicFunc) => { console.log(typeof basicFunc); return basicFunc; })\n}); Candid: service : () -> { getBasicFunc : () -> (func (text) -> (text) query) query; printBasicFunc : (func (text) -> (text) query) -> ( func (text) -> (text) query, ) query;\n} dfx: dfx canister call candid_canister printBasicFunc '(func \"r7inp-6aaaa-aaaaa-aaabq-cai\".getBasicFunc)'\n(func \"r7inp-6aaaa-aaaaa-aaabq-cai\".getBasicFunc)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » func » func","id":"147","title":"func"},"148":{"body":"The CandidType object int corresponds to the Candid type int , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, int, query } from 'azle'; export default Canister({ getInt: query([], int, () => { return 170_141_183_460_469_231_731_687_303_715_884_105_727n; }), printInt: query([int], int, (int) => { console.log(typeof int); return int; })\n}); Candid: service : () -> { getInt : () -> (int) query; printInt : (int) -> (int) query;\n} dfx: dfx canister call candid_canister printInt '(170_141_183_460_469_231_731_687_303_715_884_105_727 : int)'\n(170_141_183_460_469_231_731_687_303_715_884_105_727 : int)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int » int","id":"148","title":"int"},"149":{"body":"The CandidType object int8 corresponds to the Candid type int8 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int8, query } from 'azle'; export default Canister({ getInt8: query([], int8, () => { return 127; }), printInt8: query([int8], int8, (int8) => { console.log(typeof int8); return int8; })\n}); Candid: service : () -> { getInt8 : () -> (int8) query; printInt8 : (int8) -> (int8) query;\n} dfx: dfx canister call candid_canister printInt8 '(127 : int8)'\n(127 : int8)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int8 » int8","id":"149","title":"int8"},"15":{"body":"Express is one of the most popular backend JavaScript web frameworks, and it's the recommended way to get started building servers in Azle. Here's the main code from the hello_world example : import express, { Request } from 'express'; let db = { hello: ''\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.json(db);\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.json(db);\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » Express","id":"15","title":"Express"},"150":{"body":"The CandidType object int16 corresponds to the Candid type int16 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int16, query } from 'azle'; export default Canister({ getInt16: query([], int16, () => { return 32_767; }), printInt16: query([int16], int16, (int16) => { console.log(typeof int16); return int16; })\n}); Candid: service : () -> { getInt16 : () -> (int16) query; printInt16 : (int16) -> (int16) query;\n} dfx: dfx canister call candid_canister printInt16 '(32_767 : int16)'\n(32_767 : int16)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int16 » int16","id":"150","title":"int16"},"151":{"body":"The CandidType object int32 corresponds to the Candid type int32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int32, query } from 'azle'; export default Canister({ getInt32: query([], int32, () => { return 2_147_483_647; }), printInt32: query([int32], int32, (int32) => { console.log(typeof int32); return int32; })\n}); Candid: service : () -> { getInt32 : () -> (int32) query; printInt32 : (int32) -> (int32) query;\n} dfx: dfx canister call candid_canister printInt32 '(2_147_483_647 : int32)'\n(2_147_483_647 : int32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int32 » int32","id":"151","title":"int32"},"152":{"body":"The CandidType object int64 corresponds to the Candid type int64 , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, int64, query } from 'azle'; export default Canister({ getInt64: query([], int64, () => { return 9_223_372_036_854_775_807n; }), printInt64: query([int64], int64, (int64) => { console.log(typeof int64); return int64; })\n}); Candid: service : () -> { getInt64 : () -> (int64) query; printInt64 : (int64) -> (int64) query;\n} dfx: dfx canister call candid_canister printInt64 '(9_223_372_036_854_775_807 : int64)'\n(9_223_372_036_854_775_807 : int64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int64 » int64","id":"152","title":"int64"},"153":{"body":"The CandidType object nat corresponds to the Candid type nat , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, nat, query } from 'azle'; export default Canister({ getNat: query([], nat, () => { return 340_282_366_920_938_463_463_374_607_431_768_211_455n; }), printNat: query([nat], nat, (nat) => { console.log(typeof nat); return nat; })\n}); Candid: service : () -> { getNat : () -> (nat) query; printNat : (nat) -> (nat) query;\n} dfx: dfx canister call candid_canister printNat '(340_282_366_920_938_463_463_374_607_431_768_211_455 : nat)'\n(340_282_366_920_938_463_463_374_607_431_768_211_455 : nat)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat » nat","id":"153","title":"nat"},"154":{"body":"The CandidType object nat8 corresponds to the Candid type nat8 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat8, query } from 'azle'; export default Canister({ getNat8: query([], nat8, () => { return 255; }), printNat8: query([nat8], nat8, (nat8) => { console.log(typeof nat8); return nat8; })\n}); Candid: service : () -> { getNat8 : () -> (nat8) query; printNat8 : (nat8) -> (nat8) query;\n} dfx: dfx canister call candid_canister printNat8 '(255 : nat8)'\n(255 : nat8)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat8 » nat8","id":"154","title":"nat8"},"155":{"body":"The CandidType object nat16 corresponds to the Candid type nat16 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat16, query } from 'azle'; export default Canister({ getNat16: query([], nat16, () => { return 65_535; }), printNat16: query([nat16], nat16, (nat16) => { console.log(typeof nat16); return nat16; })\n}); Candid: service : () -> { getNat16 : () -> (nat16) query; printNat16 : (nat16) -> (nat16) query;\n} dfx: dfx canister call candid_canister printNat16 '(65_535 : nat16)'\n(65_535 : nat16)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat16 » nat16","id":"155","title":"nat16"},"156":{"body":"The CandidType object nat32 corresponds to the Candid type nat32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat32, query } from 'azle'; export default Canister({ getNat32: query([], nat32, () => { return 4_294_967_295; }), printNat32: query([nat32], nat32, (nat32) => { console.log(typeof nat32); return nat32; })\n}); Candid: service : () -> { getNat32 : () -> (nat32) query; printNat32 : (nat32) -> (nat32) query;\n} dfx: dfx canister call candid_canister printNat32 '(4_294_967_295 : nat32)'\n(4_294_967_295 : nat32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat32 » nat32","id":"156","title":"nat32"},"157":{"body":"The CandidType object nat64 corresponds to the Candid type nat64 , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, nat64, query } from 'azle'; export default Canister({ getNat64: query([], nat64, () => { return 18_446_744_073_709_551_615n; }), printNat64: query([nat64], nat64, (nat64) => { console.log(typeof nat64); return nat64; })\n}); Candid: service : () -> { getNat64 : () -> (nat64) query; printNat64 : (nat64) -> (nat64) query;\n} dfx: dfx canister call candid_canister printNat64 '(18_446_744_073_709_551_615 : nat64)'\n(18_446_744_073_709_551_615 : nat64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat64 » nat64","id":"157","title":"nat64"},"158":{"body":"The CandidType object null corresponds to the Candid type null , is inferred to be a TypeScript null, and will be decoded into a JavaScript null at runtime. TypeScript or JavaScript: import { Canister, Null, query } from 'azle'; export default Canister({ getNull: query([], Null, () => { return null; }), printNull: query([Null], Null, (null_) => { console.log(typeof null_); return null_; })\n}); Candid: service : () -> { getNull : () -> (null) query; printNull : (null) -> (null) query;\n} dfx: dfx canister call candid_canister printNull '(null)'\n(null : null)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » null » null","id":"158","title":"null"},"159":{"body":"The CandidType object Opt corresponds to the Candid type opt , is inferred to be a TypeScript Opt, and will be decoded into a JavaScript Object at runtime. It is a variant with Some and None cases. At runtime if the value of the variant is Some, the Some property of the variant object will have a value of the enclosed Opt type at runtime. TypeScript or JavaScript: import { bool, Canister, None, Opt, query, Some } from 'azle'; export default Canister({ getOptSome: query([], Opt(bool), () => { return Some(true); // equivalent to { Some: true } }), getOptNone: query([], Opt(bool), () => { return None; //equivalent to { None: null} })\n}); Candid: service : () -> { getOptNone : () -> (opt bool) query; getOptSome : () -> (opt bool) query;\n} dfx: dfx canister call candid_canister getOptSome\n(opt true) dfx canister call candid_canister getOptNone\n(null)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » opt » opt","id":"159","title":"opt"},"16":{"body":"When working with res.json you may run into errors because of attempting to send back JavaScript objects that are not strictly JSON. This can happen when trying to send back an object with a BigInt for example. Azle has created a special function called jsonStringify that will serialize many ICP-specific data structures to JSON for you: import { jsonStringify } from 'azle';\nimport express, { Request } from 'express'; let db = { bigInt: 0n\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.send(jsonStringify(db));\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.send(jsonStringify(db));\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » jsonStringify","id":"16","title":"jsonStringify"},"160":{"body":"The CandidType object Principal corresponds to the Candid type principal , is inferred to be a TypeScript @dfinity/principal Principal, and will be decoded into an @dfinity/principal Principal at runtime. TypeScript or JavaScript: import { Canister, Principal, query } from 'azle'; export default Canister({ getPrincipal: query([], Principal, () => { return Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'); }), printPrincipal: query([Principal], Principal, (principal) => { console.log(typeof principal); return principal; })\n}); Candid: service : () -> { getPrincipal : () -> (principal) query; printPrincipal : (principal) -> (principal) query;\n} dfx: dfx canister call candid_canister printPrincipal '(principal \"rrkah-fqaaa-aaaaa-aaaaq-cai\")'\n(principal \"rrkah-fqaaa-aaaaa-aaaaq-cai\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » principal » principal","id":"160","title":"principal"},"161":{"body":"Objects created by the CandidType function Record correspond to the Candid record type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The shape of the object will match the object literal passed to the Record function. TypeScript or JavaScript: import { Canister, Principal, query, Record, text } from 'azle'; const User = Record({ id: Principal, username: text\n}); export default Canister({ getUser: query([], User, () => { return { id: Principal.fromUint8Array(Uint8Array.from([0])), username: 'lastmjs' }; }), printUser: query([User], User, (user) => { console.log(typeof user); return user; })\n}); Candid: type User = record { id : principal; username : text };\nservice : () -> { getUser : () -> (User) query; printUser : (User) -> (User) query;\n} dfx: dfx canister call candid_canister printUser '(record { id = principal \"2ibo7-dia\"; username = \"lastmjs\" })'\n(record { id = principal \"2ibo7-dia\"; username = \"lastmjs\" })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » record » record","id":"161","title":"record"},"162":{"body":"The CandidType object reserved corresponds to the Candid type reserved , is inferred to be a TypeScript any, and will be decoded into a JavaScript null at runtime. TypeScript or JavaScript: import { Canister, query, reserved } from 'azle'; export default Canister({ getReserved: query([], reserved, () => { return 'anything'; }), printReserved: query([reserved], reserved, (reserved) => { console.log(typeof reserved); return reserved; })\n}); Candid: service : () -> { getReserved : () -> (reserved) query; printReserved : (reserved) -> (reserved) query;\n} dfx: dfx canister call candid_canister printReserved '(null)'\n(null : reserved)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » reserved » reserved","id":"162","title":"reserved"},"163":{"body":"Values created by the CandidType function Canister correspond to the Candid service type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The properties of this object that match the keys of the service's query and update methods can be passed into ic.call and ic.notify to perform cross-canister calls. TypeScript or JavaScript: import { bool, Canister, ic, Principal, query, text, update } from 'azle'; const SomeCanister = Canister({ query1: query([], bool), update1: update([], text)\n}); export default Canister({ getService: query([], SomeCanister, () => { return SomeCanister(Principal.fromText('aaaaa-aa')); }), callService: update([SomeCanister], text, (service) => { return ic.call(service.update1); })\n}); Candid: type ManualReply = variant { Ok : text; Err : text };\nservice : () -> { callService : ( service { query1 : () -> (bool) query; update1 : () -> (text) }, ) -> (ManualReply); getService : () -> ( service { query1 : () -> (bool) query; update1 : () -> (text) }, ) query;\n} dfx: dfx canister call candid_canister getService\n(service \"aaaaa-aa\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » service » service","id":"163","title":"service"},"164":{"body":"The CandidType object text corresponds to the Candid type text , is inferred to be a TypeScript string, and will be decoded into a JavaScript String at runtime. TypeScript or JavaScript: import { Canister, query, text } from 'azle'; export default Canister({ getString: query([], text, () => { return 'Hello world!'; }), printString: query([text], text, (string) => { console.log(typeof string); return string; })\n}); Candid: service : () -> { getString : () -> (text) query; printString : (text) -> (text) query;\n} dfx: dfx canister call candid_canister printString '(\"Hello world!\")'\n(\"Hello world!\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » text » text","id":"164","title":"text"},"165":{"body":"Objects created by the CandidType function Variant correspond to the Candid variant type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The shape of the object will match the object literal passed to the Variant function, however it will contain only one of the enumerated properties. TypeScript or JavaScript: import { Canister, Null, query, Variant } from 'azle'; const Emotion = Variant({ Happy: Null, Indifferent: Null, Sad: Null\n}); const Reaction = Variant({ Fire: Null, ThumbsUp: Null, Emotion: Emotion\n}); export default Canister({ getReaction: query([], Reaction, () => { return { Fire: null }; }), printReaction: query([Reaction], Reaction, (reaction) => { console.log(typeof reaction); return reaction; })\n}); Candid: type Emotion = variant { Sad; Indifferent; Happy };\ntype Reaction = variant { Emotion : Emotion; Fire; ThumbsUp };\nservice : () -> { getReaction : () -> (Reaction) query; printReaction : (Reaction) -> (Reaction) query;\n} dfx: dfx canister call candid_canister printReaction '(variant { Fire })'\n(variant { Fire })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » variant » variant","id":"165","title":"variant"},"166":{"body":"The CandidType object Vec corresponds to the Candid type vec , is inferred to be a TypeScript T[], and will be decoded into a JavaScript array of the specified type at runtime (except for Vec which will become a Uint8Array, thus it is recommended to use the blob type instead of Vec). TypeScript or JavaScript: import { Canister, int32, Vec, query } from 'azle'; export default Canister({ getNumbers: query([], Vec(int32), () => { return [0, 1, 2, 3]; }), printNumbers: query([Vec(int32)], Vec(int32), (numbers) => { console.log(typeof numbers); return numbers; })\n}); Candid: service : () -> { getNumbers : () -> (vec int32) query; printNumbers : (vec int32) -> (vec int32) query;\n} dfx: dfx canister call candid_canister printNumbers '(vec { 0 : int32; 1 : int32; 2 : int32; 3 : int32 })'\n(vec { 0 : int32; 1 : int32; 2 : int32; 3 : int32 })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » vec » vec","id":"166","title":"vec"},"167":{"body":"candid decode candid encode canister balance canister balance 128 canister version canister id data certificate instruction counter is controller performance counter print set certified data time trap","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » Canister APIs","id":"167","title":"Canister APIs"},"168":{"body":"This section is a work in progress. Examples: call_raw candid_encoding import { blob, Canister, ic, query, text } from 'azle'; export default Canister({ // decodes Candid bytes to a Candid string candidDecode: query([blob], text, (candidEncoded) => { return ic.candidDecode(candidEncoded); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » candid decode » candid decode","id":"168","title":"candid decode"},"169":{"body":"This section is a work in progress. Examples: call_raw candid_encoding manual_reply notify_raw outgoing_http_requests import { blob, Canister, ic, query, text } from 'azle'; export default Canister({ // encodes a Candid string to Candid bytes candidEncode: query([text], blob, (candidString) => { return ic.candidEncode(candidString); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » candid encode » candid encode","id":"169","title":"candid encode"},"17":{"body":"If you need to add canister methods to your HTTP server, the Server function imported from azle allows you to do so. Here's an example of a very simple HTTP server: import { Server } from 'azle';\nimport express from 'express'; export default Server(() => { const app = express(); app.get('/http-query', (_req, res) => { res.send('http-query-server'); }); app.post('/http-update', (_req, res) => { res.send('http-update-server'); }); return app.listen();\n}); You can add canister methods like this: import { query, Server, text, update } from 'azle';\nimport express from 'express'; export default Server( () => { const app = express(); app.get('/http-query', (_req, res) => { res.send('http-query-server'); }); app.post('/http-update', (_req, res) => { res.send('http-update-server'); }); return app.listen(); }, { candidQuery: query([], text, () => { return 'candidQueryServer'; }), candidUpdate: update([], text, () => { return 'candidUpdateServer'; }) }\n); The default export of your main module must be the result of calling Server, and the callback argument to Server must return a Node.js http.Server . The main module is specified by the main property of your project's dfx.json file . The dfx.json file must be at the root directory of your project. The callback argument to Server can be asynchronous: import { Server } from 'azle';\nimport { createServer } from 'http'; export default Server(async () => { const message = await asynchronousHelloWorld(); return createServer((req, res) => { res.write(message); res.end(); });\n}); async function asynchronousHelloWorld() { // do some asynchronous task return 'Hello World Asynchronous!';\n}","breadcrumbs":"Servers » Server","id":"17","title":"Server"},"170":{"body":"This section is a work in progress. Examples: cycles ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the amount of cycles available in the canister canisterBalance: query([], nat64, () => { return ic.canisterBalance(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister balance » canister balance","id":"170","title":"canister balance"},"171":{"body":"This section is a work in progress. Examples: cycles ic_api import { Canister, ic, nat, query } from 'azle'; export default Canister({ // returns the amount of cycles available in the canister canisterBalance128: query([], nat, () => { return ic.canisterBalance128(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister balance 128 » canister balance 128","id":"171","title":"canister balance 128"},"172":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the canister's version number canisterVersion: query([], nat64, () => { return ic.canisterVersion(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister version » canister version","id":"172","title":"canister version"},"173":{"body":"This section is a work in progress. Examples: ethereum_json_rpc ic_api http_counter outgoing_http_requests whoami import { Canister, ic, Principal, query } from 'azle'; export default Canister({ // returns this canister's id id: query([], Principal, () => { return ic.id(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister id » canister id","id":"173","title":"canister id"},"174":{"body":"This section is a work in progress. Examples: ic_api import { blob, Canister, ic, Opt, query } from 'azle'; export default Canister({ // When called from a query call, returns the data certificate // authenticating certified_data set by this canister. Returns None if not // called from a query call. dataCertificate: query([], Opt(blob), () => { return ic.dataCertificate(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » data certificate » data certificate","id":"174","title":"data certificate"},"175":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // Returns the number of instructions that the canister executed since the // last entry point. instructionCounter: query([], nat64, () => { return ic.instructionCounter(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » instruction counter » instruction counter","id":"175","title":"instruction counter"},"176":{"body":"This section is a work in progress. Examples: ic_api import { bool, Canister, ic, Principal, query } from 'azle'; export default Canister({ // determines whether the given principal is a controller of the canister isController: query([Principal], bool, (principal) => { return ic.isController(principal); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » is controller » is controller","id":"176","title":"is controller"},"177":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ performanceCounter: query([], nat64, () => { return ic.performanceCounter(0); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » performance counter » performance counter","id":"177","title":"performance counter"},"178":{"body":"This section is a work in progress. Examples: ic_api null_example import { bool, Canister, ic, query, text } from 'azle'; export default Canister({ // prints a message through the local replica's output print: query([text], bool, (message) => { ic.print(message); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » print » print","id":"178","title":"print"},"179":{"body":"This section is a work in progress. Examples: ic_api import { blob, Canister, ic, update, Void } from 'azle'; export default Canister({ // sets up to 32 bytes of certified data setCertifiedData: update([blob], Void, (data) => { ic.setCertifiedData(data); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » set certified data » set certified data","id":"179","title":"set certified data"},"18":{"body":"For a deeper understanding of possible limitations you may want to refer to The HTTP Gateway Protocol Specification . The top-level route /api is currently reserved by the replica locally The Transfer-Encoding header is not supported gzip responses most likely do not work HTTP requests are generally limited to ~2 MiB HTTP responses are generally limited to ~3 MiB You cannot set HTTP status codes in the 1xx range","breadcrumbs":"Servers » Limitations","id":"18","title":"Limitations"},"180":{"body":"This section is a work in progress. Examples: audio_recorder ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the current timestamp time: query([], nat64, () => { return ic.time(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » time » time","id":"180","title":"time"},"181":{"body":"This section is a work in progress. Examples: cross_canister_calls ethereum_json_rpc http_counter ic_api outgoing_http_requests threshold_ecdsa import { bool, Canister, ic, query, text } from 'azle'; export default Canister({ // traps with a message, stopping execution and discarding all state within the call trap: query([text], bool, (message) => { ic.trap(message); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » trap » trap","id":"181","title":"trap"},"182":{"body":"heartbeat http_request http_request_update init inspect message post upgrade pre upgrade query update","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » Canister Methods","id":"182","title":"Canister Methods"},"183":{"body":"This section is a work in progress. Examples: heartbeat run_time_errors import { Canister, heartbeat } from 'azle'; export default Canister({ heartbeat: heartbeat(() => { console.log('this runs ~1 time per second'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » heartbeat » heartbeat","id":"183","title":"heartbeat"},"184":{"body":"This section is a work in progress. Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, query, Record, text, Tuple, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request: query([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » http_request » http_request","id":"184","title":"http_request"},"185":{"body":"This section is a work in progress. Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, Record, text, Tuple, update, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request_update: update([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » http_request_update » http_request","id":"185","title":"http_request"},"186":{"body":"This section is a work in progress. Examples: ethereum_json_rpc func_types init persistent-storage pre_and_post_upgrade whoami import { Canister, init } from 'azle'; export default Canister({ init: init([], () => { console.log('This runs once when the canister is first initialized'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » init » init","id":"186","title":"init"},"187":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { bool, Canister, ic, inspectMessage, update } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { console.log('inspectMessage called'); if (ic.methodName() === 'accessible') { ic.acceptMessage(); return; } if (ic.methodName() === 'inaccessible') { return; } throw `Method \"${ic.methodName()}\" not allowed`; }), accessible: update([], bool, () => { return true; }), inaccessible: update([], bool, () => { return false; }), alsoInaccessible: update([], bool, () => { return false; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » inspect message » inspect message","id":"187","title":"inspect message"},"188":{"body":"This section is a work in progress. Examples: pre_and_post_upgrade whoami import { Canister, postUpgrade } from 'azle'; export default Canister({ postUpgrade: postUpgrade([], () => { console.log('This runs after every canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » post upgrade » post upgrade","id":"188","title":"post upgrade"},"189":{"body":"This section is a work in progress. Examples: pre_and_post_upgrade import { Canister, preUpgrade } from 'azle'; export default Canister({ preUpgrade: preUpgrade(() => { console.log('This runs before every canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » pre upgrade » pre upgrade","id":"189","title":"pre upgrade"},"19":{"body":"You can automatically copy static assets (essentially files and folders) into your canister's filesystem during deploy by using the assets, assets_large and build_assets properties of the canister object in your project's dfx.json file. Here's an example that copies the src/frontend/dist directory on the deploying machine into the dist directory of the canister, using the assets and build_assets properties: { \"canisters\": { \"backend\": { \"type\": \"custom\", \"main\": \"src/backend/index.ts\", \"candid\": \"src/backend/index.did\", \"candid_gen\": \"http\", \"build\": \"npx azle backend\", \"wasm\": \".azle/backend/backend.wasm\", \"gzip\": true, \"assets\": [[\"src/frontend/dist\", \"dist\"]], \"build_assets\": \"npm run build\", \"metadata\": [ { \"name\": \"candid:service\", \"path\": \"src/backend/index.did\" }, { \"name\": \"cdk:name\", \"content\": \"azle\" } ] } }\n} The assets property is an array of tuples, where the first element of the tuple is the source directory on the deploying machine, and the second element of the tuple is the destination directory in the canister. Use assets for total assets under ~90 MiB in size. The build_assets property allows you to specify custom terminal commands that will run before Azle copies the assets into the canister. You can use build_assets to build your frontend code for example. In this case we are running npm run build, which refers to an npm script that we have specified in our package.json file. There is also an assets_large property that works similarly to the assets property, but allows for total assets up to ~2 GiB in size. We are working on increasing this limit further. Once you have loaded assets into your canister, they are accessible from that canister's filesystem. Here's an example of using the Express static middleware to serve a frontend from the canister's filesystem: import express from 'express'; const app = express(); app.use(express.static('/dist')); app.listen(); Assuming the /dist directory in the canister has an appropriate index.html file, this canister would serve a frontend at its URL when loaded in a web browser.","breadcrumbs":"Assets » Assets TL;DR","id":"19","title":"Assets TL;DR"},"190":{"body":"This section is a work in progress. import { Canister, query, text } from 'azle'; export default Canister({ simpleQuery: query([], text, () => { return 'This is a query method'; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » query » query","id":"190","title":"query"},"191":{"body":"This section is a work in progress. import { Canister, query, text, update, Void } from 'azle'; let message = ''; export default Canister({ getMessage: query([], text, () => { return message; }), setMessage: update([text], Void, (newMessage) => { message = newMessage; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » update » update","id":"191","title":"update"},"192":{"body":"You can provide environment variables to Azle canisters by specifying their names in your dfx.json file and then using the process.env object in Azle. Be aware that the environment variables that you specify in your dfx.json file will be included in plain text in your canister's Wasm binary.","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » Environment Variables","id":"192","title":"Environment Variables"},"193":{"body":"Modify your dfx.json file with the env property to specify which environment variables you would like included in your Azle canister's binary. In this case, CANISTER1_PRINCIPAL and CANISTER2_PRINCIPAL will be included: { \"canisters\": { \"canister1\": { \"type\": \"custom\", \"main\": \"src/canister1/index.ts\", \"build\": \"npx azle canister1\", \"candid\": \"src/canister1/index.did\", \"wasm\": \".azle/canister1/canister1.wasm\", \"gzip\": true, \"declarations\": { \"output\": \"test/dfx_generated/canister1\", \"node_compatibility\": true }, \"env\": [\"CANISTER1_PRINCIPAL\", \"CANISTER2_PRINCIPAL\"] } }\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » dfx.json","id":"193","title":"dfx.json"},"194":{"body":"You can access the specified environment variables in Azle like so: import { Canister, query, text } from 'azle'; export default Canister({ canister1PrincipalEnvVar: query([], text, () => { return ( process.env.CANISTER1_PRINCIPAL ?? 'process.env.CANISTER1_PRINCIPAL is undefined' ); }), canister2PrincipalEnvVar: query([], text, () => { return ( process.env.CANISTER2_PRINCIPAL ?? 'process.env.CANISTER2_PRINCIPAL is undefined' ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » process.env","id":"194","title":"process.env"},"195":{"body":"bitcoin_get_balance bitcoin_get_current_fee_percentiles bitcoin_get_utxos bitcoin_send_transaction canister_info canister_status create_canister delete_canister deposit_cycles ecdsa_public_key http_request install_code provisional_create_canister_with_cycles provisional_top_up_canister raw_rand sign_with_ecdsa start_canister stop_canister uninstall_code update_settings","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » Management Canister","id":"195","title":"Management Canister"},"196":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, None, text, update } from 'azle';\nimport { managementCanister, Satoshi } from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getBalance: update([text], Satoshi, async (address) => { return await ic.call(managementCanister.bitcoin_get_balance, { args: [ { address, min_confirmations: None, network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_balance » bitcoin_get_balance","id":"196","title":"bitcoin_get_balance"},"197":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, update, Vec } from 'azle';\nimport { managementCanister, MillisatoshiPerByte\n} from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getCurrentFeePercentiles: update([], Vec(MillisatoshiPerByte), async () => { return await ic.call( managementCanister.bitcoin_get_current_fee_percentiles, { args: [ { network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST } ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_current_fee_percentiles » bitcoin_get_current_fee_percentiles","id":"197","title":"bitcoin_get_current_fee_percentiles"},"198":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, None, text, update } from 'azle';\nimport { GetUtxosResult, managementCanister } from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getUtxos: update([text], GetUtxosResult, async (address) => { return await ic.call(managementCanister.bitcoin_get_utxos, { args: [ { address, filter: None, network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_utxos » bitcoin_get_utxos","id":"198","title":"bitcoin_get_utxos"},"199":{"body":"This section is a work in progress. Examples: import { blob, bool, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const BITCOIN_BASE_TRANSACTION_COST = 5_000_000_000n;\nconst BITCOIN_CYCLE_COST_PER_TRANSACTION_BYTE = 20_000_000n; export default Canister({ sendTransaction: update([blob], bool, async (transaction) => { const transactionFee = BITCOIN_BASE_TRANSACTION_COST + BigInt(transaction.length) * BITCOIN_CYCLE_COST_PER_TRANSACTION_BYTE; await ic.call(managementCanister.bitcoin_send_transaction, { args: [ { transaction, network: { Regtest: null } } ], cycles: transactionFee }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_send_transaction » bitcoin_send_transaction","id":"199","title":"bitcoin_send_transaction"},"2":{"body":"Windows is only supported through a Linux virtual environment of some kind, such as WSL On Ubuntu/WSL: sudo apt-get install podman On Mac: brew install podman It's recommended to use nvm and Node.js 20: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash Restart your terminal and then run: nvm install 20 Check that the installation went smoothly by looking for clean output from the following command: node --version Install the dfx command line tools for managing ICP applications: DFX_VERSION=0.19.0 sh -ci \"$(curl -fsSL https://sdk.dfinity.org/install.sh)\" Check that the installation went smoothly by looking for clean output from the following command: dfx --version If after trying to run dfx --version you encounter an error such as dfx: command not found, you might need to add $HOME/bin to your path. Here's an example of doing this in your .bashrc: echo 'export PATH=\"$PATH:$HOME/bin\"' >> \"$HOME/.bashrc\"","breadcrumbs":"Get Started » Installation","id":"2","title":"Installation"},"20":{"body":"Azle canisters can import ic from azle and use ic.caller() to get the principal (public-key linked identifier) of the initiator of an HTTP request. HTTP requests are anonymous (principal 2vxsx-fae) by default, but authentication with web browsers (and maybe Node.js) can be done using a JWT-like API from azle/http_client. First you import toJwt from azle/http_client: import { toJwt } from 'azle/http_client'; Then you use fetch and construct an Authorization header using an @dfinity/agent Identity: const response = await fetch( `http://bkyz2-fmaaa-aaaaa-qaaaq-cai.localhost:8000/whoami`, { method: 'GET', headers: [['Authorization', toJwt(this.identity)]] }\n); Here's an example of the frontend of a simple web application using azle/http_client and Internet Identity : import { Identity } from '@dfinity/agent';\nimport { AuthClient } from '@dfinity/auth-client';\nimport { toJwt } from 'azle/http_client';\nimport { html, LitElement } from 'lit';\nimport { customElement, property } from 'lit/decorators.js'; @customElement('azle-app')\nexport class AzleApp extends LitElement { @property() identity: Identity | null = null; @property() whoami: string = ''; connectedCallback() { super.connectedCallback(); this.authenticate(); } async authenticate() { const authClient = await AuthClient.create(); const isAuthenticated = await authClient.isAuthenticated(); if (isAuthenticated === true) { this.handleIsAuthenticated(authClient); } else { await this.handleIsNotAuthenticated(authClient); } } handleIsAuthenticated(authClient: AuthClient) { this.identity = authClient.getIdentity(); } async handleIsNotAuthenticated(authClient: AuthClient) { await new Promise((resolve, reject) => { authClient.login({ identityProvider: import.meta.env.VITE_IDENTITY_PROVIDER, onSuccess: resolve as () => void, onError: reject, windowOpenerFeatures: `width=500,height=500` }); }); this.identity = authClient.getIdentity(); } async whoamiUnauthenticated() { const response = await fetch( `${import.meta.env.VITE_CANISTER_ORIGIN}/whoami` ); const responseText = await response.text(); this.whoami = responseText; } async whoamiAuthenticated() { const response = await fetch( `${import.meta.env.VITE_CANISTER_ORIGIN}/whoami`, { method: 'GET', headers: [['Authorization', toJwt(this.identity)]] } ); const responseText = await response.text(); this.whoami = responseText; } render() { return html`

Internet Identity

Whoami principal: ${this.whoami}

`; }\n} Here's an example of the backend of that same simple web application: import { ic } from 'azle';\nimport express from 'express'; const app = express(); app.get('/whoami', (req, res) => { res.send(ic.caller().toString());\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Authentication » Authentication TL;DR","id":"20","title":"Authentication TL;DR"},"200":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, update } from 'azle';\nimport { CanisterStatusArgs, CanisterStatusResult, managementCanister\n} from 'azle/canisters/management'; export default Canister({ getCanisterStatus: update( [CanisterStatusArgs], CanisterStatusResult, async (args) => { return await ic.call(managementCanister.canister_status, { args: [args] }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » canister_status » canister_status","id":"200","title":"canister_status"},"201":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, None, update } from 'azle';\nimport { CreateCanisterResult, managementCanister\n} from 'azle/canisters/management'; export default Canister({ executeCreateCanister: update([], CreateCanisterResult, async () => { return await ic.call(managementCanister.create_canister, { args: [{ settings: None }], cycles: 50_000_000_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » create_canister » create_canister","id":"201","title":"create_canister"},"202":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeDeleteCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.delete_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » delete_canister » delete_canister","id":"202","title":"delete_canister"},"203":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeDepositCycles: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.deposit_cycles, { args: [ { canister_id: canisterId } ], cycles: 10_000_000n }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » deposit_cycles » deposit_cycles","id":"203","title":"deposit_cycles"},"204":{"body":"This section is a work in progress. Examples: threshold_ecdsa import { blob, Canister, ic, None, Record, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const PublicKey = Record({ publicKey: blob\n}); export default Canister({ publicKey: update([], PublicKey, async () => { const caller = ic.caller().toUint8Array(); const publicKeyResult = await ic.call( managementCanister.ecdsa_public_key, { args: [ { canister_id: None, derivation_path: [caller], key_id: { curve: { secp256k1: null }, name: 'dfx_test_key' } } ] } ); return { publicKey: publicKeyResult.public_key }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » ecdsa_public_key » ecdsa_public_key","id":"204","title":"ecdsa_public_key"},"205":{"body":"This section is a work in progress. Examples: ethereum_json_rpc outgoing_http_requests import { Canister, ic, None, Principal, query, Some, update } from 'azle';\nimport { HttpResponse, HttpTransformArgs, managementCanister\n} from 'azle/canisters/management'; export default Canister({ xkcd: update([], HttpResponse, async () => { return await ic.call(managementCanister.http_request, { args: [ { url: `https://xkcd.com/642/info.0.json`, max_response_bytes: Some(2_000n), method: { get: null }, headers: [], body: None, transform: Some({ function: [ic.id(), 'xkcdTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); }), xkcdTransform: query([HttpTransformArgs], HttpResponse, (args) => { return { ...args.response, headers: [] }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » http_request » http_request","id":"205","title":"http_request"},"206":{"body":"This section is a work in progress. Examples: management_canister import { blob, bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], bool, async (canisterId, wasmModule) => { await ic.call(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); return true; } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » install_code » install_code","id":"206","title":"install_code"},"207":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, None, update } from 'azle';\nimport { managementCanister, ProvisionalCreateCanisterWithCyclesResult\n} from 'azle/canisters/management'; export default Canister({ provisionalCreateCanisterWithCycles: update( [], ProvisionalCreateCanisterWithCyclesResult, async () => { return await ic.call( managementCanister.provisional_create_canister_with_cycles, { args: [ { amount: None, settings: None } ] } ); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » provisional_create_canister_with_cycles » provisional_create_canister_with_cycles","id":"207","title":"provisional_create_canister_with_cycles"},"208":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, nat, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ provisionalTopUpCanister: update( [Principal, nat], bool, async (canisterId, amount) => { await ic.call(managementCanister.provisional_top_up_canister, { args: [ { canister_id: canisterId, amount } ] }); return true; } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » provisional_top_up_canister » provisional_top_up_canister","id":"208","title":"provisional_top_up_canister"},"209":{"body":"This section is a work in progress. Examples: async/await heartbeat management_canister timers import { blob, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ getRawRand: update([], blob, async () => { return await ic.call(managementCanister.raw_rand); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » raw_rand » raw_rand","id":"209","title":"raw_rand"},"21":{"body":"Examples: ckbtc fetch_ic internet_identity","breadcrumbs":"Authentication » Authentication","id":"21","title":"Authentication"},"210":{"body":"This section is a work in progress. Examples: threshold_ecdsa import { blob, Canister, ic, Record, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const Signature = Record({ signature: blob\n}); export default Canister({ sign: update([blob], Signature, async (messageHash) => { if (messageHash.length !== 32) { ic.trap('messageHash must be 32 bytes'); } const caller = ic.caller().toUint8Array(); const signatureResult = await ic.call( managementCanister.sign_with_ecdsa, { args: [ { message_hash: messageHash, derivation_path: [caller], key_id: { curve: { secp256k1: null }, name: 'dfx_test_key' } } ], cycles: 10_000_000_000n } ); return { signature: signatureResult.signature }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » sign_with_ecdsa » sign_with_ecdsa","id":"210","title":"sign_with_ecdsa"},"211":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeStartCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.start_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » start_canister » start_canister","id":"211","title":"start_canister"},"212":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeStopCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.stop_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » stop_canister » stop_canister","id":"212","title":"stop_canister"},"213":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeUninstallCode: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.uninstall_code, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » uninstall_code » uninstall_code","id":"213","title":"uninstall_code"},"214":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, None, Principal, Some, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeUpdateSettings: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.update_settings, { args: [ { canister_id: canisterId, settings: { controllers: None, compute_allocation: Some(1n), memory_allocation: Some(3_000_000n), freezing_threshold: Some(2_000_000n) } } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » update_settings » update_settings","id":"214","title":"update_settings"},"215":{"body":"Azle plugins allow developers to wrap Rust code in TypeScript/JavaScript APIs that can then be exposed to Azle canisters, providing a clean and simple developer experience with the underlying Rust code. Plugins are in a very early alpha state. You can create and use them now, but be aware that the API will be changing significantly in the near future. You can use the following example plugins as you create your own plugins:","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » Plugins","id":"215","title":"Plugins"},"216":{"body":"If you just want to create a plugin in the same repo as your project, see the plugins example .","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » Local plugin","id":"216","title":"Local plugin"},"217":{"body":"If you want to create a plugin that can be published and/or used with npm, see the ic-sqlite-plugin example .","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » npm plugin","id":"217","title":"npm plugin"},"218":{"body":"stable structures stable bytes stable grow stable read stable size stable write stable64 grow stable64 read stable64 size stable64 write","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » Stable Memory","id":"218","title":"Stable Memory"},"219":{"body":"This section is a work in progress. Examples: audio_recorder ethereum_json_rpc func_types http_counter inline_types persistent-storage pre_and_post_upgrade stable_structures import { bool, Canister, nat64, nat8, Opt, query, StableBTreeMap, text, Tuple, update, Vec\n} from 'azle'; const Key = nat8;\ntype Key = typeof Key.tsType; const Value = text;\ntype Value = typeof Value.tsType; let map = StableBTreeMap(0); export default Canister({ containsKey: query([Key], bool, (key) => { return map.containsKey(key); }), get: query([Key], Opt(Value), (key) => { return map.get(key); }), insert: update([Key, Value], Opt(Value), (key, value) => { return map.insert(key, value); }), isEmpty: query([], bool, () => { return map.isEmpty(); }), items: query([], Vec(Tuple(Key, Value)), () => { return map.items(); }), keys: query([], Vec(Key), () => { return Uint8Array.from(map.keys()); }), len: query([], nat64, () => { return map.len(); }), remove: update([Key], Opt(Value), (key) => { return map.remove(key); }), values: query([], Vec(Value), () => { return map.values(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable structures » stable structures","id":"219","title":"stable structures"},"22":{"body":"Authentication of ICP calls is done through signatures on messages. @dfinity/agent provides very nice abstractions for creating all of the required signatures in the correct formats when calling into canisters on ICP. Unfortunately this requires you to abandon traditional HTTP requests, as you must use the agent's APIs. Azle attempts to enable you to perform traditional HTTP requests with traditional libraries. Currently Azle focuses on fetch. When importing toJwt, azle/http_client will overwrite the global fetch function and will intercept fetch requests that have Authorization headers with an Identity as a value. Once intercepted, these requests are turned into @dfinity/agent requests that call the http_request and http_request_update canister methods directly, thus performing all of the required client-side authentication work. We are working to push for ICP to more natively understand JWTs for authentication, without the need to intercept fetch requests and convert them into agent requests.","breadcrumbs":"Authentication » Under-the-hood","id":"22","title":"Under-the-hood"},"220":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, query } from 'azle'; export default Canister({ stableBytes: query([], blob, () => { return ic.stableBytes(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable bytes » stable bytes","id":"220","title":"stable bytes"},"221":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat32, update } from 'azle'; export default Canister({ stableGrow: update([nat32], nat32, (newPages) => { return ic.stableGrow(newPages); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable grow » stable grow","id":"221","title":"stable grow"},"222":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat32, query } from 'azle'; export default Canister({ stableRead: query([nat32, nat32], blob, (offset, length) => { return ic.stableRead(offset, length); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable read » stable read","id":"222","title":"stable read"},"223":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat32, query } from 'azle'; export default Canister({ stableSize: query([], nat32, () => { return ic.stableSize(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable size » stable size","id":"223","title":"stable size"},"224":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat32, update, Void } from 'azle'; export default Canister({ stableWrite: update([nat32, blob], Void, (offset, buf) => { ic.stableWrite(offset, buf); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable write » stable write","id":"224","title":"stable write"},"225":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat64, update } from 'azle'; export default Canister({ stable64Grow: update([nat64], nat64, (newPages) => { return ic.stable64Grow(newPages); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 grow » stable64 grow","id":"225","title":"stable64 grow"},"226":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat64, query } from 'azle'; export default Canister({ stable64Read: query([nat64, nat64], blob, (offset, length) => { return ic.stable64Read(offset, length); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 read » stable64 read","id":"226","title":"stable64 read"},"227":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat64, query } from 'azle'; export default Canister({ stable64Size: query([], nat64, () => { return ic.stable64Size(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 size » stable64 size","id":"227","title":"stable64 size"},"228":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat64, update, Void } from 'azle'; export default Canister({ stable64Write: update([nat64, blob], Void, (offset, buf) => { ic.stable64Write(offset, buf); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 write » stable64 write","id":"228","title":"stable64 write"},"229":{"body":"clear timer set timer set timer interval","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » Timers","id":"229","title":"Timers"},"23":{"body":"Azle canisters use a custom fetch implementation to perform cross-canister calls and to perform HTTPS outcalls. Here's an example of performing a cross-canister call: import { serialize } from 'azle';\nimport express from 'express'; const app = express(); app.use(express.json()); app.post('/cross-canister-call', async (req, res) => { const to: string = req.body.to; const amount: number = req.body.amount; const response = await fetch(`icp://dfdal-2uaaa-aaaaa-qaama-cai/transfer`, { body: serialize({ candidPath: '/token.did', args: [to, amount] }) }); const responseJson = await response.json(); res.json(responseJson);\n}); app.listen(); Keep these important points in mind when performing a cross-canister call: Use the icp:// protocol in the URL The canister id of the canister that you are calling immediately follows icp:// in the URL The canister method that you are calling immediately follows the canister id in the URL The candidPath property of the body is the path to the Candid file defining the method signatures of the canister that you are calling. You must obtain this file and copy it into your canister. See the Assets chapter for info on copying files into your canister The args property of the body is an array of the arguments that will be passed to the canister method that you are calling Here's an example of performing an HTTPS outcall: import express from 'express'; const app = express(); app.use(express.json()); app.post('/https-outcall', async (_req, res) => { const response = await fetch(`https://httpbin.org/headers`, { headers: { 'X-Azle-Request-Key-0': 'X-Azle-Request-Value-0', 'X-Azle-Request-Key-1': 'X-Azle-Request-Value-1', 'X-Azle-Request-Key-2': 'X-Azle-Request-Value-2' } }); const responseJson = await response.json(); res.json(responseJson);\n}); app.listen();","breadcrumbs":"fetch » fetch TL;DR","id":"23","title":"fetch TL;DR"},"230":{"body":"This section is a work in progress. Examples: timers import { Canister, ic, TimerId, update, Void } from 'azle'; export default Canister({ clearTimer: update([TimerId], Void, (timerId) => { ic.clearTimer(timerId); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » clear timer » clear timer","id":"230","title":"clear timer"},"231":{"body":"This section is a work in progress. Examples: timers import { Canister, Duration, ic, TimerId, Tuple, update } from 'azle'; export default Canister({ setTimers: update([Duration], Tuple(TimerId, TimerId), (delay) => { const functionTimerId = ic.setTimer(delay, callback); const capturedValue = '🚩'; const closureTimerId = ic.setTimer(delay, () => { console.log(`closure called and captured value ${capturedValue}`); }); return [functionTimerId, closureTimerId]; })\n}); function callback() { console.log('callback called');\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » set timer » set timer","id":"231","title":"set timer"},"232":{"body":"This section is a work in progress. Examples: timers import { Canister, Duration, ic, TimerId, Tuple, update } from 'azle'; export default Canister({ setTimerIntervals: update( [Duration], Tuple(TimerId, TimerId), (interval) => { const functionTimerId = ic.setTimerInterval(interval, callback); const capturedValue = '🚩'; const closureTimerId = ic.setTimerInterval(interval, () => { console.log( `closure called and captured value ${capturedValue}` ); }); return [functionTimerId, closureTimerId]; } )\n}); function callback() { console.log('callback called');\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » set timer interval » set timer interval","id":"232","title":"set timer interval"},"233":{"body":"The IC currently limits Wasm binaries to a relatively small size of ~2MiB (with some caveats). You are likely to hit this limit as your Azle canisters grow in size. Azle provides some automatic optimizations to help you deal with this limit. It is hoped that the IC-imposed limit will be greatly increased sometime in 2023. To optimize the Wasm binary of an Azle canister, you can add the opt_level property to your dfx.json with the following options: \"0\", \"1\", \"2\", \"3\", or \"4\". \"0\" is the default option if opt_level is not specified. Each option is intended to reduce the size of your Wasm binary as the value increases. Each option is likely to take longer to compile than the previous option. It is recommended to start at \"1\" and increase only as necessary. Here's an example using opt_level \"1\": { \"canisters\": { \"hello_world\": { \"type\": \"custom\", \"main\": \"src/index.ts\", \"build\": \"npx azle hello_world\", \"candid\": \"src/index.did\", \"wasm\": \".azle/hello_world/hello_world.wasm.gz\", \"opt_level\": \"1\" } }\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Wasm Binary Optimization » Wasm Binary Optimization","id":"233","title":"Wasm Binary Optimization"},"24":{"body":"Azle has custom fetch implementations for clients and canisters. The client fetch is used for authentication, and you can learn more about it in the Authentication chapter . Canister fetch is used to perform cross-canister calls and HTTPS outcalls . There are three main types of calls made with canister fetch: Cross-canister calls to a candid canister Cross-canister calls to an HTTP canister HTTPS outcalls","breadcrumbs":"fetch » fetch","id":"24","title":"fetch"},"25":{"body":"Examples: async_await bitcoin canister ckbtc composite_queries cross_canister_calls cycles func_types heartbeat ic_evm_rpc icrc ledger_canister management_canister threshold_ecdsa whoami recursion rejections timers","breadcrumbs":"fetch » Cross-canister calls to a candid canister","id":"25","title":"Cross-canister calls to a candid canister"},"26":{"body":"We are working on better abstractions for these types of calls. For now you would just make a cross-canister call using icp:// to the http_request and http_request_update methods of the canister that you are calling.","breadcrumbs":"fetch » Cross-canister calls to an HTTP canister","id":"26","title":"Cross-canister calls to an HTTP canister"},"27":{"body":"Examples: ethereum_json_rpc http_outcall_fetch outgoing_http_requests","breadcrumbs":"fetch » HTTPS outcalls","id":"27","title":"HTTPS outcalls"},"28":{"body":"If your terminal logs ever say did not produce a response or response failed classification=Status code: 502 Bad Gateway, it most likely means that your canister has thrown an error and halted execution for that call. Use console.log and try/catch liberally to track down problems and reveal error information. If your error logs do not have useful messages, use try/catch with a console.log of the catch error argument to reveal the underlying error message.","breadcrumbs":"Debugging » Debugging TL;DR","id":"28","title":"Debugging TL;DR"},"29":{"body":"console.log and try/catch Canister did not produce a response No error message Final Compiled and Bundled JavaScript Azle currently has less-than-elegant error reporting. We hope to improve this significantly in the future. In the meantime, consider the following tips when trying to debug your application.","breadcrumbs":"Debugging » Debugging","id":"29","title":"Debugging"},"3":{"body":"npx azle new hello_world\ncd hello_world npm install dfx start --clean --host 127.0.0.1:8000 In a separate terminal in the hello_world directory: dfx deploy If you are building an HTTP-based canister and would like your canister to autoreload on file changes (DO NOT deploy to mainnet with autoreload enabled): AZLE_AUTORELOAD=true dfx deploy If you have problems deploying see Common deployment issues . View your frontend in a web browser at http://[canisterId].localhost:8000. To obtain your application's [canisterId]: dfx canister id backend Communicate with your canister using any HTTP client library, for example using curl: curl http://[canisterId].localhost:8000/db\ncurl -X POST -H \"Content-Type: application/json\" -d \"{ \\\"hello\\\": \\\"world\\\" }\" http://[canisterId].localhost:8000/db/update","breadcrumbs":"Get Started » Deployment","id":"3","title":"Deployment"},"30":{"body":"At the highest level, the most important tip is this: use console.log and try/catch liberally to track down problems and reveal error information.","breadcrumbs":"Debugging » console.log and try/catch","id":"30","title":"console.log and try/catch"},"31":{"body":"If you ever see an error that looks like this: Replica Error: reject code CanisterError, reject message IC0506: Canister bkyz2-fmaaa-aaaaa-qaaaq-cai did not produce a response, error code Some(\"IC0506\") or this: 2024-04-17T15:01:39.194377Z WARN icx_proxy_dev::proxy::agent: Replica Error\n2024-04-17T15:01:39.194565Z ERROR tower_http::trace::on_failure: response failed classification=Status code: 502 Bad Gateway latency=61 ms it most likely means that your canister has thrown an error and halted execution for that call. First check the replica's logs for any errors messages. If there are no useful error messages, use console.log and try/catch liberally to track down the source of the error and to reveal more information about the error. Don't be surprised if you need to console.log after each of your program's statements (including dependencies found in node_modules) to find out where the error is coming from. And don't be surprised if you need to use try/catch with a console.log of the catch error argument to reveal useful error messaging.","breadcrumbs":"Debugging » Canister did not produce a response","id":"31","title":"Canister did not produce a response"},"32":{"body":"You might find yourself in a situation where an error is reported without a useful message like this: \n\n\n\nError\n\n\n
    at <anonymous> (azle_main:110643)
   at handle (azle_main:73283)
   at next (azle_main:73452)
   at dispatch (azle_main:73432)
   at handle (azle_main:73283)
   at <anonymous> (azle_main:73655)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at expressInit (azle_main:73910)
   at handle (azle_main:73283)
   at trim_prefix (azle_main:73684)
   at <anonymous> (azle_main:73657)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at query3 (azle_main:73938)
   at handle (azle_main:73283)
   at trim_prefix (azle_main:73684)
   at <anonymous> (azle_main:73657)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at handle (azle_main:73587)
   at handle (azle_main:76233)
   at app2 (azle_main:78091)
   at call (native)
   at emitTwo (azle_main:9782)
   at emit2 (azle_main:10023)
   at httpHandler (azle_main:87618)
\n\n or like this: 2024-04-17 14:35:30.433501980 UTC: [Canister bkyz2-fmaaa-aaaaa-qaaaq-cai] \" at (azle_main:110643)\\n at handle (azle_main:73283)\\n at next (azle_main:73452)\\n at dispatch (azle_main:73432)\\n at handle (azle_main:73283)\\n at (azle_main:73655)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at expressInit (azle_main:73910)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at query3 (azle_main:73938)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at handle (azle_main:73587)\\n at handle (azle_main:76233)\\n at app2 (azle_main:78091)\\n at call (native)\\n at emitTwo (azle_main:9782)\\n at emit2 (azle_main:10023)\\n at httpHandler (azle_main:87618)\\n\"\n2024-04-17T14:35:31.983590Z ERROR tower_http::trace::on_failure: response failed classification=Status code: 500 Internal Server Error latency=101 ms\n2024-04-17 14:36:34.652587412 UTC: [Canister bkyz2-fmaaa-aaaaa-qaaaq-cai] \" at (azle_main:110643)\\n at handle (azle_main:73283)\\n at next (azle_main:73452)\\n at dispatch (azle_main:73432)\\n at handle (azle_main:73283)\\n at (azle_main:73655)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at expressInit (azle_main:73910)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at query3 (azle_main:73938)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at handle (azle_main:73587)\\n at handle (azle_main:76233)\\n at app2 (azle_main:78091)\\n at call (native)\\n at emitTwo (azle_main:9782)\\n at emit2 (azle_main:10023)\\n at httpHandler (azle_main:87618)\\n\" In these situations you might be able to use try/catch with a console.log of the catch error argument to reveal the underlying error message. For example, this code without a try/catch will log errors without the message This is the error text: import express from 'express'; const app = express(); app.get('/hello-world', (_req, res) => { throw new Error('This is the error text'); res.send('Hello World!');\n}); app.listen(); You can get the message to print in the replica terminal like this: import express from 'express'; const app = express(); app.get('/hello-world', (_req, res) => { try { throw new Error('This is the error text'); res.send('Hello World!'); } catch (error) { console.log(error); }\n}); app.listen();","breadcrumbs":"Debugging » No error message","id":"32","title":"No error message"},"33":{"body":"Azle compiles and bundles your TypeScript/JavaScript into a final JavaScript file to be included and executed inside of your canister. Inspecting this final JavaScript code may help you to debug your application. When you see something like (azle_main:110643) in your error stack traces, it is a reference to the final compiled and bundled JavaScript file that is actually deployed with and executed by the canister. The right-hand side of azle_main e.g. :110643 is the line number in that file. You can find the file at [project_name]/.azle/[canister_name]/canister/src/main.js. If you have the AZLE_AUTORELOAD environment variable set to true then you should instead look at [project_name]/.azle/[canister_name]/canister/src/main_reloaded.js","breadcrumbs":"Debugging » Final Compiled and Bundled JavaScript","id":"33","title":"Final Compiled and Bundled JavaScript"},"34":{"body":"There are a number of limitations that you are likely to run into while you develop with Azle on ICP. These are generally the most limiting: 5 billion instruction limit for query calls (HTTP GET requests) (~1 second of computation) 20 billion instruction limit for update calls (HTTP POST/etc requests) (~5 seconds of computation) 2 MiB request size limit 3 MiB response size limit 4 GiB heap limit High request latency relative to traditional web applications (think seconds not milliseconds) High costs relative to traditional web applications (think ~10x traditional web costs) Read more here for in-depth information on current ICP limitations.","breadcrumbs":"Limitations » Limitations TL;DR","id":"34","title":"Limitations TL;DR"},"35":{"body":"Autoreload Environment Variables Native Compilation","breadcrumbs":"Reference » Reference","id":"35","title":"Reference"},"36":{"body":"Deploying to mainnet with AZLE_AUTORELOAD=true will expose your canister to arbitrary untrusted JavaScript code execution You can turn on automatic reloading of your canister's final compiled JavaScript by using the AZLE_AUTORELOAD environment variable during deploy: AZLE_AUTORELOAD=true dfx deploy The autoreload feature watches all .ts and .js files recursively in the directory with your dfx.json file (the root directory of your project), excluding files found in .azle, .dfx, and node_modules. Autoreload only works properly if you do not change the methods of your canister. HTTP-based canisters will generally work well with autoreload as the query and update methods http_request and http_request_update will not need to change often. Candid-based canisters with explicit query and update methods may require manual deploys more often. Autoreload will not reload assets uploaded through the assets property of your dfx.json. It is extremely important to keep in mind that setting AZLE_AUTORELOAD=true will create an update method in your canister called reload_js that has no authorization built into it. If you deploy this to mainnet, anyone will be able to call this method and change the JavaScript of your canister.","breadcrumbs":"Reference » Autoreload » Autoreload","id":"36","title":"Autoreload"},"37":{"body":"AZLE_AUTORELOAD AZLE_DOCKERFILE_HASH AZLE_IDENTITY_STORAGE_MODE AZLE_INSTRUCTION_COUNT AZLE_PROPTEST_NUM_RUNS AZLE_PROPTEST_PATH AZLE_PROPTEST_QUIET AZLE_PROPTEST_SEED AZLE_PROPTEST_VERBOSE AZLE_TEST_FETCH AZLE_USE_DOCKERFILE AZLE_VERBOSE AZLE_WASMEDGE_QUICKJS_DIR","breadcrumbs":"Reference » Environment Variables » Environment Variables","id":"37","title":"Environment Variables"},"38":{"body":"Set this to true to enable autoreloading of your TypeScript/JavaScript code when making any changes to .ts or .js files in your project.","breadcrumbs":"Reference » Environment Variables » AZLE_AUTORELOAD","id":"38","title":"AZLE_AUTORELOAD"},"39":{"body":"Set this to the hash that you would like Azle to use when determining the container image, container, and wasmedge-quickjs directory names. The container image file and wasmedge-quickjs directory will be stored at ~/.config/azle. The hash is the final part of each of those names.","breadcrumbs":"Reference » Environment Variables » AZLE_DOCKERFILE_HASH","id":"39","title":"AZLE_DOCKERFILE_HASH"},"4":{"body":"There are many Azle examples in the examples directory . We recommend starting with the following: apollo_server audio_and_video autoreload ethers ethers_base express fetch_ic file_protocol fs hello_world http_outcall_fetch hybrid_canister ic_evm_rpc internet_identity large_files sqlite tfjs web_assembly","breadcrumbs":"Examples » Examples","id":"4","title":"Examples"},"40":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_IDENTITY_STORAGE_MODE","id":"40","title":"AZLE_IDENTITY_STORAGE_MODE"},"41":{"body":"Set this to true to see rough instruction counts just before JavaScript execution completes for calls.","breadcrumbs":"Reference » Environment Variables » AZLE_INSTRUCTION_COUNT","id":"41","title":"AZLE_INSTRUCTION_COUNT"},"42":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_NUM_RUNS","id":"42","title":"AZLE_PROPTEST_NUM_RUNS"},"43":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_PATH","id":"43","title":"AZLE_PROPTEST_PATH"},"44":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_QUIET","id":"44","title":"AZLE_PROPTEST_QUIET"},"45":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_SEED","id":"45","title":"AZLE_PROPTEST_SEED"},"46":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_VERBOSE","id":"46","title":"AZLE_PROPTEST_VERBOSE"},"47":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_TEST_FETCH","id":"47","title":"AZLE_TEST_FETCH"},"48":{"body":"Set this to true to force Azle to build the container image locally from the internal Dockerfile instead of attempting to download the container image.","breadcrumbs":"Reference » Environment Variables » AZLE_USE_DOCKERFILE","id":"48","title":"AZLE_USE_DOCKERFILE"},"49":{"body":"Set this to true to enable more logging output during dfx deploy.","breadcrumbs":"Reference » Environment Variables » AZLE_VERBOSE","id":"49","title":"AZLE_VERBOSE"},"5":{"body":"Starting the local replica Deploying to the local replica Interacting with your canister Deploying to mainnet Common deployment issues There are two main ICP environments that you will generally interact with: the local replica and mainnet . We recommend using the dfx command line tools to deploy to these environments. Please note that not all dfx commands are shown here. See the dfx CLI reference for more information.","breadcrumbs":"Deployment » Deployment","id":"5","title":"Deployment"},"50":{"body":"Set this to the path that you would like Azle to use to find the wasmedge-quickjs directory. The default is ~/.config/azle/wasmedge-quickjs_[current Dockerfile hash].","breadcrumbs":"Reference » Environment Variables » AZLE_WASMEDGE_QUICKJS_DIR","id":"50","title":"AZLE_WASMEDGE_QUICKJS_DIR"},"51":{"body":"Add the --native-compilation option to the command in the build property of your canister object in your dfx.json file. Make sure you install the correct dependencies for your project's version of Azle.","breadcrumbs":"Reference » Native Compilation » Native Compilation TL;DR","id":"51","title":"Native Compilation TL;DR"},"52":{"body":"Examples: key_value_store primitive_types stable_structures Azle uses a container image and Podman to simplify the development environment experience. Because of this, Azle only requires dfx, node/npm, and podman to be installed on the developer's machine. But this setup isn't always desirable. For example, Podman has trouble running inside of a Docker container. If you would like to skip the container and run Azle's build process directly on your machine, you can do so as follows: Add the --native-compilation option to the command in the build property of your canister object in your dfx.json file, like this: npx azle canister_name --native-compilation. Install prerequisites: sudo apt-get update\nsudo apt-get install clang\nsudo apt-get install build-essential Install Rust: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.73.0 --profile=minimal Install wasm32-wasi: rustup target add wasm32-wasi Install wasi2ic: cargo install --git https://github.com/wasm-forge/wasi2ic --rev 806c3558aad24224852a9582f018178402cb3679 Download and rename wasmedge-quickjs: mkdir -p ~/.config/azle\ncd ~/.config/azle\ngit clone https://github.com/demergent-labs/wasmedge-quickjs\ncd wasmedge-quickjs\ngit checkout c21ff69f442998e4cda4619166e23a9bc91418be\ncd -\nmv wasmedge-quickjs wasmedge-quickjs_$(npx azle@0.21.1 dockerfile-hash) Keep in mind that much of this setup is Azle version-specific. The installation steps above are accurate as of version 0.21.1 of Azle. If your Azle project uses a different version of Azle then you might need to make changes to these instructions to ensure correct compilation and execution. If you are struggling to get --native-compilation to work, it may be helpful for you to view the following files from the Azle repository: Dockerfile test.yml , search for --native-compilation","breadcrumbs":"Reference » Native Compilation » Native Compilation","id":"52","title":"Native Compilation"},"53":{"body":"This entire section of the documentation may be out of date Azle is currently going through a transition to give higher priority to utilizing HTTP, REST, JSON, and other familiar web technologies. This is in contrast to having previously focused on ICP-specific technologies like Candid and explicitly creating Canister objects with query and update methods. We are calling these two paradigms HTTP-based and Candid-based. Many concepts from the Candid-based documentation are still applicable in the HTTP-based paradigm. The HTTP-based paradigm simply focuses on changing the communication and serialization strategies to be more web-focused and less custom.","breadcrumbs":"Old Candid-based Documentation » Old Candid-based Documentation","id":"53","title":"Old Candid-based Documentation"},"54":{"body":"Azle is a TypeScript and JavaScript Canister Development Kit (CDK) for the Internet Computer (IC). In other words, it's a TypeScript/JavaScript runtime for building applications ( canisters ) on the IC. npm package GitHub repo Discord channel","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Azle (Beta)","id":"54","title":"Azle (Beta)"},"55":{"body":"Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Disclaimer","id":"55","title":"Disclaimer"},"56":{"body":"Azle is currently developed by Demergent Labs , a for-profit company with a grant from DFINITY . Demergent Labs' vision is to accelerate the adoption of Web3, the Internet Computer, and sustainable open source.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Demergent Labs","id":"56","title":"Demergent Labs"},"57":{"body":"Azle and the IC provide unique benefits and drawbacks, and both are not currently suitable for all application use-cases. The following information will help you to determine when Azle and the IC might be beneficial for your use-case.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Benefits and drawbacks","id":"57","title":"Benefits and drawbacks"},"58":{"body":"Azle intends to be a full TypeScript and JavaScript environment for the IC (a decentralized cloud platform), with support for all of the TypeScript and JavaScript language and as many relevant environment APIs as possible. These environment APIs will be similar to those available in the Node.js and web browser environments. One of the core benefits of Azle is that it allows web developers to bring their TypeScript or JavaScript skills to the IC. For example, Azle allows the use of various npm packages and VS Code intellisense. As for the IC, we believe its main benefits can be broken down into the following categories: Ownership Security Developer Experience Most of these benefits stem from the decentralized nature of the IC, though the IC is best thought of as a progressively decentralizing cloud platform. As opposed to traditional cloud platforms, its goal is to be owned and controlled by many independent entities. Ownership Full-stack group ownership Autonomous ownership Permanent APIs Credible neutrality Reduced platform risk Full-stack group ownership The IC allows you to build applications that are controlled directly and only (with some caveats) by a group of people. This is in opposition to most cloud applications written today, which must be under the control of a very limited number of people and often a single legal entity that answers directly to a cloud provider, which itself is a single legal entity. In the blockchain world, group-owned applications are known as DAOs . As opposed to DAOs built on most blockchains, the IC allows full-stack applications to be controlled by groups. This means that the group fully controls the running instances of the frontend and the backend code. Autonomous ownership In addition to allowing applications to be owned by groups of people, the IC also allows applications to be owned by no one. This essentially creates autonomous applications or everlasting processes that execute indefinitely. The IC will essentially allow such an application to run indefinitely, unless it depletes its balance of cycles, or the NNS votes to shut it down, neither of which is inevitable. Permanent APIs Because most web APIs are owned and operated by individual entities, their fate is tied to that of their owners. If their owners go out of business, then those APIs may cease to exist. If their owners decide that they do not like or agree with certain users, they may restrict their access. In the end, they may decide to shut down or restrict access for arbitrary reasons. Because the IC allows for group and autonomous ownership of cloud software, the IC is able to produce potentially permanent web APIs. A decentralized group of independent entities will find it difficult to censor API consumers or shut down an API. An autonomous API would take those difficulties to the extreme, as it would continue operating as long as consumers were willing to pay for it. Credible neutrality Group and autonomous ownership makes it possible to build neutral cloud software on the IC. This type of software would allow independent parties to coordinate with reduced trust in each other or a single third-party coordinator. This removes the risk of the third-party coordinator acting in its own self-interest against the interests of the coordinating participants. The coordinating participants would also find it difficult to implement changes that would benefit themselves to the detriment of other participants. Examples could include mobile app stores, ecommerce marketplaces, and podcast directories. Reduced platform risk Because the IC is not owned or controlled by any one entity or individual, the risk of being deplatformed is reduced. This is in opposition to most cloud platforms, where the cloud provider itself generally has the power to arbitrarily remove users from its platform. While deplatforming can still occur on the IC, the only endogenous means of forcefully taking down an application is through an NNS vote. Security Built-in replication Built-in authentication Built-in firewall/port management Built-in sandboxing Threshold protocols Verifiable source code Blockchain integration Built-in replication Replication has many benefits that stem from reducing various central points of failure. The IC is at its core a Byzantine Fault Tolerant replicated compute environment. Applications are deployed to subnets which are composed of nodes running replicas. Each replica is an independent replicated state machine that executes an application's state transitions (usually initiated with HTTP requests) and persists the results. This replication provides a high level of security out-of-the-box. It is also the foundation of a number of protocols that provide threshold cryptographic operations to IC applications. Built-in authentication IC client tooling makes it easy to sign and send messages to the IC, and Internet Identity provides a novel approach to self-custody of private keys. The IC automatically authenticates messages with the public key of the signer, and provides a compact representation of that public key, called a principal, to the application. The principal can be used for authorization purposes. This removes many authentication concerns from the developer. Built-in firewall/port management The concept of ports and various other low-level network infrastructure on the IC is abstracted away from the developer. This can greatly reduce application complexity thus minimizing the chance of introducing vulnerabilities through incorrect configurations. Canisters expose endpoints through various methods, usually query or update methods. Because authentication is also built-in, much of the remaining vulnerability surface area is minimized to implementing correct authorization rules in the canister method endpoints. Built-in sandboxing Canisters have at least two layers of sandboxing to protect colocated canisters from each other. All canisters are at their core Wasm modules and thus inherit the built-in Wasm sandbox. In case there is any bug in the underlying implementation of the Wasm execution environment (or a vulnerability in the imported host functionality), there is also an OS-level sandbox. Developers need not do anything to take advantage of these sandboxes. Threshold protocols The IC provides a number of threshold protocols that allow groups of independent nodes to perform cryptographic operations. These protocols remove central points of failure while providing familiar and useful cryptographic operations to developers. Included are ECDSA , BLS , VRF-like , and in the future threshold key derivation . Verifiable source code IC applications (canisters) are compiled into Wasm and deployed to the IC as Wasm modules. The IC hashes each canister's Wasm binary and stores it for public retrieval. The Wasm binary hash can be retrieved and compared with the hash of an independently compiled Wasm binary derived from available source code. If the hashes match, then one can know with a high degree of certainty that the application is executing the Wasm binary that was compiled from that source code. Blockchain integration When compared with web APIs built for the same purpose, the IC provides a high degree of security when integrating with various other blockchains. It has a direct client integration with Bitcoin, allowing applications to query its state with BFT guarantees. A similar integration is coming for Ethereum. In addition to these blockchain client integrations, a threshold ECDSA protocol (tECDSA) allows the IC to create keys and sign transactions on various ECDSA chains . These chains include Bitcoin and Ethereum, and in the future the protocol may be extended to allow interaction with various EdDSA chains . These direct integrations combined with tECDSA provide a much more secure way to provide blockchain functionality to end users than creating and storing their private keys on traditional cloud infrastructure. Developer experience Built-in devops Orthogonal persistence Built-in devops The IC provides many devops benefits automatically. Though currently limited in its scalability, the protocol attempts to remove the need for developers to concern themselves with concepts such as autoscaling, load balancing, uptime, sandboxing, and firewalls/port management. Correctly constructed canisters have a simple deploy process and automatically inherit these devops capabilities up unto the current scaling limits of the IC. DFINITY engineers are constantly working to remove scalability bottlenecks. Orthogonal persistence The IC automatically persists its heap. This creates an extremely convenient way for developers to store application state, by simply writing into global variables in their programming language of choice. This is a great way to get started. If a canister upgrades its code, swapping out its Wasm binary, then the heap must be cleared. To overcome this limitation, there is a special area of memory called stable memory that persists across these canister upgrades. Special stable data structures provide a familiar API that allows writing into stable memory directly. All of this together provides the foundation for a very simple persistence experience for the developer. The persistence tools now available and coming to the IC may be simpler than their equivalents on traditional cloud infrastructure.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Benefits","id":"58","title":"Benefits"},"59":{"body":"It's important to note that both Azle and the IC are early-stage projects. The IC officially launched in May of 2021, and Azle reached beta in April of 2022. Azle Some of Azle's main drawbacks can be summarized as follows: Beta Security risks Missing APIs Beta Azle reached beta in April of 2022. It's an immature project that may have unforeseen bugs and other issues. We're working constantly to improve it. We hope to get to a production-ready 1.0 in 2024. The following are the major blockers to 1.0: Extensive automated property test coverage Multiple independent security reviews/audits Broad npm package support Security risks As discussed earlier, these are some things to keep in mind: Azle does not yet have extensive automated property tests Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to the IC Missing APIs Azle is not Node.js nor is it V8 running in a web browser. It is using a JavaScript interpreter running in a very new and very different environment. APIs from the Node.js and web browser ecosystems may not be present in Azle. Our goal is to support as many of these APIs as possible over time. IC Some of the IC's main drawbacks can be summarized as follows: Early High latencies Limited and expensive compute resources Limited scalability Lack of privacy NNS risk Early The IC launched officially in May of 2021. As a relatively new project with an extremely ambitious vision, you can expect a small community, immature tooling, and an unproven track record. Much has been delivered, but many promises are yet to be fulfilled. High latencies Any requests that change state on the IC must go through consensus, thus you can expect latencies of a few seconds for these types of requests. When canisters need to communicate with each other across subnets or under heavy load, these latencies can be even longer. Under these circumstances, in the worst case latencies will build up linearly. For example, if canister A calls canister B calls canister C, and these canisters are all on different subnets or under heavy load, then you might need to multiply the latency by the total number of calls. Limited and expensive compute resources CPU usage, data storage, and network usage may be more expensive than the equivalent usage on traditional cloud platforms. Combining these costs with the high latencies explained above, it becomes readily apparent that the IC is currently not built for high-performance computing. Limited scalability The IC might not be able to scale to the needs of your application. It is constantly seeking to improve scalability bottlenecks, but it will probably not be able to onboard millions of users to your traditional web application. Lack of privacy You should assume that all of your application data (unless it is end-to-end encrypted) is accessible to multiple third-parties with no direct relationship and limited commitment to you. Currently all canister state sits unencrypted on node operator's machines. Application-layer access controls for data are possible, but motivated node operators will have an easy time getting access to your data. NNS risk The NNS has the ability to uninstall any canister and can generally change anything about the IC protocol. The NNS uses a simple liquid democracy based on coin/token voting and follower relationships. At the time of this writing most of the voting power on the NNS follows DFINITY for protocol changes, effectively giving DFINITY write control to the protocol while those follower relationships remain in place. The NNS must mature and decentralize to provide practical and realistic protections to canisters and their users.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Drawbacks","id":"59","title":"Drawbacks"},"6":{"body":"We recommend running your local replica in its own terminal and on a port of your choosing: dfx start --host 127.0.0.1:8000 Alternatively you can start the local replica as a background process: dfx start --background --host 127.0.0.1:8000 If you want to stop a local replica running in the background: dfx stop If you ever see this kind of error after dfx stop: Error: Failed to kill all processes. Remaining: 627221 626923 627260 Then try this: sudo kill -9 627221\nsudo kill -9 626923\nsudo kill -9 627260 If your replica starts behaving strangely, we recommend starting the replica clean, which will clean the dfx state of your project: dfx start --clean --host 127.0.0.1:8000","breadcrumbs":"Deployment » Starting the local replica","id":"6","title":"Starting the local replica"},"60":{"body":"The Internet Computer (IC) is a decentralized cloud platform. Actually, it is better thought of as a progressively decentralizing cloud platform. Its full vision is yet to be fulfilled. It aims to be owned and operated by many independent entities in many geographies and legal jurisdictions throughout the world. This is in opposition to most traditional cloud platforms today, which are generally owned and operated by one overarching legal entity. The IC is composed of computer hardware nodes running the IC protocol software. Each running IC protocol software process is known as a replica. Nodes are assigned into groups known as subnets. Each subnet attempts to maximize its decentralization of nodes according to factors such as data center location and node operator independence. The subnets vary in size. Generally speaking the larger the size of the subnet the more secure it will be. Subnets currently range in size from 13 to 40 nodes, with most subnets having 13 nodes. IC applications, known as canisters, are deployed to specific subnets. They are then accessible through Internet Protocol requests such as HTTP. Each subnet replicates all canisters across all of its replicas. A consensus protocol is run by the replicas to ensure Byzantine Fault Tolerance . View the IC Dashboard to explore all data centers, subnets, node operators, and many other aspects of the IC.","breadcrumbs":"Old Candid-based Documentation » Internet Computer Overview » Internet Computer Overview","id":"60","title":"Internet Computer Overview"},"61":{"body":"Canisters are Internet Computer (IC) applications. They are the encapsulation of your code and state, and are essentially Wasm modules. State can be stored on the 4 GiB heap or in a larger 96 GiB location called stable memory. You can store state on the heap using your language's native global variables. You can store state in stable memory using low-level APIs or special stable data structures that behave similarly to native language data structures. State changes must go through a process called consensus. The consensus process ensures that state changes are Byzantine Fault Tolerant . This process takes a few seconds to complete. Operations on canister state are exposed to users through canister methods. These methods can be invoked through HTTP requests. Query methods allow state to be read and are low-latency. Update methods allow state to be changed and are higher-latency. Update methods take a few seconds to complete because of the consensus process.","breadcrumbs":"Old Candid-based Documentation » Canisters Overview » Canisters Overview","id":"61","title":"Canisters Overview"},"62":{"body":"Windows is only supported through a Linux virtual environment of some kind, such as WSL On Ubuntu/WSL: sudo apt-get install podman On Mac: brew install podman It's recommended to use nvm and Node.js 20: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash Restart your terminal and then run: nvm install 20 Check that the installation went smoothly by looking for clean output from the following command: node --version Install the dfx command line tools for managing ICP applications: DFX_VERSION=0.16.1 sh -ci \"$(curl -fsSL https://sdk.dfinity.org/install.sh)\" Check that the installation went smoothly by looking for clean output from the following command: dfx --version If after trying to run dfx --version you encounter an error such as dfx: command not found, you might need to add $HOME/bin to your path. Here's an example of doing this in your .bashrc: echo 'export PATH=\"$PATH:$HOME/bin\"' >> \"$HOME/.bashrc\"","breadcrumbs":"Old Candid-based Documentation » Installation » Installation","id":"62","title":"Installation"},"63":{"body":"Quick start Methodical start The project directory and file structure index.ts tsconfig.json dfx.json Local deployment Common deployment issues Interacting with your canister from the command line Interacting with your canister from the web UI Let's build your first application (canister) with Azle! Before embarking please ensure you've followed all of the installation instructions , especially noting the build dependencies . We'll build a simple Hello World canister that shows the basics of importing Azle, exposing a query method, exposing an update method, and storing some state in a global variable. We'll then interact with it from the command line and from our web browser.","breadcrumbs":"Old Candid-based Documentation » Hello World » Hello World","id":"63","title":"Hello World"},"64":{"body":"We are going to use the Azle new command which creates a simple example project. First use the new command to create a new project called azle_hello_world: npx azle new azle_hello_world Now let's go inside of our project: cd azle_hello_world We should install Azle and all of its dependencies: npm install Start up your local replica: dfx start In another terminal, deploy your canister: dfx deploy azle_hello_world Call the setMessage method: dfx canister call azle_hello_world setMessage '(\"Hello world!\")' Call the getMessage method: dfx canister call azle_hello_world getMessage If you run into an error during deployment, see the common deployment issues section . See the official azle_hello_world example for more information.","breadcrumbs":"Old Candid-based Documentation » Hello World » Quick Start","id":"64","title":"Quick Start"},"65":{"body":"","breadcrumbs":"Old Candid-based Documentation » Hello World » Methodical start","id":"65","title":"Methodical start"},"66":{"body":"Assuming you're starting completely from scratch, run these commands to setup your project's directory and file structure: mkdir azle_hello_world\ncd azle_hello_world mkdir src touch src/index.ts\ntouch tsconfig.json\ntouch dfx.json Now install Azle, which will create your package.json and package-lock.json files: npm install azle Open up azle_hello_world in your text editor (we recommend VS Code ).","breadcrumbs":"Old Candid-based Documentation » Hello World » The project directory and file structure","id":"66","title":"The project directory and file structure"},"67":{"body":"Here's the main code of the project, which you should put in the azle_hello_world/src/index.ts file of your canister: import { Canister, query, text, update, Void } from 'azle'; // This is a global variable that is stored on the heap\nlet message = ''; export default Canister({ // Query calls complete quickly because they do not go through consensus getMessage: query([], text, () => { return message; }), // Update calls take a few seconds to complete // This is because they persist state changes and go through consensus setMessage: update([text], Void, (newMessage) => { message = newMessage; // This change will be persisted })\n}); Let's discuss each section of the code. import { Canister, query, text, update, Void } from 'azle'; The code starts off by importing Canister, query, text, update and Void from azle. The azle module provides most of the Internet Computer (IC) APIs for your canister. // This is a global variable that is stored on the heap\nlet message = ''; We have created a global variable to store the state of our application. This variable is in scope to all of the functions defined in this module. We have set it equal to an empty string. export default Canister({ ...\n}); The Canister function allows us to export our canister's definition to the Azle IC environment. // Query calls complete quickly because they do not go through consensus\ngetMessage: query([], text, () => { return message;\n}), We are exposing a canister query method here. This method simply returns our global message variable. We use a CandidType object called text to instruct Azle to encode the return value as a Candid text value. When query methods are called they execute quickly because they do not have to go through consensus. // Update calls take a few seconds to complete\n// This is because they persist state changes and go through consensus\nsetMessage: update([text], Void, (newMessage) => { message = newMessage; // This change will be persisted\n}); We are exposing an update method here. This method accepts a string from the caller and will store it in our global message variable. We use a CandidType object called text to instruct Azle to decode the newMessage parameter from a Candid text value to a JavaScript string value. Azle will infer the TypeScript type for newMessage. We use a CandidType object called Void to instruct Azle to encode the return value as the absence of a Candid value. When update methods are called they take a few seconds to complete. This is because they persist changes and go through consensus. A majority of nodes in a subnet must agree on all state changes introduced in calls to update methods. That's it! We've created a very simple getter/setter Hello World application. But no Hello World project is complete without actually yelling Hello world! To do that, we'll need to setup the rest of our project.","breadcrumbs":"Old Candid-based Documentation » Hello World » index.ts","id":"67","title":"index.ts"},"68":{"body":"Create the following in azle_hello_world/tsconfig.json: { \"compilerOptions\": { \"strict\": true, \"target\": \"ES2020\", \"moduleResolution\": \"node\", \"allowJs\": true, \"outDir\": \"HACK_BECAUSE_OF_ALLOW_JS\" }\n}","breadcrumbs":"Old Candid-based Documentation » Hello World » tsconfig.json","id":"68","title":"tsconfig.json"},"69":{"body":"Create the following in azle_hello_world/dfx.json: { \"canisters\": { \"azle_hello_world\": { \"type\": \"custom\", \"main\": \"src/index.ts\", \"candid\": \"src/index.did\", \"build\": \"npx azle azle_hello_world\", \"wasm\": \".azle/azle_hello_world/azle_hello_world.wasm\", \"gzip\": true } }\n}","breadcrumbs":"Old Candid-based Documentation » Hello World » dfx.json","id":"69","title":"dfx.json"},"7":{"body":"To deploy all canisters defined in your dfx.json: dfx deploy If you are building an HTTP-based canister and would like your canister to autoreload on file changes (DO NOT deploy to mainnet with autoreload enabled): AZLE_AUTORELOAD=true dfx deploy To deploy an individual canister: dfx deploy [canisterName]","breadcrumbs":"Deployment » Deploying to the local replica","id":"7","title":"Deploying to the local replica"},"70":{"body":"Let's deploy to our local replica. First startup the replica: dfx start --background Then deploy the canister: dfx deploy","breadcrumbs":"Old Candid-based Documentation » Hello World » Local deployment","id":"70","title":"Local deployment"},"71":{"body":"If you run into an error during deployment, see the common deployment issues section .","breadcrumbs":"Old Candid-based Documentation » Hello World » Common deployment issues","id":"71","title":"Common deployment issues"},"72":{"body":"Once we've deployed we can ask for our message: dfx canister call azle_hello_world getMessage We should see (\"\") representing an empty message. Now let's yell Hello World!: dfx canister call azle_hello_world setMessage '(\"Hello World!\")' Retrieve the message: dfx canister call azle_hello_world getMessage We should see (\"Hello World!\").","breadcrumbs":"Old Candid-based Documentation » Hello World » Interacting with your canister from the command line","id":"72","title":"Interacting with your canister from the command line"},"73":{"body":"After deploying your canister, you should see output similar to the following in your terminal: Deployed canisters.\nURLs: Backend canister via Candid interface: azle_hello_world: http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai Open up http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai or the equivalent URL from your terminal to access the web UI and interact with your canister.","breadcrumbs":"Old Candid-based Documentation » Hello World » Interacting with your canister from the web UI","id":"73","title":"Interacting with your canister from the web UI"},"74":{"body":"Starting the local replica Deploying to the local replica Interacting with your canister Deploying to mainnet Common deployment issues There are two main Internet Computer (IC) environments that you will generally interact with: the local replica and mainnet. When developing on your local machine, our recommended flow is to start up a local replica in your project's root directoy and then deploy to it for local testing.","breadcrumbs":"Old Candid-based Documentation » Deployment » Deployment","id":"74","title":"Deployment"},"75":{"body":"Open a terminal and navigate to your project's root directory: dfx start Alternatively you can start the local replica as a background process: dfx start --background If you want to stop a local replica running in the background: dfx stop If you ever see this error after dfx stop: Error: Failed to kill all processes. Remaining: 627221 626923 627260 Then try this: sudo kill -9 627221\nsudo kill -9 626923\nsudo kill -9 627260 If your replica starts behaving strangely, we recommend starting the replica clean, which will clean the dfx state of your project: dfx start --clean","breadcrumbs":"Old Candid-based Documentation » Deployment » Starting the local replica","id":"75","title":"Starting the local replica"},"76":{"body":"To deploy all canisters defined in your dfx.json: dfx deploy To deploy an individual canister: dfx deploy canister_name","breadcrumbs":"Old Candid-based Documentation » Deployment » Deploying to the local replica","id":"76","title":"Deploying to the local replica"},"77":{"body":"As a developer you can generally interact with your canister in three ways: dfx command line dfx web UI @dfinity/agent","breadcrumbs":"Old Candid-based Documentation » Deployment » Interacting with your canister","id":"77","title":"Interacting with your canister"},"78":{"body":"You can see a more complete reference here . The commands you are likely to use most frequently are: # assume a canister named my_canister # builds and deploys all canisters specified in dfx.json\ndfx deploy # builds all canisters specified in dfx.json\ndfx build # builds and deploys my_canister\ndfx deploy my_canister # builds my_canister\ndfx build my_canister # removes the Wasm binary and state of my_canister\ndfx uninstall-code my_canister # calls the methodName method on my_canister with a string argument\ndfx canister call my_canister methodName '(\"This is a Candid string argument\")'","breadcrumbs":"Old Candid-based Documentation » Deployment » dfx command line","id":"78","title":"dfx command line"},"79":{"body":"After deploying your canister, you should see output similar to the following in your terminal: Deployed canisters.\nURLs: Backend canister via Candid interface: my_canister: http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai Open up http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai to access the web UI.","breadcrumbs":"Old Candid-based Documentation » Deployment » dfx web UI","id":"79","title":"dfx web UI"},"8":{"body":"You will generally interact with your canister through an HTTP client such as curl, fetch, or a web browser. The URL of your canister locally will look like this: http://[canisterId].localhost:[replicaPort]. Azle will print your canister's URL in the terminal after a successful deploy. # You can obtain the canisterId like this\ndfx canister id [canisterName] # You can obtain the replicaPort like this\ndfx info webserver-port # An example of performing a GET request to a canister\ncurl http://a3shf-5eaaa-aaaaa-qaafa-cai.localhost:8000 # An example of performing a POST request to a canister\ncurl -X POST -H \"Content-Type: application/json\" -d \"{ \\\"hello\\\": \\\"world\\\" }\" http://a3shf-5eaaa-aaaaa-qaafa-cai.localhost:8000","breadcrumbs":"Deployment » Interacting with your canister","id":"8","title":"Interacting with your canister"},"80":{"body":"@dfinity/agent is the TypeScript/JavaScript client library for interacting with canisters on the IC. If you are building a client web application, this is probably what you'll want to use. There are other agents for other languages as well: Java Python Rust","breadcrumbs":"Old Candid-based Documentation » Deployment » @dfinity/agent","id":"80","title":"@dfinity/agent"},"81":{"body":"Assuming you are setup with cycles , then you are ready to deploy to mainnet. To deploy all canisters defined in your dfx.json: dfx deploy --network ic To deploy an individual canister: dfx deploy --network ic canister_name","breadcrumbs":"Old Candid-based Documentation » Deployment » Deploying to mainnet","id":"81","title":"Deploying to mainnet"},"82":{"body":"If you run into an error during deployment, try the following: Ensure that you have followed the instructions correctly in the installation chapter , especially noting the build dependencies Start the whole deployment process from scratch by running the following commands: dfx stop or simply terminate dfx in your terminal, dfx start --clean, npx azle clean, dfx deploy Look for more error output by adding the --verbose flag to the build command in your dfx.json file like so: \"build\": \"npx azle build hello_world --verbose Look for errors in each of the files in ~/.config/azle/rust/[rust_version]/logs Reach out in the Discord channel","breadcrumbs":"Old Candid-based Documentation » Deployment » Common deployment issues","id":"82","title":"Common deployment issues"},"83":{"body":"Azle has many example projects showing nearly all Azle APIs. They can be found in the examples directory of the Azle GitHub repository . We'll highlight a few of them and some others here: Query Update Primitive Types Stable Structures Cycles Cross Canister Calls Management Canister Outgoing HTTP Requests Incoming HTTP Requests Pre and Post Upgrade Timers Multisig Vault ICRC-1 IC Chainlink Data Feeds Bitcoin ckBTC","breadcrumbs":"Old Candid-based Documentation » Examples » Examples","id":"83","title":"Examples"},"84":{"body":"","breadcrumbs":"Old Candid-based Documentation » Query Methods » Query Methods","id":"84","title":"Query Methods"},"85":{"body":"Created with the query function Read-only Executed on a single node No consensus Latency on the order of ~100 milliseconds 5 billion Wasm instruction limit 4 GiB heap limit ~32k queries per second per canister The most basic way to expose your canister's functionality publicly is through a query method. Here's an example of a simple query method named getString: import { Canister, query, text } from 'azle'; export default Canister({ getString: query([], text, () => { return 'This is a query method!'; })\n}); Query methods are defined inside of a call to Canister using the query function. The first parameter to query is an array of CandidType objects that will be used to decode the Candid bytes of the arguments sent from the client when calling your query method. The second parameter to query is a CandidType object used to encode the return value of your function to Candid bytes to then be sent back to the client. The third parameter to query is the function that receives the decoded arguments, performs some computation, and then returns a value to be encoded. The TypeScript signature of this function (parameter and return types) will be inferred from the CandidType arguments in the first and second parameters to query. getString can be called from the outside world through the IC's HTTP API. You'll usually invoke this API from the dfx command line, dfx web UI, or an agent . From the dfx command line you can call it like this: dfx canister call my_canister getString Query methods are read-only. They do not persist any state changes. Take a look at the following example: import { Canister, query, text, Void } from 'azle'; let db: { [key: string]: string;\n} = {}; export default Canister({ set: query([text, text], Void, (key, value) => { db[key] = value; })\n}); Calling set will perform the operation of setting the key property on the db object to value, but after the call finishes that change will be discarded. This is because query methods are executed on a single node machine and do not go through consensus . This results in lower latencies, perhaps on the order of 100 milliseconds. There is a limit to how much computation can be done in a single call to a query method. The current query call limit is 5 billion Wasm instructions . Here's an example of a query method that runs the risk of reaching the limit: import { Canister, nat32, query, text } from 'azle'; export default Canister({ pyramid: query([nat32], text, (levels) => { return new Array(levels).fill(0).reduce((acc, _, index) => { const asterisks = new Array(index + 1).fill('*').join(''); return `${acc}${asterisks}\\n`; }, ''); })\n}); From the dfx command line you can call pyramid like this: dfx canister call my_canister pyramid '(1_000)' With an argument of 1_000, pyramid will fail with an error ...exceeded the instruction limit for single message execution. Keep in mind that each query method invocation has up to 4 GiB of heap available. In terms of query scalability, an individual canister likely has an upper bound of ~36k queries per second .","breadcrumbs":"Old Candid-based Documentation » Query Methods » TL;DR","id":"85","title":"TL;DR"},"86":{"body":"","breadcrumbs":"Old Candid-based Documentation » Update Methods » Update Methods","id":"86","title":"Update Methods"},"87":{"body":"Created with the update function Read-write Executed on many nodes Consensus Latency ~2-5 seconds 20 billion Wasm instruction limit 4 GiB heap limit 96 GiB stable memory limit ~900 updates per second per canister Update methods are similar to query methods, but state changes can be persisted. Here's an example of a simple update method: import { Canister, nat64, update } from 'azle'; let counter = 0n; export default Canister({ increment: update([], nat64, () => { return counter++; })\n}); Calling increment will return the current value of counter and then increase its value by 1. Because counter is a global variable, the change will be persisted to the heap, and subsequent query and update calls will have access to the new counter value. Because the Internet Computer (IC) persists changes with certain fault tolerance guarantees, update calls are executed on many nodes and go through consensus . This leads to latencies of ~2-5 seconds per update call. Due to the latency and other expenses involved with update methods, it is best to use them only when necessary. Look at the following example: import { Canister, query, text, update, Void } from 'azle'; let message = ''; export default Canister({ getMessage: query([], text, () => { return message; }), setMessage: update([text], Void, (newMessage) => { message = newMessage; })\n}); You'll notice that we use an update method, setMessage, only to perform the change to the global message variable. We use getMessage, a query method, to read the message. Keep in mind that the heap is limited to 4 GiB, and thus there is an upper bound to global variable storage capacity. You can imagine how a simple database like the following would eventually run out of memory with too many entries: import { Canister, None, Opt, query, Some, text, update, Void } from 'azle'; type Db = { [key: string]: string;\n}; let db: Db = {}; export default Canister({ get: query([text], Opt(text), (key) => { const value = db[key]; return value !== undefined ? Some(value) : None; }), set: update([text, text], Void, (key, value) => { db[key] = value; })\n}); If you need more than 4 GiB of storage, consider taking advantage of the 96 GiB of stable memory. Stable structures like StableBTreeMap give you a nice API for interacting with stable memory. These data structures will be covered in more detail later . Here's a simple example: import { Canister, Opt, query, StableBTreeMap, text, update, Void } from 'azle'; let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); })\n}); So far we have only seen how state changes can be persisted. State changes can also be discarded by implicit or explicit traps. A trap is an immediate stop to execution with the ability to provide a message to the execution environment. Traps can be useful for ensuring that multiple operations are either all completed or all disregarded, or in other words atomic. Keep in mind that these guarantees do not hold once cross-canister calls are introduced, but that's a more advanced topic covered later . Here's an example of how to trap and ensure atomic changes to your database: import { Canister, ic, Opt, query, Record, StableBTreeMap, text, update, Vec, Void\n} from 'azle'; const Entry = Record({ key: text, value: text\n}); let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); }), setMany: update([Vec(Entry)], Void, (entries) => { entries.forEach((entry) => { if (entry.key === 'trap') { ic.trap('explicit trap'); } db.insert(entry.key, entry.value); }); })\n}); In addition to ic.trap, an explicit JavaScript throw or any unhandled exception will also trap. There is a limit to how much computation can be done in a single call to an update method. The current update call limit is 20 billion Wasm instructions . If we modify our database example, we can introduce an update method that runs the risk of reaching the limit: import { Canister, nat64, Opt, query, StableBTreeMap, text, update, Void\n} from 'azle'; let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); }), setMany: update([nat64], Void, (numEntries) => { for (let i = 0; i < numEntries; i++) { db.insert(i.toString(), i.toString()); } })\n}); From the dfx command line you can call setMany like this: dfx canister call my_canister setMany '(10_000)' With an argument of 10_000, setMany will fail with an error ...exceeded the instruction limit for single message execution. In terms of update scalability, an individual canister likely has an upper bound of ~900 updates per second .","breadcrumbs":"Old Candid-based Documentation » Update Methods » TL;DR","id":"87","title":"TL;DR"},"88":{"body":"text blob nat nat8 nat16 nat32 nat64 int int8 int16 int32 int64 float32 float64 bool null vec opt record variant func service principal reserved empty Candid is an interface description language created by DFINITY . It can be used to define interfaces between services (canisters), allowing canisters and clients written in various languages to easily interact with each other. This interaction occurs through the serialization/encoding and deserialization/decoding of runtime values to and from Candid bytes. Azle performs automatic encoding and decoding of JavaScript values to and from Candid bytes through the use of various CandidType objects. For example, CandidType objects are used when defining the parameter and return types of your query and update methods. They are also used to define the keys and values of a StableBTreeMap. It's important to note that the CandidType objects decode Candid bytes into specific JavaScript runtime data structures that may differ in behavior from the description of the actual Candid type. For example, a float32 Candid type is a JavaScript Number , a nat64 is a JavaScript BigInt , and an int is also a JavaScript BigInt . Keep this in mind as it may result in unexpected behavior. Each CandidType object and its equivalent JavaScript runtime value is explained in more detail in The Azle Book Candid reference . A more canonical reference of all Candid types available on the Internet Computer (IC) can be found here . The following is a simple example showing how to import and use many of the CandidType objects available in Azle: import { blob, bool, Canister, float32, float64, Func, int, int16, int32, int64, int8, nat, nat16, nat32, nat64, nat8, None, Null, Opt, Principal, query, Record, Recursive, text, update, Variant, Vec\n} from 'azle'; const MyCanister = Canister({ query: query([], bool), update: update([], text)\n}); const Candid = Record({ text: text, blob: blob, nat: nat, nat64: nat64, nat32: nat32, nat16: nat16, nat8: nat8, int: int, int64: int64, int32: int32, int16: int16, int8: int8, float64: float64, float32: float32, bool: bool, null: Null, vec: Vec(text), opt: Opt(nat), record: Record({ firstName: text, lastName: text, age: nat8 }), variant: Variant({ Tag1: Null, Tag2: Null, Tag3: int }), func: Recursive(() => Func([], Candid, 'query')), canister: Canister({ query: query([], bool), update: update([], text) }), principal: Principal\n}); export default Canister({ candidTypes: query([], Candid, () => { return { text: 'text', blob: Uint8Array.from([]), nat: 340_282_366_920_938_463_463_374_607_431_768_211_455n, nat64: 18_446_744_073_709_551_615n, nat32: 4_294_967_295, nat16: 65_535, nat8: 255, int: 170_141_183_460_469_231_731_687_303_715_884_105_727n, int64: 9_223_372_036_854_775_807n, int32: 2_147_483_647, int16: 32_767, int8: 127, float64: Math.E, float32: Math.PI, bool: true, null: null, vec: ['has one element'], opt: None, record: { firstName: 'John', lastName: 'Doe', age: 35 }, variant: { Tag1: null }, func: [ Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'), 'candidTypes' ], canister: MyCanister(Principal.fromText('aaaaa-aa')), principal: Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai') }; })\n}); Calling candidTypes with dfx will return: ( record { func = func \"rrkah-fqaaa-aaaaa-aaaaq-cai\".candidTypes; text = \"text\"; nat16 = 65_535 : nat16; nat32 = 4_294_967_295 : nat32; nat64 = 18_446_744_073_709_551_615 : nat64; record = record { age = 35 : nat8; lastName = \"Doe\"; firstName = \"John\" }; int = 170_141_183_460_469_231_731_687_303_715_884_105_727 : int; nat = 340_282_366_920_938_463_463_374_607_431_768_211_455 : nat; opt = null; vec = vec { \"has one element\" }; variant = variant { Tag1 }; nat8 = 255 : nat8; canister = service \"aaaaa-aa\"; int16 = 32_767 : int16; int32 = 2_147_483_647 : int32; int64 = 9_223_372_036_854_775_807 : int64; null = null : null; blob = vec {}; bool = true; principal = principal \"ryjl3-tyaaa-aaaaa-aaaba-cai\"; int8 = 127 : int8; float32 = 3.1415927 : float32; float64 = 2.718281828459045 : float64; },\n)","breadcrumbs":"Old Candid-based Documentation » Candid » Candid","id":"88","title":"Candid"},"89":{"body":"","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Stable Structures","id":"89","title":"Stable Structures"},"9":{"body":"Assuming you are setup with a cycles wallet , then you are ready to deploy to mainnet. To deploy all canisters defined in your dfx.json: dfx deploy --network ic To deploy an individual canister: dfx deploy --network ic [canisterName] The URL of your canister on mainnet will look like this: https://[canisterId].raw.icp0.io.","breadcrumbs":"Deployment » Deploying to mainnet","id":"9","title":"Deploying to mainnet"},"90":{"body":"96 GiB of stable memory Persistent across upgrades Familiar API Must specify memory id No migrations per memory id Stable structures are data structures with familiar APIs that allow write and read access to stable memory. Stable memory is a separate memory location from the heap that currently allows up to 96 GiB of binary storage. Stable memory persists automatically across upgrades. Persistence on the Internet Computer (IC) is very important to understand. When a canister is upgraded (its code is changed after being initially deployed) its heap is wiped. This includes all global variables. On the other hand, anything stored in stable memory will be preserved. Writing and reading to and from stable memory can be done with a low-level API , but it is generally easier and preferable to use stable structures. Azle currently provides one stable structure called StableBTreeMap. It's similar to a JavaScript Map and has most of the common operations you'd expect such as reading, inserting, and removing values. Here's how to define a simple StableBTreeMap: import { nat8, StableBTreeMap, text } from 'azle'; let map = StableBTreeMap(0); This is a StableBTreeMap with a key of type nat8 and a value of type text. Unless you want a default type of any for your key and value, then you must explicitly type your StableBTreeMap with type arguments. StableBTreeMap works by encoding and decoding values under-the-hood, storing and retrieving these values in bytes in stable memory. When writing to and reading from a StableBTreeMap, by default the stableJson Serializable object is used to encode JS values into bytes and to decode JS values from bytes. stableJson uses JSON.stringify and JSON.parse with a custom replacer and reviver to handle many Candid and other values that you will most likely use in your canisters. You may use other Serializable objects besides stableJson, and you can even create your own. Simply pass in a Serializable object as the second and third parameters to your StableBTreeMap. The second parameter is the key Serializable object and the third parameter is the value Serializable object. For example, the following StableBTreeMap uses the nat8 and text CandidType objects from Azle as Serializable objects. These Serializable objects will encode and decode to and from Candid bytes: import { nat8, StableBTreeMap, text } from 'azle'; let map = StableBTreeMap(0, nat8, text); All CandidType objects imported from azle are Serializable objects. A Serializable object simply has a toBytes method that takes a JS value and returns a Uint8Array, and a fromBytes method that takes a Uint8Array and returns a JS value. Here's an example of how to create your own simple JSON Serializable: export interface Serializable { toBytes: (data: any) => Uint8Array; fromBytes: (bytes: Uint8Array) => any;\n} export function StableSimpleJson(): Serializable { return { toBytes(data: any) { const result = JSON.stringify(data); return Uint8Array.from(Buffer.from(result)); }, fromBytes(bytes: Uint8Array) { return JSON.parse(Buffer.from(bytes).toString()); } };\n} This StableBTreeMap also has a memory id of 0. Each StableBTreeMap instance must have a unique memory id between 0 and 254. Once a memory id is allocated, it cannot be used with a different StableBTreeMap. This means you can't create another StableBTreeMap using the same memory id, and you can't change the key or value types of an existing StableBTreeMap. This problem will be addressed to some extent . Here's an example showing all of the basic StableBTreeMap operations: import { bool, Canister, nat64, nat8, Opt, query, StableBTreeMap, text, Tuple, update, Vec\n} from 'azle'; const Key = nat8;\ntype Key = typeof Key.tsType; const Value = text;\ntype Value = typeof Value.tsType; let map = StableBTreeMap(0); export default Canister({ containsKey: query([Key], bool, (key) => { return map.containsKey(key); }), get: query([Key], Opt(Value), (key) => { return map.get(key); }), insert: update([Key, Value], Opt(Value), (key, value) => { return map.insert(key, value); }), isEmpty: query([], bool, () => { return map.isEmpty(); }), items: query([], Vec(Tuple(Key, Value)), () => { return map.items(); }), keys: query([], Vec(Key), () => { return Uint8Array.from(map.keys()); }), len: query([], nat64, () => { return map.len(); }), remove: update([Key], Opt(Value), (key) => { return map.remove(key); }), values: query([], Vec(Value), () => { return map.values(); })\n}); With these basic operations you can build more complex CRUD database applications: import { blob, Canister, ic, Err, nat64, Ok, Opt, Principal, query, Record, Result, StableBTreeMap, text, update, Variant, Vec\n} from 'azle'; const User = Record({ id: Principal, createdAt: nat64, recordingIds: Vec(Principal), username: text\n});\ntype User = typeof User.tsType; const Recording = Record({ id: Principal, audio: blob, createdAt: nat64, name: text, userId: Principal\n});\ntype Recording = typeof Recording.tsType; const AudioRecorderError = Variant({ RecordingDoesNotExist: Principal, UserDoesNotExist: Principal\n});\ntype AudioRecorderError = typeof AudioRecorderError.tsType; let users = StableBTreeMap(0);\nlet recordings = StableBTreeMap(1); export default Canister({ createUser: update([text], User, (username) => { const id = generateId(); const user: User = { id, createdAt: ic.time(), recordingIds: [], username }; users.insert(user.id, user); return user; }), readUsers: query([], Vec(User), () => { return users.values(); }), readUserById: query([Principal], Opt(User), (id) => { return users.get(id); }), deleteUser: update([Principal], Result(User, AudioRecorderError), (id) => { const userOpt = users.get(id); if ('None' in userOpt) { return Err({ UserDoesNotExist: id }); } const user = userOpt.Some; user.recordingIds.forEach((recordingId) => { recordings.remove(recordingId); }); users.remove(user.id); return Ok(user); }), createRecording: update( [blob, text, Principal], Result(Recording, AudioRecorderError), (audio, name, userId) => { const userOpt = users.get(userId); if ('None' in userOpt) { return Err({ UserDoesNotExist: userId }); } const user = userOpt.Some; const id = generateId(); const recording: Recording = { id, audio, createdAt: ic.time(), name, userId }; recordings.insert(recording.id, recording); const updatedUser: User = { ...user, recordingIds: [...user.recordingIds, recording.id] }; users.insert(updatedUser.id, updatedUser); return Ok(recording); } ), readRecordings: query([], Vec(Recording), () => { return recordings.values(); }), readRecordingById: query([Principal], Opt(Recording), (id) => { return recordings.get(id); }), deleteRecording: update( [Principal], Result(Recording, AudioRecorderError), (id) => { const recordingOpt = recordings.get(id); if ('None' in recordingOpt) { return Err({ RecordingDoesNotExist: id }); } const recording = recordingOpt.Some; const userOpt = users.get(recording.userId); if ('None' in userOpt) { return Err({ UserDoesNotExist: recording.userId }); } const user = userOpt.Some; const updatedUser: User = { ...user, recordingIds: user.recordingIds.filter( (recordingId) => recordingId.toText() !== recording.id.toText() ) }; users.insert(updatedUser.id, updatedUser); recordings.remove(id); return Ok(recording); } )\n}); function generateId(): Principal { const randomBytes = new Array(29) .fill(0) .map((_) => Math.floor(Math.random() * 256)); return Principal.fromUint8Array(Uint8Array.from(randomBytes));\n} The example above shows a very basic audio recording backend application. There are two types of entities that need to be stored, User and Recording. These are represented as Candid records. Each entity gets its own StableBTreeMap: import { blob, Canister, ic, Err, nat64, Ok, Opt, Principal, query, Record, Result, StableBTreeMap, text, update, Variant, Vec\n} from 'azle'; const User = Record({ id: Principal, createdAt: nat64, recordingIds: Vec(Principal), username: text\n});\ntype User = typeof User.tsType; const Recording = Record({ id: Principal, audio: blob, createdAt: nat64, name: text, userId: Principal\n});\ntype Recording = typeof Recording.tsType; const AudioRecorderError = Variant({ RecordingDoesNotExist: Principal, UserDoesNotExist: Principal\n});\ntype AudioRecorderError = typeof AudioRecorderError.tsType; let users = StableBTreeMap(0);\nlet recordings = StableBTreeMap(1); Notice that each StableBTreeMap has a unique memory id. You can begin to create basic database CRUD functionality by creating one StableBTreeMap per entity. It's up to you to create functionality for querying, filtering, and relations. StableBTreeMap is not a full-featured database solution, but a fundamental building block that may enable you to achieve more advanced database functionality. Demergent Labs plans to deeply explore database solutions on the IC in the future.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » TL;DR","id":"90","title":"TL;DR"},"91":{"body":"","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Caveats","id":"91","title":"Caveats"},"92":{"body":"It seems to be only some float64 values cannot be successfully stored and retrieved with a StableBTreeMap using stableJson because of this bug with JSON.parse: https://github.com/bellard/quickjs/issues/206","breadcrumbs":"Old Candid-based Documentation » Stable Structures » float64 values","id":"92","title":"float64 values"},"93":{"body":"Azle's Candid encoding/decoding implementation is currently not well optimized, and Candid may not be the most optimal encoding format overall, so you may experience heavy instruction usage when performing many StableBTreeMap operations in succession. A rough idea of the overhead from our preliminary testing is probably 1-2 million instructions for a full Candid encoding and decoding of values per StableBTreeMap operation. For these reasons we recommend using the stableJson Serializable object (the default) instead of CandidType Serializable objects.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » CandidType Performance","id":"93","title":"CandidType Performance"},"94":{"body":"Migrations must be performed manually by reading the values out of one StableBTreeMap and writing them into another. Once a StableBTreeMap is initialized to a specific memory id, that memory id cannot be changed unless the canister is completely wiped and initialized again.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Migrations","id":"94","title":"Migrations"},"95":{"body":"Canister values do not currently work with the default stableJson implementation. If you must persist Canisters, consider using the Canister CandidType object as your Serializable object in your StableBTreeMap, or create a custom replacer or reviver for stableJson that handles Canister.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Canister","id":"95","title":"Canister"},"96":{"body":"Examples: async_await bitcoin composite_queries cross_canister_calls cycles ethereum_json_rpc func_types heartbeat inline_types ledger_canister management_canister outgoing_http_requests threshold_ecdsa rejections timers tuple_types whoami Canisters are generally able to call the query or update methods of other canisters in any subnet. We refer to these types of calls as cross-canister calls. A cross-canister call begins with a definition of the canister to be called. Imagine a simple canister called token_canister: import { Canister, ic, nat64, Opt, Principal, StableBTreeMap, update\n} from 'azle'; let accounts = StableBTreeMap(0); export default Canister({ transfer: update([Principal, nat64], nat64, (to, amount) => { const from = ic.caller(); const fromBalance = getBalance(accounts.get(from)); const toBalance = getBalance(accounts.get(to)); accounts.insert(from, fromBalance - amount); accounts.insert(to, toBalance + amount); return amount; })\n}); function getBalance(accountOpt: Opt): nat64 { if ('None' in accountOpt) { return 0n; } else { return accountOpt.Some; }\n} Now that you have the canister definition, you can import and instantiate it in another canister: import { Canister, ic, nat64, Principal, update } from 'azle';\nimport TokenCanister from './token_canister'; const tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); If you don't have the actual definition of the token canister with the canister method implementations, you can always create your own canister definition without method implementations: import { Canister, ic, nat64, Principal, update } from 'azle'; const TokenCanister = Canister({ transfer: update([Principal, nat64], nat64)\n}); const tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); The IC guarantees that cross-canister calls will return. This means that, generally speaking, you will always receive a response from ic.call. If there are errors during the call, ic.call will throw. Wrapping your cross-canister call in a try...catch allows you to handle these errors. Let's add to our example code and explore adding some practical error-handling to stop people from stealing tokens. token_canister: import { Canister, ic, nat64, Opt, Principal, StableBTreeMap, update\n} from 'azle'; let accounts = StableBTreeMap(0); export default Canister({ transfer: update([Principal, nat64], nat64, (to, amount) => { const from = ic.caller(); const fromBalance = getBalance(accounts.get(from)); if (amount > fromBalance) { throw new Error(`${from} has an insufficient balance`); } const toBalance = getBalance(accounts.get(to)); accounts.insert(from, fromBalance - amount); accounts.insert(to, toBalance + amount); return amount; })\n}); function getBalance(accountOpt: Opt): nat64 { if ('None' in accountOpt) { return 0n; } else { return accountOpt.Some; }\n} payout_canister: import { Canister, ic, nat64, Principal, update } from 'azle';\nimport TokenCanister from './index'; const tokenCanister = TokenCanister( Principal.fromText('bkyz2-fmaaa-aaaaa-qaaaq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { try { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); } catch (error) { console.log(error); } return 0n; })\n}); Throwing will allow you to express error conditions and halt execution, but you may find embracing the Result variant as a better solution for error handling because of its composability and predictability. So far we have only shown a cross-canister call from an update method. Update methods can call other update methods or query methods (but not composite query methods as discussed below). If an update method calls a query method, that query method will be called in replicated mode. Replicated mode engages the consensus process, but for queries the state will still be discarded. Cross-canister calls can also be initiated from query methods. These are known as composite queries, and in Azle they are simply async query methods. Composite queries can call other composite query methods and regular query methods. Composite queries cannot call update methods. Here's an example of a composite query method: import { bool, Canister, ic, Principal, query } from 'azle'; const SomeCanister = Canister({ queryForBoolean: query([], bool)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ querySomeCanister: query([], bool, async () => { return await ic.call(someCanister.queryForBoolean); })\n}); You can expect cross-canister calls within the same subnet to take up to a few seconds to complete, and cross-canister calls across subnets take about double that time . Composite queries should be much faster, similar to query calls in latency. If you don't need to wait for your cross-canister call to return, you can use notify: import { Canister, ic, Principal, update, Void } from 'azle'; const SomeCanister = Canister({ receiveNotification: update([], Void)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ sendNotification: update([], Void, () => { return ic.notify(someCanister.receiveNotification); })\n}); If you need to send cycles with your cross-canister call, you can add cycles to the config object of ic.notify: import { Canister, ic, Principal, update, Void } from 'azle'; const SomeCanister = Canister({ receiveNotification: update([], Void)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ sendNotification: update([], Void, () => { return ic.notify(someCanister.receiveNotification, { cycles: 1_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Cross-canister » Cross-canister","id":"96","title":"Cross-canister"},"97":{"body":"This chapter is a work in progress.","breadcrumbs":"Old Candid-based Documentation » HTTP » HTTP","id":"97","title":"HTTP"},"98":{"body":"Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, query, Record, text, Tuple, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request: query([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » HTTP » Incoming HTTP requests","id":"98","title":"Incoming HTTP requests"},"99":{"body":"Examples: ethereum_json_rpc outgoing_http_requests import { Canister, ic, init, nat32, Principal, query, Some, StableBTreeMap, text, update\n} from 'azle';\nimport { HttpResponse, HttpTransformArgs, managementCanister\n} from 'azle/canisters/management'; let stableStorage = StableBTreeMap(0); export default Canister({ init: init([text], (ethereumUrl) => { stableStorage.insert('ethereumUrl', ethereumUrl); }), ethGetBalance: update([text], text, async (ethereumAddress) => { const urlOpt = stableStorage.get('ethereumUrl'); if ('None' in urlOpt) { throw new Error('ethereumUrl is not defined'); } const url = urlOpt.Some; const httpResponse = await ic.call(managementCanister.http_request, { args: [ { url, max_response_bytes: Some(2_000n), method: { post: null }, headers: [], body: Some( Buffer.from( JSON.stringify({ jsonrpc: '2.0', method: 'eth_getBalance', params: [ethereumAddress, 'earliest'], id: 1 }), 'utf-8' ) ), transform: Some({ function: [ic.id(), 'ethTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); return Buffer.from(httpResponse.body.buffer).toString('utf-8'); }), ethGetBlockByNumber: update([nat32], text, async (number) => { const urlOpt = stableStorage.get('ethereumUrl'); if ('None' in urlOpt) { throw new Error('ethereumUrl is not defined'); } const url = urlOpt.Some; const httpResponse = await ic.call(managementCanister.http_request, { args: [ { url, max_response_bytes: Some(2_000n), method: { post: null }, headers: [], body: Some( Buffer.from( JSON.stringify({ jsonrpc: '2.0', method: 'eth_getBlockByNumber', params: [`0x${number.toString(16)}`, false], id: 1 }), 'utf-8' ) ), transform: Some({ function: [ic.id(), 'ethTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); return Buffer.from(httpResponse.body.buffer).toString('utf-8'); }), ethTransform: query([HttpTransformArgs], HttpResponse, (args) => { return { ...args.response, headers: [] }; })\n});","breadcrumbs":"Old Candid-based Documentation » HTTP » Outgoing HTTP requests","id":"99","title":"Outgoing HTTP requests"}},"length":234,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}},"df":7,"docs":{"102":{"tf":1.4142135623730951},"142":{"tf":2.0},"166":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"134":{"tf":1.0},"16":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"x":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"6":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"1":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"'":{"*":{"'":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":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":{"85":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"34":{"tf":1.0}}}},"1":{"0":{"6":{"4":{"3":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"6":{"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":2,"docs":{"149":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"8":{"df":9,"docs":{"116":{"tf":2.449489742783178},"122":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"4":{":":{"3":{"5":{":":{"3":{"0":{".":{"4":{"3":{"3":{"5":{"0":{"1":{"9":{"8":{"0":{"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":{}},"6":{":":{"3":{"4":{".":{"6":{"5":{"2":{"5":{"8":{"7":{"4":{"1":{"2":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"_":{"1":{"4":{"1":{"_":{"1":{"8":{"3":{"_":{"4":{"6":{"0":{"_":{"4":{"6":{"9":{"_":{"2":{"3":{"1":{"_":{"7":{"3":{"1":{"_":{"6":{"8":{"7":{"_":{"3":{"0":{"3":{"_":{"7":{"1":{"5":{"_":{"8":{"8":{"4":{"_":{"1":{"0":{"5":{"_":{"7":{"2":{"7":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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.4142135623730951}},"t":{"1":{"4":{":":{"3":{"5":{":":{"3":{"1":{".":{"9":{"8":{"3":{"5":{"9":{"0":{"df":0,"docs":{},"z":{"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":{}},"5":{":":{"0":{"1":{":":{"3":{"9":{".":{"1":{"9":{"4":{"3":{"7":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"_":{"4":{"4":{"6":{"_":{"7":{"4":{"4":{"_":{"0":{"7":{"3":{"_":{"7":{"0":{"9":{"_":{"5":{"5":{"1":{"_":{"6":{"1":{"5":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"157":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"166":{"tf":1.7320508075688772},"183":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":2.0},"34":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"2":{".":{"0":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"7":{"1":{"8":{"2":{"8":{"1":{"8":{"2":{"8":{"4":{"5":{"9":{"0":{"4":{"5":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"233":{"tf":1.0}}},"4":{"df":4,"docs":{"0":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"59":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"62":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"5":{"4":{"df":1,"docs":{"90":{"tf":1.0}}},"5":{"df":2,"docs":{"154":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"4":{"7":{"_":{"4":{"8":{"3":{"_":{"6":{"4":{"7":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"88":{"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":9,"docs":{"108":{"tf":1.0},"166":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"34":{"tf":1.0},"87":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"a":{"a":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"7":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}},"u":{"a":{"a":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"3":{".":{"1":{"4":{"1":{"5":{"9":{"2":{"7":{"df":2,"docs":{"145":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"7":{"6":{"7":{"df":2,"docs":{"150":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"179":{"tf":1.0},"210":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"0":{"_":{"2":{"8":{"2":{"_":{"3":{"6":{"6":{"_":{"9":{"2":{"0":{"_":{"9":{"3":{"8":{"_":{"4":{"6":{"3":{"_":{"4":{"6":{"3":{"_":{"3":{"7":{"4":{"_":{"6":{"0":{"7":{"_":{"4":{"3":{"1":{"_":{"7":{"6":{"8":{"_":{"2":{"1":{"1":{"_":{"4":{"5":{"5":{"df":2,"docs":{"153":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"153":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"6":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":4,"docs":{"166":{"tf":1.7320508075688772},"18":{"tf":1.0},"233":{"tf":1.0},"34":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.0}}},"2":{"df":1,"docs":{"140":{"tf":1.0}}},"_":{"2":{"9":{"4":{"_":{"9":{"6":{"7":{"_":{"2":{"9":{"5":{"df":2,"docs":{"156":{"tf":1.7320508075688772},"88":{"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":5,"docs":{"233":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}},"5":{"0":{"0":{"df":1,"docs":{"32":{"tf":1.0}}},"2":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"99":{"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":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"34":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"a":{"a":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"2":{"6":{"9":{"2":{"3":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"1":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"_":{"5":{"3":{"5":{"df":2,"docs":{"155":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"a":{"a":{"a":{"a":{"df":3,"docs":{"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"6":{"c":{"3":{"5":{"5":{"8":{"a":{"a":{"d":{"2":{"4":{"2":{"2":{"4":{"8":{"5":{"2":{"a":{"9":{"5":{"8":{"2":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"1":{"7":{"8":{"4":{"0":{"2":{"c":{"b":{"3":{"6":{"7":{"9":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"32":{"tf":1.0},"99":{"tf":2.0}}},"9":{"0":{"0":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"19":{"tf":1.0}}},"6":{"df":3,"docs":{"61":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"_":{"2":{"2":{"3":{"_":{"3":{"7":{"2":{"_":{"0":{"3":{"6":{"_":{"8":{"5":{"4":{"_":{"7":{"7":{"5":{"_":{"8":{"0":{"7":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"152":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"6":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}},"_":{"df":1,"docs":{"85":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"17":{"tf":2.0},"23":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}}},"a":{"a":{"a":{"a":{"a":{"df":15,"docs":{"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"147":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"73":{"tf":2.0},"79":{"tf":2.0},"8":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"96":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"q":{"df":5,"docs":{"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"b":{"a":{"df":5,"docs":{"134":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{},"q":{"df":3,"docs":{"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"163":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"90":{"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":3,"docs":{"22":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"116":{"tf":1.7320508075688772},"117":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"}":{"$":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"147":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"33":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"df":2,"docs":{"82":{"tf":1.0},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":1,"docs":{"88":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"22":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"215":{"tf":1.0},"58":{"tf":3.7416573867739413},"61":{"tf":1.4142135623730951},"67":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"j":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"52":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"96":{"tf":3.872983346207417}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"217":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"32":{"tf":2.8284271247461903}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"64":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"144":{"tf":2.0},"162":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":21,"docs":{"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.0},"13":{"tf":1.0},"167":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.0},"58":{"tf":3.4641016151377544},"59":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"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":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"'":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":9,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"58":{"tf":1.0}},"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":{"3":{"tf":1.0},"58":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":21,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":4.123105625617661},"59":{"tf":2.23606797749979},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"80":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"y":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"1":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"2":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"3":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"4":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":28,"docs":{"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":2.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"2":{"9":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"0":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"(":{"(":{"a":{"c":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"147":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":3.4641016151377544},"23":{"tf":1.0},"36":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"96":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"17":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"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":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"180":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"90":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"90":{"tf":2.6457513110645907}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":2.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"233":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0}}}},"df":8,"docs":{"40":{"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},"59":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":2.449489742783178}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":2.23606797749979},"38":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"58":{"tf":1.7320508075688772},"85":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":3.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":2.0},"96":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"192":{"tf":1.0},"215":{"tf":1.0}}},"y":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":162,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"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":1.0},"139":{"tf":1.0},"14":{"tf":2.0},"140":{"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.8284271247461903},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":2.0},"24":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":3.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":3.0},"69":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":2.0},"90":{"tf":2.8284271247461903},"96":{"tf":3.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":4,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"193":{"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":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":2.23606797749979},"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"@":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}}},"df":4,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"64":{"tf":2.6457513110645907},"66":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"37":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"1":{"0":{"0":{"2":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"6":{"4":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"2":{"8":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"5":{"5":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"1":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"6":{"1":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"43":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"37":{"tf":1.0},"48":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"49":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"d":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"58":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"59":{"tf":1.0},"7":{"tf":1.0}}},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"103":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":2.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"59":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"166":{"tf":1.0},"59":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"41":{"tf":1.0},"63":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"90":{"tf":1.0},"96":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"96":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"58":{"tf":2.6457513110645907}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"a":{"df":6,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"105":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"26":{"tf":1.0},"60":{"tf":1.0},"96":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":2.0},"58":{"tf":2.23606797749979},"78":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":12,"docs":{"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"120":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"58":{"tf":1.0}},"o":{"b":{"df":31,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"141":{"tf":1.0},"142":{"tf":3.4641016151377544},"144":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178},"90":{"tf":2.23606797749979},"98":{"tf":2.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"58":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":7,"docs":{"184":{"tf":2.0},"185":{"tf":2.0},"205":{"tf":1.0},"23":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.7320508075688772},"88":{"tf":1.0}}},"l":{"df":29,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"126":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":1.0},"143":{"tf":3.4641016151377544},"159":{"tf":1.7320508075688772},"163":{"tf":2.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"199":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"57":{"tf":1.0},"59":{"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":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"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":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"g":{"df":4,"docs":{"110":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":2.0},"193":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"36":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"33":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":2.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"2":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"6":{"9":{"df":0,"docs":{},"f":{"4":{"4":{"2":{"9":{"9":{"8":{"df":0,"docs":{},"e":{"4":{"c":{"d":{"a":{"4":{"6":{"1":{"9":{"1":{"6":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"a":{"9":{"b":{"c":{"9":{"1":{"4":{"1":{"8":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"\"":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"0":{"tf":1.0},"120":{"tf":1.0},"134":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"96":{"tf":2.449489742783178}}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"147":{"tf":1.0},"17":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":2.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"98":{"tf":2.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":70,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":2.449489742783178},"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},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":2.0},"181":{"tf":1.0},"187":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":2.8284271247461903},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"24":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":2.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979},"67":{"tf":3.1622776601683795},"72":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":3.3166247903554},"87":{"tf":3.0},"88":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":4.58257569495584}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"116":{"tf":1.0},"125":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":49,"docs":{"108":{"tf":1.7320508075688772},"11":{"tf":1.0},"111":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"19":{"tf":1.0},"193":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":2.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":3.4641016151377544},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":173,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":2.449489742783178},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"150":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":2.23606797749979},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"170":{"tf":2.0},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"19":{"tf":2.8284271247461903},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"23":{"tf":3.605551275463989},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"24":{"tf":2.8284271247461903},"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"36":{"tf":2.449489742783178},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":3.0},"59":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"67":{"tf":3.0},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":2.23606797749979},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.449489742783178},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":3.3166247903554},"87":{"tf":4.0},"88":{"tf":3.0},"9":{"tf":1.7320508075688772},"90":{"tf":2.6457513110645907},"94":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":6.324555320336759},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":10,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"19":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"193":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"52":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"195":{"tf":1.0},"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"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":{"31":{"tf":1.0}}}}}}},"i":{"d":{"df":14,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":2.23606797749979},"231":{"tf":1.0},"232":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"52":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"159":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"144":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.0},"233":{"tf":1.0},"58":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"3":{"tf":1.0},"52":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.0}},"k":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"54":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"174":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"167":{"tf":1.0},"179":{"tf":1.4142135623730951}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"n":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":15,"docs":{"215":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"7":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"31":{"tf":1.0},"62":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":5,"docs":{"112":{"tf":1.0},"115":{"tf":2.0},"21":{"tf":1.0},"25":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"215":{"tf":1.0},"3":{"tf":1.0},"6":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"58":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0},"58":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}},"u":{"d":{"df":3,"docs":{"58":{"tf":3.3166247903554},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":19,"docs":{"116":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"215":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":2.6457513110645907},"61":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"78":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"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":{"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"31":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"233":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.449489742783178},"58":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"41":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.449489742783178},"78":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}},"x":{"df":2,"docs":{"58":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"120":{"tf":1.0},"139":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"103":{"tf":1.4142135623730951},"112":{"tf":1.0},"34":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"39":{"tf":1.0},"52":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"i":{"d":{"df":3,"docs":{"29":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0}}}}}},"`":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"102":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"96":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":23,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}}}}}}}},"df":6,"docs":{"232":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"df":36,"docs":{"102":{"tf":3.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"184":{"tf":2.8284271247461903},"185":{"tf":2.8284271247461903},"19":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":2.8284271247461903},"204":{"tf":1.7320508075688772},"210":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"23":{"tf":2.8284271247461903},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":4.898979485566356},"96":{"tf":4.0},"98":{"tf":2.8284271247461903},"99":{"tf":2.449489742783178}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"165":{"tf":1.0},"39":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"214":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":2.0},"19":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"11":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":2.6457513110645907},"108":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"167":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0},"87":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"103":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":2.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":2.449489742783178},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"120":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"163":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":3.3166247903554}}}}},"u":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"52":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":10,"docs":{"11":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":31,"docs":{"103":{"tf":3.1622776601683795},"116":{"tf":2.449489742783178},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":2.23606797749979},"132":{"tf":2.23606797749979},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979}}}},"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":{"174":{"tf":1.0}}}}}}}},"df":17,"docs":{"108":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"144":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}}},"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"87":{"tf":2.449489742783178}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"233":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":31,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":123,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.8284271247461903},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"23":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"96":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"56":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"31":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"o":{"df":0,"docs":{},"y":{"df":32,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":2.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"3":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":2.23606797749979},"55":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"7":{"tf":2.6457513110645907},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"76":{"tf":2.23606797749979},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":2.0},"9":{"tf":2.449489742783178},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"195":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"176":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"215":{"tf":1.4142135623730951},"34":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":3.1622776601683795},"74":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":2.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"11":{"tf":2.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"233":{"tf":1.0},"36":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"6":{".":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":52,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"2":{"tf":2.0},"3":{"tf":2.0},"36":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.7320508075688772},"52":{"tf":1.0},"6":{"tf":2.449489742783178},"62":{"tf":2.0},"64":{"tf":2.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.6457513110645907},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":2.0},"85":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"i":{"a":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"l":{"\\":{"0":{"0":{"\\":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"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":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"103":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"114":{"tf":1.0},"22":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"83":{"tf":1.0}}}},"y":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"181":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"105":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"59":{"tf":1.0},"67":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"32":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"31":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"48":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"87":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"33":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"103":{"tf":1.0},"233":{"tf":1.4142135623730951},"31":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"67":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"59":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"88":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"113":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}}}},"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"136":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":3.605551275463989},"67":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"7":{"tf":1.0},"90":{"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":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"167":{"tf":1.0},"169":{"tf":1.4142135623730951},"18":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"2":{"tf":1.0},"62":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"108":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"58":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"10":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"58":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"87":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"159":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"163":{"tf":1.0},"90":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.7320508075688772},"144":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":3.605551275463989},"32":{"tf":3.3166247903554},"33":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":2.449489742783178}}}}}},"s":{"2":{"0":{"2":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"63":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"19":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":10,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.0},"27":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"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":{"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":113,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"90":{"tf":2.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"166":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"175":{"tf":1.0},"181":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.0},"67":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"96":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"59":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"59":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"215":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772},"93":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"87":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":120,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"96":{"tf":2.8284271247461903},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"s":{"df":9,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"215":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"16":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"23":{"tf":2.449489742783178},"32":{"tf":2.449489742783178},"4":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"36":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"144":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"126":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"87":{"tf":1.0},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"p":{":":{"/":{"/":{"d":{"df":0,"docs":{},"f":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"13":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"103":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"83":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":20,"docs":{"0":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"23":{"tf":1.7320508075688772},"3":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"7":{"tf":1.0},"82":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}}}}},"l":{"(":{"0":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"198":{"tf":1.0},"90":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"29":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.0},"39":{"tf":1.0}}}},"d":{"df":6,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"165":{"tf":2.23606797749979}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"147":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}},"x":{"df":2,"docs":{"10":{"tf":1.0},"108":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"141":{"tf":1.0},"145":{"tf":3.7416573867739413},"88":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":3.7416573867739413},"88":{"tf":2.6457513110645907},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}},"m":{"a":{"a":{"a":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":28,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"df":6,"docs":{"2":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"a":{"a":{"a":{"df":5,"docs":{"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"106":{"tf":1.0}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":2.23606797749979}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"4":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"df":5,"docs":{"115":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"n":{"c":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"120":{"tf":1.0},"186":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":6,"docs":{"141":{"tf":1.0},"147":{"tf":3.3166247903554},"184":{"tf":1.0},"185":{"tf":1.0},"88":{"tf":2.6457513110645907},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"147":{"tf":1.0}}},"df":23,"docs":{"102":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"16":{"tf":1.0},"161":{"tf":1.4142135623730951},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"205":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"87":{"tf":1.0},"90":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"215":{"tf":1.0},"29":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":13,"docs":{"103":{"tf":1.0},"18":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"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":1,"docs":{"196":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":2,"docs":{"59":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"191":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.4142135623730951}}},"df":1,"docs":{"153":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"m":{"b":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"85":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"i":{"b":{"df":6,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"54":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":8,"docs":{"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"85":{"tf":1.0},"87":{"tf":1.0}},"o":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"58":{"tf":3.3166247903554},"60":{"tf":1.0}}}},"w":{"df":4,"docs":{"218":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"233":{"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":{"58":{"tf":1.0},"87":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"69":{"tf":1.0}}}}}},"h":{"1":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":6,"docs":{"109":{"tf":1.0},"14":{"tf":1.0},"32":{"tf":4.242640687119285},"90":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"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":1,"docs":{"10":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"18":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"34":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.23606797749979},"209":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"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":6,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"233":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"164":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"8":{"tf":1.0}}}},"p":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"233":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":15,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":8,"docs":{"103":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"34":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"108":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"61":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":2,"docs":{"22":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"233":{"tf":1.0},"29":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"17":{"tf":1.0}}}}}}}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"/":{"?":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"98":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":5,"docs":{"182":{"tf":1.0},"185":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"df":9,"docs":{"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"195":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"98":{"tf":1.0}}}}}}}}}},"df":28,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":2.0}}}}}}}}},"s":{":":{"/":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"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":{"/":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"2":{"0":{"6":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"62":{"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":{"d":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"k":{"c":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"6":{"4":{"2":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"0":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"c":{"'":{"df":2,"docs":{"59":{"tf":1.0},"85":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"102":{"tf":1.0},"125":{"tf":1.0},"163":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"96":{"tf":2.0}},"l":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"123":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"137":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"140":{"tf":1.0}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"173":{"tf":1.0},"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":2,"docs":{"128":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"d":{"1":{"2":{"8":{"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":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"163":{"tf":1.0},"96":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"135":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"178":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"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":{"136":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.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":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"102":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"102":{"tf":1.0},"232":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"227":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"223":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"180":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"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":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"0":{"5":{"0":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":16,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"136":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"25":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":99,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":5.477225575051661},"59":{"tf":3.0},"60":{"tf":2.6457513110645907},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":3.0},"99":{"tf":1.0}},"p":{"df":14,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0}}},"r":{"c":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"25":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"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":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"\"":{">":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":9,"docs":{"161":{"tf":2.23606797749979},"167":{"tf":1.0},"173":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":4.58257569495584},"94":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"52":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"58":{"tf":1.7320508075688772},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":132,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"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.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.7320508075688772},"90":{"tf":2.6457513110645907},"96":{"tf":3.3166247903554},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":1,"docs":{"144":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"29":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"106":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.7320508075688772},"90":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"83":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"19":{"tf":1.0},"233":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"63":{"tf":1.0},"67":{"tf":1.0}}}},"df":2,"docs":{"85":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":7,"docs":{"58":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0}}}},"o":{"df":2,"docs":{"23":{"tf":1.0},"8":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"64":{"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":1,"docs":{"58":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"101":{"tf":1.7320508075688772},"120":{"tf":2.0},"182":{"tf":1.0},"186":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"i":{"df":6,"docs":{"186":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"120":{"tf":1.0},"219":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"33":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"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":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"182":{"tf":1.0},"187":{"tf":1.0},"33":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"117":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"2":{"tf":2.6457513110645907},"206":{"tf":1.0},"3":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":3.0},"62":{"tf":2.6457513110645907},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"82":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"147":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"166":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.7320508075688772},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"1":{"6":{"df":3,"docs":{"141":{"tf":1.0},"150":{"tf":3.7416573867739413},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"3":{"2":{"df":4,"docs":{"141":{"tf":1.0},"151":{"tf":3.7416573867739413},"166":{"tf":3.4641016151377544},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"141":{"tf":1.0},"152":{"tf":3.7416573867739413},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"141":{"tf":1.0},"149":{"tf":3.7416573867739413},"88":{"tf":2.6457513110645907}}},"df":4,"docs":{"140":{"tf":2.0},"141":{"tf":1.0},"148":{"tf":3.7416573867739413},"88":{"tf":3.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.0},"114":{"tf":1.7320508075688772},"58":{"tf":2.6457513110645907}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"n":{"d":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"f":{"a":{"c":{"df":4,"docs":{"73":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"32":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"20":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"58":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"61":{"tf":1.0},"85":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"10":{"tf":1.4142135623730951},"106":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"82":{"tf":1.0}}}}},"t":{"'":{"df":7,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"80":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"107":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.449489742783178},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"s":{"df":5,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"90":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":1.7320508075688772},"90":{"tf":1.0},"92":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"90":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"16":{"tf":1.4142135623730951},"53":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.7320508075688772}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":7,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":9,"docs":{"163":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":2.6457513110645907},"23":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"87":{"tf":3.1622776601683795},"88":{"tf":1.0},"90":{"tf":3.3166247903554}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"6":{"tf":2.0},"75":{"tf":2.0}}}},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"147":{"tf":1.0},"58":{"tf":1.0}},"n":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"56":{"tf":1.7320508075688772},"90":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}},"m":{"df":0,"docs":{},"j":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"34":{"tf":1.0},"59":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"96":{"tf":1.0}},"y":{"=":{"1":{"0":{"1":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"108":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"112":{"tf":1.0},"115":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"119":{"tf":1.0},"222":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"29":{"tf":1.0},"53":{"tf":1.0}}}},"t":{"'":{"df":6,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"106":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":1.0},"233":{"tf":2.0},"34":{"tf":3.0},"58":{"tf":2.0},"59":{"tf":2.23606797749979},"85":{"tf":2.449489742783178},"87":{"tf":2.8284271247461903}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":10,"docs":{"2":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"k":{"df":2,"docs":{"103":{"tf":1.0},"20":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"o":{"a":{"d":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"216":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":2.449489742783178},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"8":{"tf":1.0}}},"t":{"df":3,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"106":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"59":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":4,"docs":{"140":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{";":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"26":{"tf":1.0},"38":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.7320508075688772},"62":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"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":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"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":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"169":{"tf":1.0}}}}}}}},"df":5,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"36":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"p":{"(":{"(":{"_":{"df":1,"docs":{"90":{"tf":1.0}}},"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":2.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"h":{".":{"df":2,"docs":{"146":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"145":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}}},"y":{"b":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"218":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"87":{"tf":2.0},"90":{"tf":3.872983346207417},"94":{"tf":1.4142135623730951}}},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.7320508075688772},"22":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951},"67":{"tf":2.8284271247461903},"72":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}},"df":1,"docs":{"210":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"df":39,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"147":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.4142135623730951},"205":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"36":{"tf":2.23606797749979},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":2.6457513110645907},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":3.1622776601683795},"86":{"tf":1.0},"87":{"tf":2.8284271247461903},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":4.123105625617661},"98":{"tf":1.0},"99":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"b":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"34":{"tf":1.4142135623730951}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"108":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"196":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":7,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"107":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"52":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"193":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}}}},"s":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}},"g":{"df":7,"docs":{"116":{"tf":2.449489742783178},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.7320508075688772},"87":{"tf":1.0}},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"v":{"df":1,"docs":{"52":{"tf":1.0}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"78":{"tf":3.0},"79":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":2.0}}}},"t":{"1":{"6":{"df":6,"docs":{"141":{"tf":1.0},"155":{"tf":3.7416573867739413},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"141":{"tf":1.0},"156":{"tf":3.7416573867739413},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":2.6457513110645907},"99":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{">":{"(":{"0":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"141":{"tf":1.0},"157":{"tf":3.7416573867739413},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":2.8284271247461903},"96":{"tf":4.358898943540674}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"154":{"tf":3.7416573867739413},"219":{"tf":1.4142135623730951},"88":{"tf":3.0},"90":{"tf":2.6457513110645907}}},"df":7,"docs":{"119":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"141":{"tf":1.0},"153":{"tf":3.7416573867739413},"171":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.23606797749979},"61":{"tf":1.4142135623730951}},"e":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":5.196152422706632}}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":5.196152422706632}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"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":{"233":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"103":{"tf":1.0},"115":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"114":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":1.0}}}}},"w":{"df":11,"docs":{"139":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":2.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":3.4641016151377544}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"n":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":2.449489742783178}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"2":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"159":{"tf":2.0},"174":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"144":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}},"i":{"df":5,"docs":{"116":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"96":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"134":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"df":8,"docs":{"115":{"tf":1.0},"215":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"106":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"217":{"tf":1.4142135623730951},"3":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}},"x":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"158":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.0},"158":{"tf":3.872983346207417},"159":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"165":{"tf":2.6457513110645907},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"88":{"tf":3.605551275463989},"99":{"tf":1.4142135623730951}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":20,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"172":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.23606797749979},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"90":{"tf":3.3166247903554},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"222":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":2,"docs":{"163":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"l":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"df":7,"docs":{"15":{"tf":1.0},"165":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"106":{"tf":1.0},"56":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"109":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"159":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"6":{"4":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"159":{"tf":1.0}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":2.0}}}}}}}},"df":11,"docs":{"141":{"tf":1.0},"159":{"tf":2.8284271247461903},"174":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"111":{"tf":1.0},"233":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":1,"docs":{"58":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"83":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0},"27":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"178":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"49":{"tf":1.0},"62":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":1,"docs":{"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":2.8284271247461903}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":2.23606797749979},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"67":{"tf":1.0},"85":{"tf":2.23606797749979},"88":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"58":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"14":{"tf":1.0},"144":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"23":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{"$":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0}}}},"y":{"df":1,"docs":{"58":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"135":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"r":{"df":5,"docs":{"183":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"163":{"tf":1.0},"167":{"tf":1.0},"177":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"24":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"186":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"85":{"tf":1.0},"87":{"tf":2.0},"90":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}},"n":{"df":1,"docs":{"90":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.0},"215":{"tf":2.23606797749979},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772}}}}}}},"o":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"18":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":6,"docs":{"182":{"tf":1.0},"188":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"59":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"182":{"tf":1.0},"189":{"tf":1.0},"32":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":3,"docs":{"147":{"tf":1.0},"160":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":3,"docs":{"134":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":29,"docs":{"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"134":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.7320508075688772},"160":{"tf":4.0},"161":{"tf":2.23606797749979},"163":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"58":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"90":{"tf":3.872983346207417},"96":{"tf":2.8284271247461903},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":2.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"167":{"tf":1.0},"178":{"tf":1.7320508075688772},"32":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":1,"docs":{"148":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}},"df":1,"docs":{"153":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"m":{"b":{"df":1,"docs":{"166":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"90":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"192":{"tf":1.0},"194":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":2.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"96":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"58":{"tf":1.0}},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"31":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":87,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"97":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{".":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"10":{"tf":1.4142135623730951},"105":{"tf":1.0},"11":{"tf":1.4142135623730951},"17":{"tf":1.0},"216":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"75":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":14,"docs":{"159":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.449489742783178},"193":{"tf":1.0},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"36":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772},"60":{"tf":2.0}}}}},"df":1,"docs":{"52":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"0":{"tf":1.0},"192":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"195":{"tf":1.0},"207":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"217":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"q":{"a":{"a":{"a":{"df":0,"docs":{},"q":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":73,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.8284271247461903},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":2.23606797749979},"160":{"tf":2.0},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":2.6457513110645907},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"205":{"tf":1.0},"219":{"tf":2.449489742783178},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":3.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":4.898979485566356},"87":{"tf":3.0},"88":{"tf":2.8284271247461903},"90":{"tf":3.3166247903554},"96":{"tf":4.358898943540674},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"y":{"(":{"[":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"142":{"tf":1.0},"168":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"98":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"156":{"tf":1.0},"222":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"157":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.0}}},"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"160":{"tf":1.0},"176":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"164":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}},"j":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0}},"s":{"_":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"18":{"tf":1.0},"60":{"tf":1.0}}}},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"195":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"116":{"tf":2.449489742783178},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":3.1622776601683795}}}}}}},"d":{"df":9,"docs":{"218":{"tf":1.4142135623730951},"222":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"90":{"tf":2.0},"94":{"tf":1.0}},"i":{"df":3,"docs":{"59":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"58":{"tf":1.0},"93":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"147":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":2,"docs":{"128":{"tf":1.0},"130":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"15":{"tf":1.0},"166":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":13,"docs":{"102":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"161":{"tf":3.0},"184":{"tf":2.449489742783178},"185":{"tf":2.449489742783178},"204":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"59":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":3.0},"90":{"tf":4.358898943540674},"98":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"1":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"90":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":1,"docs":{"90":{"tf":2.449489742783178}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":8,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"116":{"tf":1.7320508075688772},"120":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.4142135623730951},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"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":{"59":{"tf":1.7320508075688772}}}}}}}}}}},"df":3,"docs":{"233":{"tf":1.0},"34":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"219":{"tf":1.0},"58":{"tf":2.449489742783178},"78":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"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":1,"docs":{"102":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"'":{"df":2,"docs":{"178":{"tf":1.0},"31":{"tf":1.0}}},"df":16,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"6":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":2.0},"75":{"tf":2.23606797749979},"76":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"58":{"tf":2.449489742783178},"60":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":3,"docs":{"116":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":2,"docs":{"216":{"tf":1.0},"54":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"52":{"tf":1.0},"83":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"72":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"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":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":18,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":2.449489742783178},"34":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"144":{"tf":1.0},"22":{"tf":1.7320508075688772},"36":{"tf":1.0},"52":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"b":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"d":{"b":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"14":{"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":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"141":{"tf":1.0},"162":{"tf":3.605551275463989},"18":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"20":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"103":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":9,"docs":{"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.0},"96":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":2.0}}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":2,"docs":{"53":{"tf":1.0},"67":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":6,"docs":{"17":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"110":{"tf":1.0},"58":{"tf":1.4142135623730951},"72":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":104,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":3.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"67":{"tf":2.23606797749979},"85":{"tf":2.449489742783178},"87":{"tf":2.6457513110645907},"88":{"tf":1.7320508075688772},"90":{"tf":5.196152422706632},"96":{"tf":3.872983346207417},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"v":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"f":{"df":1,"docs":{"10":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"33":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"58":{"tf":2.0},"59":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"36":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"41":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"52":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":27,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"52":{"tf":1.0},"80":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"216":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"59":{"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":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"10":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":1,"docs":{"52":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"147":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"34":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":2.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"204":{"tf":1.0},"210":{"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":85,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"105":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":2.0},"60":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"13":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"k":{"df":1,"docs":{"59":{"tf":1.0}}},"m":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}},"n":{"df":1,"docs":{"87":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"d":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"132":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"103":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"58":{"tf":1.0},"96":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"144":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.4142135623730951},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"108":{"tf":1.0},"90":{"tf":3.4641016151377544},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}}}}}}}},"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":4.0},"32":{"tf":1.0}}}},"i":{"c":{"df":28,"docs":{"115":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"88":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":22,"docs":{"14":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"191":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"231":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"120":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"0":{".":{"3":{"9":{".":{"7":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"l":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"103":{"tf":2.449489742783178},"63":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"5":{"tf":1.0},"96":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"113":{"tf":1.0},"195":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"210":{"tf":2.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}}}}},"df":2,"docs":{"210":{"tf":1.0},"58":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"58":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"109":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"215":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":6,"docs":{"53":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"102":{"tf":2.0},"58":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"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":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"59":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"116":{"tf":1.0},"119":{"tf":1.0},"19":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"223":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"233":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"0":{"5":{"0":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"2":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"159":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.4142135623730951},"96":{"tf":3.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"19":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"60":{"tf":1.0},"96":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":10,"docs":{"10":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"78":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"217":{"tf":1.0},"4":{"tf":1.0}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"233":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"111":{"tf":1.0},"218":{"tf":2.6457513110645907},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":3.1622776601683795}},"e":{"6":{"4":{"df":5,"docs":{"218":{"tf":2.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"225":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"227":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}}}}},"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":2,"docs":{"219":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"90":{"tf":2.0},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"df":12,"docs":{"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"219":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":4.795831523312719},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"110":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"223":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"33":{"tf":1.0},"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":2.6457513110645907},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.6457513110645907},"82":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"181":{"tf":1.0},"215":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":3.0},"63":{"tf":1.0},"67":{"tf":2.0},"75":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"96":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"18":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"102":{"tf":2.449489742783178}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"10":{"tf":1.0},"181":{"tf":1.0},"6":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"219":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"110":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":2.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":12,"docs":{"147":{"tf":1.7320508075688772},"164":{"tf":2.23606797749979},"168":{"tf":1.0},"169":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.0},"67":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"108":{"tf":1.0},"11":{"tf":1.7320508075688772},"16":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"113":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":3.0},"67":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":5,"docs":{"2":{"tf":1.0},"52":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"140":{"tf":1.0},"31":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"88":{"tf":1.0}}},"3":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"233":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"166":{"tf":1.0}},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":2.0},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"193":{"tf":1.0}}},"df":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":{"40":{"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},"59":{"tf":1.4142135623730951},"74":{"tf":1.0},"93":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{">":{"(":{"0":{"df":3,"docs":{"87":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":2.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"141":{"tf":1.0},"147":{"tf":2.8284271247461903},"161":{"tf":1.7320508075688772},"163":{"tf":2.6457513110645907},"164":{"tf":3.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"178":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":2.6457513110645907},"185":{"tf":2.6457513110645907},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"198":{"tf":1.0},"219":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":3.0},"85":{"tf":2.449489742783178},"87":{"tf":3.4641016151377544},"88":{"tf":3.4641016151377544},"90":{"tf":3.7416573867739413},"98":{"tf":2.6457513110645907},"99":{"tf":1.7320508075688772}}}}},"f":{"df":0,"docs":{},"j":{"df":1,"docs":{"4":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"67":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}},"k":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}},"r":{"d":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"109":{"tf":1.0},"58":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"77":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":9,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"181":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":2.449489742783178},"8":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"w":{"df":7,"docs":{"126":{"tf":1.0},"144":{"tf":1.4142135623730951},"187":{"tf":1.0},"32":{"tf":1.4142135623730951},"87":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"166":{"tf":1.0},"22":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"87":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"58":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"59":{"tf":1.7320508075688772},"96":{"tf":1.0}},"r":{"df":11,"docs":{"102":{"tf":1.7320508075688772},"111":{"tf":1.0},"120":{"tf":1.0},"209":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"25":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"102":{"tf":3.3166247903554},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"1":{".":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":2.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":2.23606797749979},"96":{"tf":3.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"0":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"1":{".":{"7":{"3":{".":{"0":{"df":1,"docs":{"52":{"tf":1.0}}},"df":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":{"2":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"df":1,"docs":{"18":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"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":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}},"k":{"df":4,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"18":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"58":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"167":{"tf":1.0},"181":{"tf":1.7320508075688772},"87":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":31,"docs":{"102":{"tf":1.0},"11":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"y":{".":{".":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"63":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.7320508075688772},"219":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.0},"36":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":7,"docs":{"113":{"tf":1.0},"147":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0}}}},"y":{"a":{"a":{"a":{"df":5,"docs":{"134":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":48,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"219":{"tf":1.4142135623730951},"233":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":3.872983346207417},"96":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":7,"docs":{"102":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"219":{"tf":1.4142135623730951},"90":{"tf":2.8284271247461903}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"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":5,"docs":{"215":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":31,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"85":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"[":{"8":{"3":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"6":{"8":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"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":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"102":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"142":{"tf":1.4142135623730951},"166":{"tf":1.0},"90":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"r":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"109":{"tf":1.0},"215":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"78":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"57":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"105":{"tf":1.0},"55":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"58":{"tf":1.0}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":72,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"179":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"191":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":2.8284271247461903},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":4.58257569495584},"88":{"tf":2.449489742783178},"90":{"tf":2.23606797749979},"96":{"tf":4.123105625617661},"99":{"tf":1.0}},"e":{"(":{"[":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"179":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"231":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"221":{"tf":1.0},"224":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"225":{"tf":1.0},"228":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"191":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"67":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"90":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"214":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"179":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"83":{"tf":1.0},"90":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":12,"docs":{"13":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"99":{"tf":2.0}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"110":{"tf":1.0},"59":{"tf":1.7320508075688772},"93":{"tf":1.0}}}},"df":56,"docs":{"0":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"147":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":2.23606797749979},"192":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"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},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"90":{"tf":2.8284271247461903},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}}},">":{"(":{"0":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"90":{"tf":2.23606797749979}}}}}}}}}}}}}},"df":5,"docs":{"161":{"tf":3.1622776601683795},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"90":{"tf":4.358898943540674}},"i":{"d":{"df":1,"docs":{"90":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"161":{"tf":2.23606797749979},"90":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"90":{"tf":2.449489742783178}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"v":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":21,"docs":{"102":{"tf":1.0},"110":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"147":{"tf":1.0},"159":{"tf":1.4142135623730951},"163":{"tf":1.0},"219":{"tf":2.6457513110645907},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"67":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"87":{"tf":3.7416573867739413},"88":{"tf":2.0},"90":{"tf":4.358898943540674},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},">":{"(":{"0":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"111":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.449489742783178},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"140":{"tf":2.23606797749979},"141":{"tf":1.0},"159":{"tf":1.7320508075688772},"163":{"tf":1.0},"165":{"tf":3.3166247903554},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"90":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"60":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.6457513110645907},"88":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"141":{"tf":1.0},"142":{"tf":2.0},"166":{"tf":3.0},"184":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.6457513110645907},"90":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"90":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"3":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"20":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"87":{"tf":3.4641016151377544},"96":{"tf":2.449489742783178}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}},"s":{"df":2,"docs":{"58":{"tf":1.0},"66":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"105":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.7320508075688772}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"144":{"tf":1.4142135623730951},"18":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"m":{"3":{"2":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"106":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":2.23606797749979},"58":{"tf":3.1622776601683795},"61":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"144":{"tf":1.0},"15":{"tf":1.0},"58":{"tf":1.7320508075688772},"77":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":1,"docs":{"59":{"tf":1.0}}},"v":{"df":2,"docs":{"67":{"tf":1.0},"72":{"tf":1.0}}}},"b":{"3":{"df":1,"docs":{"56":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"3":{"tf":1.0},"34":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"36":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"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":{"0":{"tf":1.0},"176":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":8,"docs":{"120":{"tf":1.0},"125":{"tf":1.0},"173":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":2.0},"25":{"tf":1.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"82":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"5":{"0":{"0":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"181":{"tf":1.0},"96":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.7320508075688772},"22":{"tf":1.0},"32":{"tf":1.7320508075688772},"67":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"54":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":97,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"l":{"d":{"df":14,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"164":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"8":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"215":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"228":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"94":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"x":{"df":3,"docs":{"23":{"tf":2.449489742783178},"3":{"tf":1.0},"8":{"tf":1.0}},"k":{"c":{"d":{"df":1,"docs":{"205":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"67":{"tf":1.0},"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":4,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":1,"docs":{"66":{"tf":1.0}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}},"df":7,"docs":{"102":{"tf":1.4142135623730951},"142":{"tf":2.0},"166":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"134":{"tf":1.0},"16":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"x":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"6":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"1":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"'":{"*":{"'":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":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":{"85":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"34":{"tf":1.0}}}},"1":{"0":{"6":{"4":{"3":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"6":{"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":2,"docs":{"149":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"8":{"df":9,"docs":{"116":{"tf":2.449489742783178},"122":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"167":{"tf":1.0},"171":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"4":{":":{"3":{"5":{":":{"3":{"0":{".":{"4":{"3":{"3":{"5":{"0":{"1":{"9":{"8":{"0":{"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":{}},"6":{":":{"3":{"4":{".":{"6":{"5":{"2":{"5":{"8":{"7":{"4":{"1":{"2":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"_":{"1":{"4":{"1":{"_":{"1":{"8":{"3":{"_":{"4":{"6":{"0":{"_":{"4":{"6":{"9":{"_":{"2":{"3":{"1":{"_":{"7":{"3":{"1":{"_":{"6":{"8":{"7":{"_":{"3":{"0":{"3":{"_":{"7":{"1":{"5":{"_":{"8":{"8":{"4":{"_":{"1":{"0":{"5":{"_":{"7":{"2":{"7":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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.4142135623730951}},"t":{"1":{"4":{":":{"3":{"5":{":":{"3":{"1":{".":{"9":{"8":{"3":{"5":{"9":{"0":{"df":0,"docs":{},"z":{"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":{}},"5":{":":{"0":{"1":{":":{"3":{"9":{".":{"1":{"9":{"4":{"3":{"7":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"_":{"4":{"4":{"6":{"_":{"7":{"4":{"4":{"_":{"0":{"7":{"3":{"_":{"7":{"0":{"9":{"_":{"5":{"5":{"1":{"_":{"6":{"1":{"5":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"157":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"166":{"tf":1.7320508075688772},"183":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":2.0},"34":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"2":{".":{"0":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"7":{"1":{"8":{"2":{"8":{"1":{"8":{"2":{"8":{"4":{"5":{"9":{"0":{"4":{"5":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"233":{"tf":1.0}}},"4":{"df":4,"docs":{"0":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"59":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"62":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"5":{"4":{"df":1,"docs":{"90":{"tf":1.0}}},"5":{"df":2,"docs":{"154":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"4":{"7":{"_":{"4":{"8":{"3":{"_":{"6":{"4":{"7":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"88":{"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":9,"docs":{"108":{"tf":1.0},"166":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"34":{"tf":1.0},"87":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"a":{"a":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"7":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}},"u":{"a":{"a":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"3":{".":{"1":{"4":{"1":{"5":{"9":{"2":{"7":{"df":2,"docs":{"145":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"7":{"6":{"7":{"df":2,"docs":{"150":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"179":{"tf":1.0},"210":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"0":{"_":{"2":{"8":{"2":{"_":{"3":{"6":{"6":{"_":{"9":{"2":{"0":{"_":{"9":{"3":{"8":{"_":{"4":{"6":{"3":{"_":{"4":{"6":{"3":{"_":{"3":{"7":{"4":{"_":{"6":{"0":{"7":{"_":{"4":{"3":{"1":{"_":{"7":{"6":{"8":{"_":{"2":{"1":{"1":{"_":{"4":{"5":{"5":{"df":2,"docs":{"153":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"153":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"6":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":4,"docs":{"166":{"tf":1.7320508075688772},"18":{"tf":1.0},"233":{"tf":1.0},"34":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.0}}},"2":{"df":1,"docs":{"140":{"tf":1.0}}},"_":{"2":{"9":{"4":{"_":{"9":{"6":{"7":{"_":{"2":{"9":{"5":{"df":2,"docs":{"156":{"tf":1.7320508075688772},"88":{"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":5,"docs":{"233":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}},"5":{"0":{"0":{"df":1,"docs":{"32":{"tf":1.0}}},"2":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"99":{"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":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"34":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"a":{"a":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"2":{"6":{"9":{"2":{"3":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"1":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"_":{"5":{"3":{"5":{"df":2,"docs":{"155":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"a":{"a":{"a":{"a":{"df":3,"docs":{"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"6":{"c":{"3":{"5":{"5":{"8":{"a":{"a":{"d":{"2":{"4":{"2":{"2":{"4":{"8":{"5":{"2":{"a":{"9":{"5":{"8":{"2":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"1":{"7":{"8":{"4":{"0":{"2":{"c":{"b":{"3":{"6":{"7":{"9":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"32":{"tf":1.0},"99":{"tf":2.0}}},"9":{"0":{"0":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"19":{"tf":1.0}}},"6":{"df":3,"docs":{"61":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"_":{"2":{"2":{"3":{"_":{"3":{"7":{"2":{"_":{"0":{"3":{"6":{"_":{"8":{"5":{"4":{"_":{"7":{"7":{"5":{"_":{"8":{"0":{"7":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"152":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"6":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}},"_":{"df":1,"docs":{"85":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"17":{"tf":2.0},"23":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}}},"a":{"a":{"a":{"a":{"a":{"df":15,"docs":{"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"147":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"73":{"tf":2.0},"79":{"tf":2.0},"8":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"96":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"q":{"df":5,"docs":{"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"b":{"a":{"df":5,"docs":{"134":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{},"q":{"df":3,"docs":{"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"163":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"90":{"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":3,"docs":{"22":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"}":{"$":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"147":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"33":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"df":2,"docs":{"82":{"tf":1.0},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":1,"docs":{"88":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"22":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"215":{"tf":1.0},"58":{"tf":3.7416573867739413},"61":{"tf":1.4142135623730951},"67":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"j":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"52":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"96":{"tf":3.872983346207417}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"217":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"32":{"tf":2.8284271247461903}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"64":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"144":{"tf":2.0},"162":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":59,"docs":{"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.0},"58":{"tf":3.4641016151377544},"59":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"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":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"'":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":9,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"58":{"tf":1.0}},"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":{"3":{"tf":1.0},"58":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":21,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":4.123105625617661},"59":{"tf":2.23606797749979},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"80":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"y":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"1":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"2":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"3":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"4":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":28,"docs":{"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":2.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"2":{"9":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"0":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"(":{"(":{"a":{"c":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"147":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":3.7416573867739413},"23":{"tf":1.0},"36":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"96":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"17":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"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":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"180":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"90":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"90":{"tf":2.6457513110645907}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":2.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":1.7320508075688772},"22":{"tf":2.0},"24":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"233":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0}}}},"df":8,"docs":{"40":{"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},"59":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":2.449489742783178}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":2.6457513110645907},"38":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"58":{"tf":1.7320508075688772},"85":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":3.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":2.0},"96":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"192":{"tf":1.0},"215":{"tf":1.0}}},"y":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":162,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"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":1.0},"139":{"tf":1.0},"14":{"tf":2.0},"140":{"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.8284271247461903},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":2.0},"24":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":3.1622776601683795},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":3.0},"69":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":2.0},"90":{"tf":2.8284271247461903},"96":{"tf":3.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":4,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"193":{"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":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":2.23606797749979},"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"@":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}}},"df":4,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"64":{"tf":2.6457513110645907},"66":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"37":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"41":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"1":{"0":{"0":{"2":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"6":{"4":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"2":{"8":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"5":{"5":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"1":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"6":{"1":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"37":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"49":{"tf":1.4142135623730951}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"d":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"167":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":184,"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.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},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"53":{"tf":2.8284271247461903},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"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},"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},"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}}},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"103":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":2.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"59":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"166":{"tf":1.0},"59":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"41":{"tf":1.0},"63":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"90":{"tf":1.0},"96":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"96":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"58":{"tf":2.8284271247461903}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"a":{"df":9,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"105":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"26":{"tf":1.0},"60":{"tf":1.0},"96":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":2.449489742783178},"58":{"tf":2.23606797749979},"78":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":14,"docs":{"111":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":2.6457513110645907},"115":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"58":{"tf":1.0}},"o":{"b":{"df":31,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"141":{"tf":1.0},"142":{"tf":3.7416573867739413},"144":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178},"90":{"tf":2.23606797749979},"98":{"tf":2.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"58":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":7,"docs":{"184":{"tf":2.0},"185":{"tf":2.0},"205":{"tf":1.0},"23":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":2.23606797749979},"88":{"tf":1.0}}},"l":{"df":29,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"126":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":1.0},"143":{"tf":3.7416573867739413},"159":{"tf":1.7320508075688772},"163":{"tf":2.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"199":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"57":{"tf":1.0},"59":{"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":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"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":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"g":{"df":4,"docs":{"110":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":2.0},"193":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"36":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"33":{"tf":2.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":2.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"2":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"6":{"9":{"df":0,"docs":{},"f":{"4":{"4":{"2":{"9":{"9":{"8":{"df":0,"docs":{},"e":{"4":{"c":{"d":{"a":{"4":{"6":{"1":{"9":{"1":{"6":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"a":{"9":{"b":{"c":{"9":{"1":{"4":{"1":{"8":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"\"":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"0":{"tf":1.0},"120":{"tf":1.0},"134":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"96":{"tf":2.449489742783178}}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"147":{"tf":1.0},"17":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":2.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"98":{"tf":2.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":87,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":2.8284271247461903},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":2.0},"124":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"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},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":2.0},"181":{"tf":1.0},"187":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":2.8284271247461903},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":2.23606797749979},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979},"67":{"tf":3.1622776601683795},"72":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":3.3166247903554},"87":{"tf":3.0},"88":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":4.58257569495584}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"116":{"tf":1.0},"125":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":187,"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":2.23606797749979},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":2.0},"144":{"tf":2.23606797749979},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":2.0},"160":{"tf":2.0},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":2.0},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":2.0},"167":{"tf":1.7320508075688772},"168":{"tf":2.449489742783178},"169":{"tf":2.449489742783178},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"36":{"tf":1.0},"53":{"tf":2.449489742783178},"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":2.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":3.872983346207417},"89":{"tf":1.0},"90":{"tf":2.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}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":173,"docs":{"100":{"tf":2.6457513110645907},"101":{"tf":2.8284271247461903},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"150":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":2.6457513110645907},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"170":{"tf":2.6457513110645907},"171":{"tf":2.6457513110645907},"172":{"tf":2.449489742783178},"173":{"tf":2.449489742783178},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":2.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"188":{"tf":2.0},"189":{"tf":2.0},"19":{"tf":2.8284271247461903},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"210":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"23":{"tf":3.605551275463989},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"24":{"tf":2.8284271247461903},"25":{"tf":2.23606797749979},"26":{"tf":2.449489742783178},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.0},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"36":{"tf":2.449489742783178},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":3.0},"59":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"67":{"tf":3.0},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"72":{"tf":2.23606797749979},"73":{"tf":2.449489742783178},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":2.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.6457513110645907},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":3.3166247903554},"87":{"tf":4.0},"88":{"tf":3.0},"9":{"tf":1.7320508075688772},"90":{"tf":2.6457513110645907},"94":{"tf":1.0},"95":{"tf":2.449489742783178},"96":{"tf":6.48074069840786},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":10,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"19":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"193":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"52":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"195":{"tf":1.0},"200":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"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":{"31":{"tf":1.0}}}}}}},"i":{"d":{"df":14,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":2.23606797749979},"231":{"tf":1.0},"232":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"52":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"159":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"144":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"233":{"tf":1.0},"58":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"3":{"tf":1.0},"52":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.0}},"k":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"54":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"174":{"tf":2.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"167":{"tf":1.0},"179":{"tf":2.0}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"n":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":15,"docs":{"215":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"7":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"31":{"tf":1.0},"62":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":5,"docs":{"112":{"tf":1.0},"115":{"tf":2.23606797749979},"21":{"tf":1.0},"25":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"215":{"tf":1.0},"3":{"tf":1.0},"6":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.7320508075688772},"58":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0},"58":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}},"u":{"d":{"df":3,"docs":{"58":{"tf":3.3166247903554},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":19,"docs":{"116":{"tf":1.0},"137":{"tf":1.7320508075688772},"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"215":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":2.6457513110645907},"61":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"78":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"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":{"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"31":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"3":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"233":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.8284271247461903},"58":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"41":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.449489742783178},"78":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}},"x":{"df":2,"docs":{"58":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"120":{"tf":1.0},"139":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"103":{"tf":1.4142135623730951},"112":{"tf":1.0},"34":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"39":{"tf":1.0},"52":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"i":{"d":{"df":3,"docs":{"29":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0}}}}}},"`":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"102":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"96":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":23,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}}}}}}}},"df":6,"docs":{"232":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"df":36,"docs":{"102":{"tf":3.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"184":{"tf":2.8284271247461903},"185":{"tf":2.8284271247461903},"19":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":2.8284271247461903},"204":{"tf":1.7320508075688772},"210":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"23":{"tf":2.8284271247461903},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":4.898979485566356},"96":{"tf":4.0},"98":{"tf":2.8284271247461903},"99":{"tf":2.449489742783178}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"165":{"tf":1.0},"39":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"167":{"tf":1.0},"176":{"tf":2.0},"214":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":2.0},"19":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"11":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":2.6457513110645907},"108":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"167":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"103":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":2.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":2.449489742783178},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"201":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"120":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"163":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":3.605551275463989}}}}},"u":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"52":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":10,"docs":{"11":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":31,"docs":{"103":{"tf":3.4641016151377544},"116":{"tf":2.449489742783178},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":2.23606797749979},"128":{"tf":2.23606797749979},"129":{"tf":2.23606797749979},"130":{"tf":2.23606797749979},"131":{"tf":2.6457513110645907},"132":{"tf":2.6457513110645907},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979}}}},"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":{"174":{"tf":1.0}}}}}}}},"df":17,"docs":{"108":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":2.0},"119":{"tf":2.0},"144":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.4142135623730951},"174":{"tf":2.0},"179":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}}},"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"87":{"tf":2.449489742783178}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"233":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"28":{"tf":1.7320508075688772},"29":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":31,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":2.0},"67":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":123,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.8284271247461903},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"23":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"96":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"202":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"56":{"tf":2.0},"90":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"31":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"o":{"df":0,"docs":{},"y":{"df":36,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"3":{"tf":2.6457513110645907},"33":{"tf":1.0},"36":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":2.6457513110645907},"55":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"7":{"tf":3.0},"70":{"tf":2.23606797749979},"71":{"tf":2.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907},"75":{"tf":1.0},"76":{"tf":2.6457513110645907},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":2.8284271247461903},"82":{"tf":2.449489742783178},"9":{"tf":2.8284271247461903},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"195":{"tf":1.0},"203":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"176":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"215":{"tf":1.4142135623730951},"34":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":3.1622776601683795},"74":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":2.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"11":{"tf":2.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"233":{"tf":1.0},"36":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"6":{".":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":52,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"2":{"tf":2.0},"3":{"tf":2.0},"36":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.7320508075688772},"52":{"tf":1.0},"6":{"tf":2.449489742783178},"62":{"tf":2.0},"64":{"tf":2.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.8284271247461903},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":2.0},"85":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"i":{"a":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"l":{"\\":{"0":{"0":{"\\":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"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":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"103":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"114":{"tf":1.0},"22":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"75":{"tf":1.0},"83":{"tf":1.0}}}},"y":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"181":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"105":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"59":{"tf":1.0},"67":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"32":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":182,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"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},"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},"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}}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"31":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"48":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"59":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"87":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"33":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"103":{"tf":1.0},"233":{"tf":1.4142135623730951},"31":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"67":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"59":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"88":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"113":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}}}},"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"136":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":3.872983346207417},"67":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"7":{"tf":1.0},"90":{"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":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"167":{"tf":1.0},"169":{"tf":2.0},"18":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"108":{"tf":2.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"2":{"tf":1.0},"62":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"108":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"58":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"10":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"58":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"87":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":31,"docs":{"107":{"tf":2.0},"111":{"tf":1.0},"192":{"tf":2.23606797749979},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"2":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"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.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"159":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"163":{"tf":1.0},"90":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.7320508075688772},"144":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":3.605551275463989},"32":{"tf":3.4641016151377544},"33":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":2.449489742783178}}}}}},"s":{"2":{"0":{"2":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"63":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"19":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":10,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.0},"27":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"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":{"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":113,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"85":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"90":{"tf":2.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"166":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"175":{"tf":1.0},"181":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.0},"67":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"96":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"59":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"59":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"215":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772},"93":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"87":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":120,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"96":{"tf":2.8284271247461903},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"s":{"df":9,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"215":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"16":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"23":{"tf":2.449489742783178},"32":{"tf":2.449489742783178},"4":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"36":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"144":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"126":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"87":{"tf":1.0},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"p":{":":{"/":{"/":{"d":{"df":0,"docs":{},"f":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"13":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.0},"23":{"tf":2.0},"24":{"tf":2.6457513110645907},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"103":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"83":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":20,"docs":{"0":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"23":{"tf":1.7320508075688772},"3":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":2.0},"67":{"tf":1.0},"7":{"tf":1.0},"82":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}}}}},"l":{"(":{"0":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"198":{"tf":1.0},"90":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"29":{"tf":1.0},"33":{"tf":2.23606797749979},"36":{"tf":1.0},"39":{"tf":1.0}}}},"d":{"df":6,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"165":{"tf":2.23606797749979}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"147":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}},"x":{"df":2,"docs":{"10":{"tf":1.0},"108":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"141":{"tf":1.0},"145":{"tf":4.0},"88":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"110":{"tf":1.7320508075688772},"141":{"tf":1.0},"146":{"tf":4.0},"88":{"tf":2.6457513110645907},"92":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}},"m":{"a":{"a":{"a":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":28,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"df":6,"docs":{"2":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"a":{"a":{"a":{"df":5,"docs":{"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"106":{"tf":1.0}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":2.23606797749979}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"4":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"df":5,"docs":{"115":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"n":{"c":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"120":{"tf":1.0},"186":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":6,"docs":{"141":{"tf":1.0},"147":{"tf":3.605551275463989},"184":{"tf":1.0},"185":{"tf":1.0},"88":{"tf":2.6457513110645907},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"147":{"tf":1.0}}},"df":23,"docs":{"102":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"16":{"tf":1.0},"161":{"tf":1.4142135623730951},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"205":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"87":{"tf":1.0},"90":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"215":{"tf":1.0},"29":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":13,"docs":{"103":{"tf":1.0},"18":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"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":1,"docs":{"196":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":2,"docs":{"59":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"191":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.4142135623730951}}},"df":1,"docs":{"153":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"m":{"b":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"85":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"i":{"b":{"df":6,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"54":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":8,"docs":{"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"85":{"tf":1.0},"87":{"tf":1.0}},"o":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"58":{"tf":3.3166247903554},"60":{"tf":1.0}}}},"w":{"df":4,"docs":{"218":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"225":{"tf":1.7320508075688772},"233":{"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":{"58":{"tf":1.0},"87":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"69":{"tf":1.0}}}}}},"h":{"1":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":6,"docs":{"109":{"tf":1.0},"14":{"tf":1.0},"32":{"tf":4.242640687119285},"90":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"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":1,"docs":{"10":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"18":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"34":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.6457513110645907},"209":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"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":6,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"233":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"164":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"8":{"tf":1.0}}}},"p":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"233":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":15,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":8,"docs":{"103":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"34":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"108":{"tf":1.4142135623730951},"140":{"tf":1.0},"34":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"61":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"233":{"tf":1.0},"29":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":2.0},"17":{"tf":1.0}}}}}}}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"/":{"?":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"98":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":5,"docs":{"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"22":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"df":9,"docs":{"182":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"205":{"tf":1.7320508075688772},"22":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"98":{"tf":1.0}}}}}}}}}},"df":28,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":2.0}}}}}}}}},"s":{":":{"/":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"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":{"/":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"2":{"0":{"6":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"62":{"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":{"d":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"k":{"c":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"6":{"4":{"2":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"0":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"c":{"'":{"df":2,"docs":{"59":{"tf":1.0},"85":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"102":{"tf":1.0},"125":{"tf":1.0},"163":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"96":{"tf":2.0}},"l":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"123":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"137":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"140":{"tf":1.0}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"173":{"tf":1.0},"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":2,"docs":{"128":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"d":{"1":{"2":{"8":{"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":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"163":{"tf":1.0},"96":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"135":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"178":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"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":{"136":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.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":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"102":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"102":{"tf":1.0},"232":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"227":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"223":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"180":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"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":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"0":{"5":{"0":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":16,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"136":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"25":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":99,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":5.477225575051661},"59":{"tf":3.0},"60":{"tf":2.6457513110645907},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":3.0},"99":{"tf":1.0}},"p":{"df":14,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0}}},"r":{"c":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"25":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"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":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"\"":{">":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":9,"docs":{"161":{"tf":2.23606797749979},"167":{"tf":1.0},"173":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":4.58257569495584},"94":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"52":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"58":{"tf":1.7320508075688772},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":132,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"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.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.7320508075688772},"90":{"tf":2.6457513110645907},"96":{"tf":3.3166247903554},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":1,"docs":{"144":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"29":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"106":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.7320508075688772},"90":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"83":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"19":{"tf":1.0},"233":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"63":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":2,"docs":{"85":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":7,"docs":{"58":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0}}}},"o":{"df":2,"docs":{"23":{"tf":1.0},"8":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"64":{"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":1,"docs":{"58":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"101":{"tf":1.7320508075688772},"120":{"tf":2.0},"182":{"tf":1.0},"186":{"tf":2.6457513110645907},"99":{"tf":1.4142135623730951}},"i":{"df":6,"docs":{"186":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"120":{"tf":1.0},"219":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"33":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"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":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"182":{"tf":1.0},"187":{"tf":1.7320508075688772},"33":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"117":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"2":{"tf":2.8284271247461903},"206":{"tf":1.0},"3":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":3.0},"62":{"tf":3.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"82":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"206":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"147":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"166":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":2.0},"34":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.7320508075688772},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"1":{"6":{"df":3,"docs":{"141":{"tf":1.0},"150":{"tf":4.0},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"3":{"2":{"df":4,"docs":{"141":{"tf":1.0},"151":{"tf":4.0},"166":{"tf":3.4641016151377544},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"141":{"tf":1.0},"152":{"tf":4.0},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"141":{"tf":1.0},"149":{"tf":4.0},"88":{"tf":2.6457513110645907}}},"df":4,"docs":{"140":{"tf":2.0},"141":{"tf":1.0},"148":{"tf":4.0},"88":{"tf":3.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.0},"114":{"tf":2.0},"58":{"tf":2.6457513110645907}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"n":{"d":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"f":{"a":{"c":{"df":4,"docs":{"73":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"32":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"20":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"58":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"61":{"tf":1.0},"85":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"10":{"tf":1.7320508075688772},"106":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"'":{"df":7,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"80":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"107":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":2.23606797749979},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.449489742783178},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"s":{"df":5,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"90":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":2.0},"90":{"tf":1.0},"92":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"90":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"16":{"tf":1.4142135623730951},"53":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":2.0}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":7,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":9,"docs":{"163":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":2.6457513110645907},"23":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"87":{"tf":3.1622776601683795},"88":{"tf":1.0},"90":{"tf":3.3166247903554}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"6":{"tf":2.0},"75":{"tf":2.0}}}},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"147":{"tf":1.0},"58":{"tf":1.0}},"n":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"56":{"tf":2.0},"90":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}},"m":{"df":0,"docs":{},"j":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"34":{"tf":1.0},"59":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"96":{"tf":1.0}},"y":{"=":{"1":{"0":{"1":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"108":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"112":{"tf":1.0},"115":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"119":{"tf":1.0},"222":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"29":{"tf":1.0},"53":{"tf":1.0}}}},"t":{"'":{"df":6,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"106":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":2.23606797749979},"19":{"tf":1.0},"233":{"tf":2.0},"34":{"tf":3.3166247903554},"58":{"tf":2.0},"59":{"tf":2.23606797749979},"85":{"tf":2.449489742783178},"87":{"tf":2.8284271247461903}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":10,"docs":{"2":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"k":{"df":2,"docs":{"103":{"tf":1.0},"20":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"o":{"a":{"d":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"216":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":2.23606797749979},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"74":{"tf":2.449489742783178},"75":{"tf":2.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"t":{"df":3,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"106":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"59":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":4,"docs":{"140":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{";":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"9":{"tf":2.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"26":{"tf":1.0},"38":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":28,"docs":{"100":{"tf":2.23606797749979},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"58":{"tf":1.7320508075688772},"62":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"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":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"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":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"169":{"tf":1.0}}}}}}}},"df":5,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"36":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"p":{"(":{"(":{"_":{"df":1,"docs":{"90":{"tf":1.0}}},"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":2.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"h":{".":{"df":2,"docs":{"146":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"145":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}}},"y":{"b":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"87":{"tf":2.0},"90":{"tf":3.872983346207417},"94":{"tf":1.4142135623730951}}},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"136":{"tf":1.0},"138":{"tf":1.7320508075688772},"17":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"187":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"22":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"67":{"tf":2.8284271247461903},"72":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}},"df":1,"docs":{"210":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"df":44,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":2.0},"147":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"205":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"36":{"tf":2.23606797749979},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"78":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":3.3166247903554},"86":{"tf":1.7320508075688772},"87":{"tf":3.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":4.123105625617661},"98":{"tf":1.0},"99":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"b":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"34":{"tf":1.4142135623730951}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"108":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"196":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":7,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"107":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"52":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"193":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}}}},"s":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}},"g":{"df":7,"docs":{"116":{"tf":2.449489742783178},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.7320508075688772},"87":{"tf":1.0}},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"v":{"df":1,"docs":{"52":{"tf":1.0}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"78":{"tf":3.0},"79":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.7320508075688772},"147":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":2.0}}}},"t":{"1":{"6":{"df":6,"docs":{"141":{"tf":1.0},"155":{"tf":4.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"141":{"tf":1.0},"156":{"tf":4.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":2.6457513110645907},"99":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{">":{"(":{"0":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"141":{"tf":1.0},"157":{"tf":4.0},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":2.8284271247461903},"96":{"tf":4.358898943540674}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"154":{"tf":4.0},"219":{"tf":1.4142135623730951},"88":{"tf":3.0},"90":{"tf":2.6457513110645907}}},"df":7,"docs":{"119":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"141":{"tf":1.0},"153":{"tf":4.0},"171":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951}},"e":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":5.196152422706632}}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":5.196152422706632}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"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":{"233":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"103":{"tf":1.0},"115":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"114":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":1.0}}}}},"w":{"df":11,"docs":{"139":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":2.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":3.4641016151377544}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"n":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":2.449489742783178}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":2.0},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"2":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"159":{"tf":2.0},"174":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"144":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}},"i":{"df":5,"docs":{"116":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"134":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"96":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"134":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"df":8,"docs":{"115":{"tf":1.0},"215":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"106":{"tf":2.449489742783178},"19":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"3":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}},"x":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"158":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.0},"158":{"tf":4.123105625617661},"159":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"165":{"tf":2.6457513110645907},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"88":{"tf":3.605551275463989},"99":{"tf":1.4142135623730951}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":20,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"172":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.23606797749979},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"90":{"tf":3.3166247903554},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"222":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":2,"docs":{"163":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"l":{"d":{"df":181,"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.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},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"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},"88":{"tf":1.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}}},"df":0,"docs":{}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"df":7,"docs":{"15":{"tf":1.0},"165":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"106":{"tf":1.0},"56":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"109":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"159":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"6":{"4":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"159":{"tf":1.0}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":2.0}}}}}}}},"df":11,"docs":{"141":{"tf":1.0},"159":{"tf":3.1622776601683795},"174":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"111":{"tf":1.0},"233":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":1,"docs":{"58":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0},"27":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"178":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"49":{"tf":1.0},"62":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":1,"docs":{"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":2.8284271247461903}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":2.449489742783178},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"67":{"tf":1.0},"85":{"tf":2.23606797749979},"88":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"58":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"14":{"tf":1.0},"144":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"23":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{"$":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0}}}},"y":{"df":1,"docs":{"58":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"r":{"df":5,"docs":{"183":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"163":{"tf":1.0},"167":{"tf":1.0},"177":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"24":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"186":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"85":{"tf":1.0},"87":{"tf":2.0},"90":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}},"n":{"df":1,"docs":{"90":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.0},"215":{"tf":2.6457513110645907},"216":{"tf":2.23606797749979},"217":{"tf":2.23606797749979}}}}}}},"o":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"18":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":6,"docs":{"182":{"tf":1.0},"188":{"tf":1.7320508075688772},"3":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"59":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"182":{"tf":1.0},"189":{"tf":1.7320508075688772},"32":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":3,"docs":{"147":{"tf":1.0},"160":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":3,"docs":{"134":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":29,"docs":{"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"134":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.7320508075688772},"160":{"tf":4.242640687119285},"161":{"tf":2.23606797749979},"163":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"58":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"90":{"tf":3.872983346207417},"96":{"tf":2.8284271247461903},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":2.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"167":{"tf":1.0},"178":{"tf":2.23606797749979},"32":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":1,"docs":{"148":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}},"df":1,"docs":{"153":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"m":{"b":{"df":1,"docs":{"166":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"90":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"192":{"tf":1.0},"194":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":2.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"96":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"58":{"tf":1.0}},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"31":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":87,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"97":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{".":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"10":{"tf":1.4142135623730951},"105":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"216":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"75":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"59":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":14,"docs":{"159":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.449489742783178},"193":{"tf":1.0},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"36":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772},"60":{"tf":2.0}}}}},"df":1,"docs":{"52":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"0":{"tf":1.0},"192":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"195":{"tf":1.0},"207":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"208":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"217":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"q":{"a":{"a":{"a":{"df":0,"docs":{},"q":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":73,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.8284271247461903},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":2.23606797749979},"160":{"tf":2.0},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":2.6457513110645907},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":2.449489742783178},"191":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"205":{"tf":1.0},"219":{"tf":2.449489742783178},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":3.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":5.0},"87":{"tf":3.0},"88":{"tf":2.8284271247461903},"90":{"tf":3.3166247903554},"96":{"tf":4.358898943540674},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"y":{"(":{"[":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"142":{"tf":1.0},"168":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"98":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"156":{"tf":1.0},"222":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"157":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.0}}},"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"160":{"tf":1.0},"176":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"164":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.4142135623730951}},"j":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0}},"s":{"_":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"18":{"tf":1.0},"60":{"tf":1.0}}}},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"195":{"tf":1.0},"209":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"116":{"tf":2.449489742783178},"118":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"134":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":3.1622776601683795}}}}}}},"d":{"df":9,"docs":{"218":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"34":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"90":{"tf":2.0},"94":{"tf":1.0}},"i":{"df":3,"docs":{"59":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"58":{"tf":1.0},"93":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"147":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":2,"docs":{"128":{"tf":1.0},"130":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"15":{"tf":1.0},"166":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":13,"docs":{"102":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"161":{"tf":3.3166247903554},"184":{"tf":2.449489742783178},"185":{"tf":2.449489742783178},"204":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"59":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":3.0},"90":{"tf":4.358898943540674},"98":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"1":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"90":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":1,"docs":{"90":{"tf":2.449489742783178}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":8,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":149,"docs":{"100":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"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},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"116":{"tf":1.7320508075688772},"120":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":2.0},"138":{"tf":2.0},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.4142135623730951},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"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":{"59":{"tf":1.7320508075688772}}}}}}}}}}},"df":3,"docs":{"233":{"tf":1.0},"34":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"219":{"tf":1.0},"58":{"tf":2.449489742783178},"78":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"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":1,"docs":{"102":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"'":{"df":2,"docs":{"178":{"tf":1.0},"31":{"tf":1.0}}},"df":16,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"6":{"tf":2.6457513110645907},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"74":{"tf":2.0},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"58":{"tf":2.449489742783178},"60":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":3,"docs":{"116":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":2,"docs":{"216":{"tf":1.0},"54":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"52":{"tf":1.0},"83":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"72":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"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":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":18,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":2.449489742783178},"34":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"144":{"tf":1.0},"22":{"tf":1.7320508075688772},"36":{"tf":1.0},"52":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"b":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"d":{"b":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"14":{"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":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"141":{"tf":1.0},"162":{"tf":3.872983346207417},"18":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"20":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"103":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":9,"docs":{"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":1.0},"34":{"tf":1.0},"96":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":2.0}}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":2,"docs":{"53":{"tf":1.0},"67":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":6,"docs":{"17":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"110":{"tf":1.0},"58":{"tf":1.4142135623730951},"72":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":104,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":3.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"67":{"tf":2.23606797749979},"85":{"tf":2.449489742783178},"87":{"tf":2.6457513110645907},"88":{"tf":1.7320508075688772},"90":{"tf":5.196152422706632},"96":{"tf":3.872983346207417},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"v":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"f":{"df":1,"docs":{"10":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"33":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"58":{"tf":2.0},"59":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"36":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"41":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"52":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":27,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"52":{"tf":1.0},"80":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"216":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"59":{"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":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"10":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":1,"docs":{"52":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"147":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"34":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":2.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"204":{"tf":1.0},"210":{"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":85,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":2.0},"60":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"13":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"k":{"df":1,"docs":{"59":{"tf":1.0}}},"m":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}},"n":{"df":1,"docs":{"87":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"d":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"132":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"103":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"58":{"tf":1.0},"96":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"144":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.4142135623730951},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"108":{"tf":1.0},"90":{"tf":3.4641016151377544},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}}}}}}}},"df":10,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":2.449489742783178},"13":{"tf":2.8284271247461903},"14":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":4.242640687119285},"18":{"tf":1.0},"32":{"tf":1.0}}}},"i":{"c":{"df":28,"docs":{"115":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":3.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"88":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":22,"docs":{"14":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":2.0},"18":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"191":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"231":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"120":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"0":{".":{"3":{"9":{".":{"7":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"l":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"103":{"tf":2.449489742783178},"63":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"5":{"tf":1.0},"96":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"113":{"tf":1.0},"195":{"tf":1.0},"210":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"210":{"tf":2.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}}}}},"df":2,"docs":{"210":{"tf":1.0},"58":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"58":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"109":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"215":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":6,"docs":{"53":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"102":{"tf":2.0},"58":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"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":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"59":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"116":{"tf":1.0},"119":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"233":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"0":{"5":{"0":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"2":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"159":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.4142135623730951},"96":{"tf":3.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"19":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"60":{"tf":1.0},"96":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":10,"docs":{"10":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"78":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"217":{"tf":1.0},"4":{"tf":1.0}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"233":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":23,"docs":{"111":{"tf":1.0},"218":{"tf":3.0},"219":{"tf":2.0},"220":{"tf":2.0},"221":{"tf":2.0},"222":{"tf":2.0},"223":{"tf":2.0},"224":{"tf":2.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":1.7320508075688772},"90":{"tf":3.3166247903554},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"6":{"4":{"df":5,"docs":{"218":{"tf":2.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"225":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"227":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}}}}},"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":2,"docs":{"219":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"90":{"tf":2.0},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"df":12,"docs":{"108":{"tf":1.0},"110":{"tf":1.7320508075688772},"219":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":4.795831523312719},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"110":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"223":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"33":{"tf":1.0},"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"211":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":2.8284271247461903},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.8284271247461903},"82":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"181":{"tf":1.0},"215":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":3.0},"63":{"tf":1.0},"67":{"tf":2.0},"75":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"96":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"18":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"102":{"tf":2.449489742783178}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"212":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"10":{"tf":1.0},"181":{"tf":1.0},"6":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"219":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"110":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":2.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":12,"docs":{"147":{"tf":1.7320508075688772},"164":{"tf":2.23606797749979},"168":{"tf":1.0},"169":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.0},"67":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":19,"docs":{"108":{"tf":1.0},"11":{"tf":2.23606797749979},"16":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"113":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":3.0},"67":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":5,"docs":{"2":{"tf":1.0},"52":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"140":{"tf":1.0},"31":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"88":{"tf":1.0}}},"3":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"233":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"166":{"tf":1.0}},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"193":{"tf":1.0}}},"df":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":{"40":{"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},"59":{"tf":1.4142135623730951},"74":{"tf":1.0},"93":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{">":{"(":{"0":{"df":3,"docs":{"87":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":2.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"141":{"tf":1.0},"147":{"tf":2.8284271247461903},"161":{"tf":1.7320508075688772},"163":{"tf":2.6457513110645907},"164":{"tf":3.3166247903554},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"178":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":2.6457513110645907},"185":{"tf":2.6457513110645907},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"198":{"tf":1.0},"219":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":3.0},"85":{"tf":2.449489742783178},"87":{"tf":3.4641016151377544},"88":{"tf":3.4641016151377544},"90":{"tf":3.7416573867739413},"98":{"tf":2.6457513110645907},"99":{"tf":1.7320508075688772}}}}},"f":{"df":0,"docs":{},"j":{"df":1,"docs":{"4":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"67":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}},"k":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}},"r":{"d":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"109":{"tf":1.0},"58":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"77":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":9,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"181":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":2.449489742783178},"8":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"w":{"df":7,"docs":{"126":{"tf":1.0},"144":{"tf":1.4142135623730951},"187":{"tf":1.0},"32":{"tf":1.4142135623730951},"87":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"166":{"tf":1.0},"22":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"87":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"58":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":2.0},"183":{"tf":1.0},"59":{"tf":1.7320508075688772},"96":{"tf":1.0}},"r":{"df":11,"docs":{"102":{"tf":2.23606797749979},"111":{"tf":1.0},"120":{"tf":1.0},"209":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"25":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"102":{"tf":3.3166247903554},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"1":{".":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":2.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":2.23606797749979},"96":{"tf":3.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"0":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"1":{".":{"7":{"3":{".":{"0":{"df":1,"docs":{"52":{"tf":1.0}}},"df":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":{"2":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"df":1,"docs":{"18":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"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":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}},"k":{"df":4,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"18":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"58":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"167":{"tf":1.0},"181":{"tf":2.23606797749979},"87":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":31,"docs":{"102":{"tf":1.0},"11":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"y":{".":{".":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"63":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.7320508075688772},"219":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.0},"36":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":7,"docs":{"113":{"tf":1.0},"147":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0}}}},"y":{"a":{"a":{"a":{"df":5,"docs":{"134":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":48,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"219":{"tf":1.4142135623730951},"233":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":3.872983346207417},"96":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":7,"docs":{"102":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"219":{"tf":1.4142135623730951},"90":{"tf":2.8284271247461903}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"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":5,"docs":{"215":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":31,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"63":{"tf":1.0},"73":{"tf":1.7320508075688772},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"85":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"[":{"8":{"3":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"6":{"8":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"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":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"102":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"142":{"tf":1.4142135623730951},"166":{"tf":1.0},"90":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"r":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"109":{"tf":1.0},"215":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"78":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"213":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"57":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"58":{"tf":1.0}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":72,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"179":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"191":{"tf":2.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":2.8284271247461903},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":4.69041575982343},"88":{"tf":2.449489742783178},"90":{"tf":2.23606797749979},"96":{"tf":4.123105625617661},"99":{"tf":1.0}},"e":{"(":{"[":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"179":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"231":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"221":{"tf":1.0},"224":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"225":{"tf":1.0},"228":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"191":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"67":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"90":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"214":{"tf":1.7320508075688772}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"179":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":2.0},"189":{"tf":2.0},"58":{"tf":1.4142135623730951},"83":{"tf":1.0},"90":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":12,"docs":{"13":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"99":{"tf":2.0}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"110":{"tf":1.0},"59":{"tf":1.7320508075688772},"93":{"tf":1.0}}}},"df":56,"docs":{"0":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"147":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":2.23606797749979},"192":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"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},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"90":{"tf":2.8284271247461903},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}}},">":{"(":{"0":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"90":{"tf":2.23606797749979}}}}}}}}}}}}}},"df":5,"docs":{"161":{"tf":3.1622776601683795},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"90":{"tf":4.358898943540674}},"i":{"d":{"df":1,"docs":{"90":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"161":{"tf":2.23606797749979},"90":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"90":{"tf":2.449489742783178}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"v":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":21,"docs":{"102":{"tf":1.0},"110":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"147":{"tf":1.0},"159":{"tf":1.4142135623730951},"163":{"tf":1.0},"219":{"tf":2.6457513110645907},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"67":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"87":{"tf":3.7416573867739413},"88":{"tf":2.0},"90":{"tf":4.358898943540674},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},">":{"(":{"0":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"111":{"tf":1.0},"192":{"tf":2.23606797749979},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"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},"50":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.449489742783178},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"140":{"tf":2.23606797749979},"141":{"tf":1.0},"159":{"tf":1.7320508075688772},"163":{"tf":1.0},"165":{"tf":3.605551275463989},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"90":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"60":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.6457513110645907},"88":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"141":{"tf":1.0},"142":{"tf":2.0},"166":{"tf":3.3166247903554},"184":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.6457513110645907},"90":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"90":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"167":{"tf":1.0},"172":{"tf":2.0},"2":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"3":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"20":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"87":{"tf":3.4641016151377544},"96":{"tf":2.449489742783178}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}},"s":{"df":2,"docs":{"58":{"tf":1.0},"66":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.7320508075688772}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"144":{"tf":1.4142135623730951},"18":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"m":{"3":{"2":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"106":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":2.6457513110645907},"58":{"tf":3.1622776601683795},"61":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"144":{"tf":1.0},"15":{"tf":1.0},"58":{"tf":1.7320508075688772},"77":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":1,"docs":{"59":{"tf":1.0}}},"v":{"df":2,"docs":{"67":{"tf":1.0},"72":{"tf":1.0}}}},"b":{"3":{"df":1,"docs":{"56":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"3":{"tf":1.0},"34":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"36":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"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":{"0":{"tf":1.0},"176":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":8,"docs":{"120":{"tf":1.0},"125":{"tf":1.0},"173":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":2.0},"25":{"tf":1.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"82":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"5":{"0":{"0":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"181":{"tf":1.0},"96":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.7320508075688772},"22":{"tf":1.0},"32":{"tf":1.7320508075688772},"67":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"54":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":97,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"l":{"d":{"df":21,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"164":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"215":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"94":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"x":{"df":3,"docs":{"23":{"tf":2.449489742783178},"3":{"tf":1.0},"8":{"tf":1.0}},"k":{"c":{"d":{"df":1,"docs":{"205":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"67":{"tf":1.0},"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":4,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":1,"docs":{"66":{"tf":1.0}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}}}}}},"title":{"root":{"1":{"2":{"8":{"df":7,"docs":{"122":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"167":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"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":{}}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"170":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"t":{"a":{"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"112":{"tf":1.0},"114":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"108":{"tf":1.0},"141":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"25":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"182":{"tf":1.0},"195":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"31":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.0}},"i":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"72":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"175":{"tf":1.0},"177":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"96":{"tf":1.0}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"103":{"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}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"29":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":11,"docs":{"10":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"193":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"169":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"107":{"tf":1.0},"192":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"110":{"tf":1.0},"146":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"108":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"205":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"72":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"v":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"10":{"tf":1.0},"71":{"tf":1.0},"82":{"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":2,"docs":{"107":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}}}}}}}},"l":{"a":{"b":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"34":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"72":{"tf":1.0},"78":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"216":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.0},"9":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"100":{"tf":1.0},"195":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"117":{"tf":1.0},"138":{"tf":1.0},"187":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"126":{"tf":1.0},"182":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"g":{"df":6,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"126":{"tf":1.0}}}},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.0}}},"df":1,"docs":{"153":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"106":{"tf":1.0},"217":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"135":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"177":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"189":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"190":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"222":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"35":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":4,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"139":{"tf":1.0},"140":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":3,"docs":{"179":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"89":{"tf":1.0}},"e":{"6":{"4":{"df":4,"docs":{"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"1":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"219":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"180":{"tf":1.0}},"r":{"df":5,"docs":{"102":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"191":{"tf":1.0},"86":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"192":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"228":{"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/docs/servers.html b/docs/servers.html index 1ebb5a7475..e95d75e12b 100644 --- a/docs/servers.html +++ b/docs/servers.html @@ -83,7 +83,7 @@ diff --git a/docs/stable_structures.html b/docs/stable_structures.html index bd84875abf..401b956e15 100644 --- a/docs/stable_structures.html +++ b/docs/stable_structures.html @@ -83,7 +83,7 @@ diff --git a/docs/the_azle_book.html b/docs/the_azle_book.html index 5945f0c4b2..f5f88ee604 100644 --- a/docs/the_azle_book.html +++ b/docs/the_azle_book.html @@ -83,7 +83,7 @@ diff --git a/docs/timers.html b/docs/timers.html index d271a1fa33..d5959002a0 100644 --- a/docs/timers.html +++ b/docs/timers.html @@ -83,7 +83,7 @@ diff --git a/docs/update_methods.html b/docs/update_methods.html index 8e3094cb97..9ade53e3dd 100644 --- a/docs/update_methods.html +++ b/docs/update_methods.html @@ -83,7 +83,7 @@ diff --git a/the_azle_book/book/404.html b/the_azle_book/book/404.html index 2f1fa72b80..dd1655699b 100644 --- a/the_azle_book/book/404.html +++ b/the_azle_book/book/404.html @@ -84,7 +84,7 @@ diff --git a/the_azle_book/book/azle.html b/the_azle_book/book/azle.html index 52b68e16c8..8a78998457 100644 --- a/the_azle_book/book/azle.html +++ b/the_azle_book/book/azle.html @@ -83,7 +83,7 @@ diff --git a/the_azle_book/book/candid.html b/the_azle_book/book/candid.html index 658ba007a0..6e49f2d1be 100644 --- a/the_azle_book/book/candid.html +++ b/the_azle_book/book/candid.html @@ -83,7 +83,7 @@ diff --git a/the_azle_book/book/canisters_overview.html b/the_azle_book/book/canisters_overview.html index 9d9cb0ebee..9149028623 100644 --- a/the_azle_book/book/canisters_overview.html +++ b/the_azle_book/book/canisters_overview.html @@ -83,7 +83,7 @@ diff --git a/the_azle_book/book/cross_canister.html b/the_azle_book/book/cross_canister.html index 62eee905ce..0136586417 100644 --- a/the_azle_book/book/cross_canister.html +++ b/the_azle_book/book/cross_canister.html @@ -83,7 +83,7 @@ diff --git a/the_azle_book/book/cycles.html b/the_azle_book/book/cycles.html index 89f643fb57..5ba345e237 100644 --- a/the_azle_book/book/cycles.html +++ b/the_azle_book/book/cycles.html @@ -83,7 +83,7 @@ diff --git a/the_azle_book/book/deployment.html b/the_azle_book/book/deployment.html index 5d1d057d00..e78b476f31 100644 --- a/the_azle_book/book/deployment.html +++ b/the_azle_book/book/deployment.html @@ -83,7 +83,7 @@ diff --git a/the_azle_book/book/examples.html b/the_azle_book/book/examples.html index 68484f1f88..1831a8d4c4 100644 --- a/the_azle_book/book/examples.html +++ b/the_azle_book/book/examples.html @@ -83,7 +83,7 @@ diff --git a/the_azle_book/book/http.html b/the_azle_book/book/http.html index 3e120ba5dd..08d6d108a6 100644 --- a/the_azle_book/book/http.html +++ b/the_azle_book/book/http.html @@ -83,7 +83,7 @@ diff --git a/the_azle_book/book/index.html b/the_azle_book/book/index.html index eafa697b1c..cbd3eca9d8 100644 --- a/the_azle_book/book/index.html +++ b/the_azle_book/book/index.html @@ -83,7 +83,7 @@ diff --git a/the_azle_book/book/installation.html b/the_azle_book/book/installation.html index 0e3f8a0f39..f91e1a55a9 100644 --- a/the_azle_book/book/installation.html +++ b/the_azle_book/book/installation.html @@ -83,7 +83,7 @@ diff --git a/the_azle_book/book/internet_computer_overview.html b/the_azle_book/book/internet_computer_overview.html index 481684fe45..61436515aa 100644 --- a/the_azle_book/book/internet_computer_overview.html +++ b/the_azle_book/book/internet_computer_overview.html @@ -83,7 +83,7 @@ diff --git a/the_azle_book/book/print.html b/the_azle_book/book/print.html index 294f00c86c..fef8aac4d5 100644 --- a/the_azle_book/book/print.html +++ b/the_azle_book/book/print.html @@ -84,7 +84,7 @@ @@ -748,6 +748,7 @@

Limitations

Authentication

Examples:

@@ -756,6 +757,136 @@

Under-the-hood<

Azle attempts to enable you to perform traditional HTTP requests with traditional libraries. Currently Azle focuses on fetch. When importing toJwt, azle/http_client will overwrite the global fetch function and will intercept fetch requests that have Authorization headers with an Identity as a value.

Once intercepted, these requests are turned into @dfinity/agent requests that call the http_request and http_request_update canister methods directly, thus performing all of the required client-side authentication work.

We are working to push for ICP to more natively understand JWTs for authentication, without the need to intercept fetch requests and convert them into agent requests.

+

fetch TL;DR

+

Azle canisters use a custom fetch implementation to perform cross-canister calls and to perform HTTPS outcalls.

+

Here's an example of performing a cross-canister call:

+
import { serialize } from 'azle';
+import express from 'express';
+
+const app = express();
+
+app.use(express.json());
+
+app.post('/cross-canister-call', async (req, res) => {
+    const to: string = req.body.to;
+    const amount: number = req.body.amount;
+
+    const response = await fetch(`icp://dfdal-2uaaa-aaaaa-qaama-cai/transfer`, {
+        body: serialize({
+            candidPath: '/token.did',
+            args: [to, amount]
+        })
+    });
+    const responseJson = await response.json();
+
+    res.json(responseJson);
+});
+
+app.listen();
+
+

Keep these important points in mind when performing a cross-canister call:

+
    +
  • Use the icp:// protocol in the URL
  • +
  • The canister id of the canister that you are calling immediately follows icp:// in the URL
  • +
  • The canister method that you are calling immediately follows the canister id in the URL
  • +
  • The candidPath property of the body is the path to the Candid file defining the method signatures of the canister that you are calling. You must obtain this file and copy it into your canister. See the Assets chapter for info on copying files into your canister
  • +
  • The args property of the body is an array of the arguments that will be passed to the canister method that you are calling
  • +
+

Here's an example of performing an HTTPS outcall:

+
import express from 'express';
+
+const app = express();
+
+app.use(express.json());
+
+app.post('/https-outcall', async (_req, res) => {
+    const response = await fetch(`https://httpbin.org/headers`, {
+        headers: {
+            'X-Azle-Request-Key-0': 'X-Azle-Request-Value-0',
+            'X-Azle-Request-Key-1': 'X-Azle-Request-Value-1',
+            'X-Azle-Request-Key-2': 'X-Azle-Request-Value-2'
+        }
+    });
+    const responseJson = await response.json();
+
+    res.json(responseJson);
+});
+
+app.listen();
+
+

fetch

+

Azle has custom fetch implementations for clients and canisters.

+

The client fetch is used for authentication, and you can learn more about it in the Authentication chapter.

+

Canister fetch is used to perform cross-canister calls and HTTPS outcalls. There are three main types of calls made with canister fetch:

+
    +
  1. Cross-canister calls to a candid canister
  2. +
  3. Cross-canister calls to an HTTP canister
  4. +
  5. HTTPS outcalls
  6. +
+

Cross-canister calls to a candid canister

+

Examples:

+ +

Cross-canister calls to an HTTP canister

+

We are working on better abstractions for these types of calls. For now you would just make a cross-canister call using icp:// to the http_request and http_request_update methods of the canister that you are calling.

+

HTTPS outcalls

+

Examples:

+ +

Debugging TL;DR

If your terminal logs ever say did not produce a response or response failed classification=Status code: 502 Bad Gateway, it most likely means that your canister has thrown an error and halted execution for that call. Use console.log and try/catch liberally to track down problems and reveal error information. If your error logs do not have useful messages, use try/catch with a console.log of the catch error argument to reveal the underlying error message.

Debugging

diff --git a/the_azle_book/book/searchindex.js b/the_azle_book/book/searchindex.js index 91106f65a1..15f51263b6 100644 --- a/the_azle_book/book/searchindex.js +++ b/the_azle_book/book/searchindex.js @@ -1 +1 @@ -Object.assign(window.search, {"doc_urls":["the_azle_book.html#the-azle-book-beta","get_started.html#get-started","get_started.html#installation","get_started.html#deployment","rest_based_examples.html#examples","deployment.html#deployment","deployment.html#starting-the-local-replica","deployment.html#deploying-to-the-local-replica","deployment.html#interacting-with-your-canister","deployment.html#deploying-to-mainnet","deployment.html#common-deployment-issues","project_structure.html#project-structure-tldr","servers.html#servers-tldr","servers.html#servers","servers.html#nodejs-httpserver","servers.html#express","servers.html#jsonstringify","servers.html#server","servers.html#limitations","assets.html#assets-tldr","authentication.html#authentication-tldr","authentication.html#authentication","authentication.html#under-the-hood","debugging.html#debugging-tldr","debugging.html#debugging","debugging.html#consolelog-and-trycatch","debugging.html#canister-did-not-produce-a-response","debugging.html#no-error-message","debugging.html#final-compiled-and-bundled-javascript","limitations.html#limitations-tldr","reference_http/reference.html#reference","reference_http/autoreload.html#autoreload","reference_http/environment_variables.html#environment-variables","reference_http/environment_variables.html#azle_autoreload","reference_http/environment_variables.html#azle_dockerfile_hash","reference_http/environment_variables.html#azle_identity_storage_mode","reference_http/environment_variables.html#azle_instruction_count","reference_http/environment_variables.html#azle_proptest_num_runs","reference_http/environment_variables.html#azle_proptest_path","reference_http/environment_variables.html#azle_proptest_quiet","reference_http/environment_variables.html#azle_proptest_seed","reference_http/environment_variables.html#azle_proptest_verbose","reference_http/environment_variables.html#azle_test_fetch","reference_http/environment_variables.html#azle_use_dockerfile","reference_http/environment_variables.html#azle_verbose","reference_http/environment_variables.html#azle_wasmedge_quickjs_dir","reference_http/native_compilation.html#native-compilation-tldr","reference_http/native_compilation.html#native-compilation","candid_based_documentation.html#old-candid-based-documentation","azle.html#azle-beta","azle.html#disclaimer","azle.html#demergent-labs","azle.html#benefits-and-drawbacks","azle.html#benefits","azle.html#drawbacks","internet_computer_overview.html#internet-computer-overview","canisters_overview.html#canisters-overview","installation.html#installation","hello_world.html#hello-world","hello_world.html#quick-start","hello_world.html#methodical-start","hello_world.html#the-project-directory-and-file-structure","hello_world.html#indexts","hello_world.html#tsconfigjson","hello_world.html#dfxjson","hello_world.html#local-deployment","hello_world.html#common-deployment-issues","hello_world.html#interacting-with-your-canister-from-the-command-line","hello_world.html#interacting-with-your-canister-from-the-web-ui","deployment_candid_based.html#deployment","deployment_candid_based.html#starting-the-local-replica","deployment_candid_based.html#deploying-to-the-local-replica","deployment_candid_based.html#interacting-with-your-canister","deployment_candid_based.html#dfx-command-line","deployment_candid_based.html#dfx-web-ui","deployment_candid_based.html#dfinityagent","deployment_candid_based.html#deploying-to-mainnet","deployment_candid_based.html#common-deployment-issues","examples.html#examples","query_methods.html#query-methods","query_methods.html#tldr","update_methods.html#update-methods","update_methods.html#tldr","candid.html#candid","stable_structures.html#stable-structures","stable_structures.html#tldr","stable_structures.html#caveats","stable_structures.html#float64-values","stable_structures.html#candidtype-performance","stable_structures.html#migrations","stable_structures.html#canister","cross_canister.html#cross-canister","http.html#http","http.html#incoming-http-requests","http.html#outgoing-http-requests","management_canister.html#management-canister","canister_lifecycle.html#canister-lifecycle","timers.html#timers","cycles.html#cycles","caveats.html#caveats","caveats.html#unknown-security-vulnerabilities","caveats.html#npm-packages","caveats.html#javascript-environment-apis","caveats.html#high-candid-encodingdecoding-costs","caveats.html#promises","caveats.html#jsonparse-and-stablebtreemap-float64-values","reference/reference.html#reference","reference/bitcoin.html#bitcoin","reference/bitcoin.html#tecdsa","reference/bitcoin.html#bitcoin-integration","reference/bitcoin.html#ckbtc","reference/call_apis/call_apis.html#call-apis","reference/call_apis/accept_message.html#accept-message","reference/call_apis/arg_data_raw.html#arg-data-raw","reference/call_apis/arg_data_raw_size.html#arg-data-raw-size","reference/call_apis/call.html#call","reference/call_apis/call_raw.html#call-raw","reference/call_apis/call_raw128.html#call-raw-128","reference/call_apis/call_with_payment.html#call-with-payment","reference/call_apis/call_with_payment128.html#call-with-payment-128","reference/call_apis/caller.html#caller","reference/call_apis/method_name.html#method-name","reference/call_apis/msg_cycles_accept.html#msg-cycles-accept","reference/call_apis/msg_cycles_accept128.html#msg-cycles-accept-128","reference/call_apis/msg_cycles_available.html#msg-cycles-available","reference/call_apis/msg_cycles_available128.html#msg-cycles-available-128","reference/call_apis/msg_cycles_refunded.html#msg-cycles-refunded","reference/call_apis/msg_cycles_refunded128.html#msg-cycles-refunded-128","reference/call_apis/notify.html#notify","reference/call_apis/notify_raw.html#notify-raw","reference/call_apis/notify_with_payment_128.html#notify-with-payment-128","reference/call_apis/reject.html#reject","reference/call_apis/reject_code.html#reject-code","reference/call_apis/reject_message.html#reject-message","reference/call_apis/reply.html#reply","reference/call_apis/reply_raw.html#reply-raw","reference/candid/candid.html#candid","reference/candid/blob.html#blob","reference/candid/bool.html#bool","reference/candid/empty.html#empty","reference/candid/float32.html#float32","reference/candid/float64.html#float64","reference/candid/func.html#func","reference/candid/int.html#int","reference/candid/int8.html#int8","reference/candid/int16.html#int16","reference/candid/int32.html#int32","reference/candid/int64.html#int64","reference/candid/nat.html#nat","reference/candid/nat8.html#nat8","reference/candid/nat16.html#nat16","reference/candid/nat32.html#nat32","reference/candid/nat64.html#nat64","reference/candid/null.html#null","reference/candid/opt.html#opt","reference/candid/principal.html#principal","reference/candid/record.html#record","reference/candid/reserved.html#reserved","reference/candid/service.html#service","reference/candid/text.html#text","reference/candid/variant.html#variant","reference/candid/vec.html#vec","reference/canister_apis/canister_apis.html#canister-apis","reference/canister_apis/candid_decode.html#candid-decode","reference/canister_apis/candid_encode.html#candid-encode","reference/canister_apis/canister_balance.html#canister-balance","reference/canister_apis/canister_balance128.html#canister-balance-128","reference/canister_apis/canister_version.html#canister-version","reference/canister_apis/canister_id.html#canister-id","reference/canister_apis/data_certificate.html#data-certificate","reference/canister_apis/instruction_counter.html#instruction-counter","reference/canister_apis/is_controller.html#is-controller","reference/canister_apis/performance_counter.html#performance-counter","reference/canister_apis/print.html#print","reference/canister_apis/set_certified_data.html#set-certified-data","reference/canister_apis/time.html#time","reference/canister_apis/trap.html#trap","reference/canister_methods/canister_methods.html#canister-methods","reference/canister_methods/heartbeat.html#heartbeat","reference/canister_methods/http_request.html#http_request","reference/canister_methods/http_request_update.html#http_request","reference/canister_methods/init.html#init","reference/canister_methods/inspect_message.html#inspect-message","reference/canister_methods/post_upgrade.html#post-upgrade","reference/canister_methods/pre_upgrade.html#pre-upgrade","reference/canister_methods/query.html#query","reference/canister_methods/update.html#update","reference/environment_variables.html#environment-variables","reference/environment_variables.html#dfxjson","reference/environment_variables.html#processenv","reference/management_canister/management_canister.html#management-canister","reference/management_canister/bitcoin_get_balance.html#bitcoin_get_balance","reference/management_canister/bitcoin_get_current_fee_percentiles.html#bitcoin_get_current_fee_percentiles","reference/management_canister/bitcoin_get_utxos.html#bitcoin_get_utxos","reference/management_canister/bitcoin_send_transaction.html#bitcoin_send_transaction","reference/management_canister/canister_status.html#canister_status","reference/management_canister/create_canister.html#create_canister","reference/management_canister/delete_canister.html#delete_canister","reference/management_canister/deposit_cycles.html#deposit_cycles","reference/management_canister/ecdsa_public_key.html#ecdsa_public_key","reference/management_canister/http_request.html#http_request","reference/management_canister/install_code.html#install_code","reference/management_canister/provisional_create_canister_with_cycles.html#provisional_create_canister_with_cycles","reference/management_canister/provisional_top_up_canister.html#provisional_top_up_canister","reference/management_canister/raw_rand.html#raw_rand","reference/management_canister/sign_with_ecdsa.html#sign_with_ecdsa","reference/management_canister/start_canister.html#start_canister","reference/management_canister/stop_canister.html#stop_canister","reference/management_canister/uninstall_code.html#uninstall_code","reference/management_canister/update_settings.html#update_settings","reference/plugins.html#plugins","reference/plugins.html#local-plugin","reference/plugins.html#npm-plugin","reference/stable_memory/stable_memory.html#stable-memory","reference/stable_memory/stable_structures.html#stable-structures","reference/stable_memory/stable_bytes.html#stable-bytes","reference/stable_memory/stable_grow.html#stable-grow","reference/stable_memory/stable_read.html#stable-read","reference/stable_memory/stable_size.html#stable-size","reference/stable_memory/stable_write.html#stable-write","reference/stable_memory/stable64_grow.html#stable64-grow","reference/stable_memory/stable64_read.html#stable64-read","reference/stable_memory/stable64_size.html#stable64-size","reference/stable_memory/stable64_write.html#stable64-write","reference/timers/timers.html#timers","reference/timers/clear_timer.html#clear-timer","reference/timers/set_timer.html#set-timer","reference/timers/set_timer_interval.html#set-timer-interval","reference/wasm_binary_optimization.html#wasm-binary-optimization"],"index":{"documentStore":{"docInfo":{"0":{"body":155,"breadcrumbs":6,"title":3},"1":{"body":48,"breadcrumbs":2,"title":1},"10":{"body":75,"breadcrumbs":4,"title":3},"100":{"body":7,"breadcrumbs":8,"title":3},"101":{"body":36,"breadcrumbs":7,"title":2},"102":{"body":12,"breadcrumbs":8,"title":3},"103":{"body":27,"breadcrumbs":9,"title":4},"104":{"body":17,"breadcrumbs":6,"title":1},"105":{"body":17,"breadcrumbs":9,"title":4},"106":{"body":19,"breadcrumbs":6,"title":1},"107":{"body":15,"breadcrumbs":7,"title":1},"108":{"body":26,"breadcrumbs":7,"title":1},"109":{"body":27,"breadcrumbs":8,"title":2},"11":{"body":63,"breadcrumbs":5,"title":3},"110":{"body":30,"breadcrumbs":7,"title":1},"111":{"body":58,"breadcrumbs":9,"title":2},"112":{"body":17,"breadcrumbs":11,"title":2},"113":{"body":34,"breadcrumbs":13,"title":3},"114":{"body":36,"breadcrumbs":15,"title":4},"115":{"body":68,"breadcrumbs":9,"title":1},"116":{"body":39,"breadcrumbs":11,"title":2},"117":{"body":38,"breadcrumbs":13,"title":3},"118":{"body":47,"breadcrumbs":11,"title":2},"119":{"body":42,"breadcrumbs":13,"title":3},"12":{"body":42,"breadcrumbs":3,"title":2},"120":{"body":26,"breadcrumbs":9,"title":1},"121":{"body":46,"breadcrumbs":11,"title":2},"122":{"body":24,"breadcrumbs":13,"title":3},"123":{"body":24,"breadcrumbs":15,"title":4},"124":{"body":24,"breadcrumbs":13,"title":3},"125":{"body":24,"breadcrumbs":15,"title":4},"126":{"body":33,"breadcrumbs":13,"title":3},"127":{"body":33,"breadcrumbs":15,"title":4},"128":{"body":25,"breadcrumbs":9,"title":1},"129":{"body":28,"breadcrumbs":11,"title":2},"13":{"body":74,"breadcrumbs":2,"title":1},"130":{"body":24,"breadcrumbs":13,"title":3},"131":{"body":26,"breadcrumbs":9,"title":1},"132":{"body":25,"breadcrumbs":11,"title":2},"133":{"body":25,"breadcrumbs":11,"title":2},"134":{"body":33,"breadcrumbs":9,"title":1},"135":{"body":62,"breadcrumbs":11,"title":2},"136":{"body":25,"breadcrumbs":7,"title":1},"137":{"body":78,"breadcrumbs":8,"title":1},"138":{"body":54,"breadcrumbs":8,"title":1},"139":{"body":90,"breadcrumbs":8,"title":1},"14":{"body":47,"breadcrumbs":3,"title":2},"140":{"body":56,"breadcrumbs":8,"title":1},"141":{"body":56,"breadcrumbs":8,"title":1},"142":{"body":120,"breadcrumbs":8,"title":1},"143":{"body":56,"breadcrumbs":8,"title":1},"144":{"body":56,"breadcrumbs":8,"title":1},"145":{"body":56,"breadcrumbs":8,"title":1},"146":{"body":56,"breadcrumbs":8,"title":1},"147":{"body":56,"breadcrumbs":8,"title":1},"148":{"body":56,"breadcrumbs":8,"title":1},"149":{"body":56,"breadcrumbs":8,"title":1},"15":{"body":44,"breadcrumbs":2,"title":1},"150":{"body":56,"breadcrumbs":8,"title":1},"151":{"body":56,"breadcrumbs":8,"title":1},"152":{"body":56,"breadcrumbs":8,"title":1},"153":{"body":55,"breadcrumbs":8,"title":1},"154":{"body":79,"breadcrumbs":8,"title":1},"155":{"body":69,"breadcrumbs":8,"title":1},"156":{"body":95,"breadcrumbs":8,"title":1},"157":{"body":54,"breadcrumbs":8,"title":1},"158":{"body":100,"breadcrumbs":8,"title":1},"159":{"body":57,"breadcrumbs":8,"title":1},"16":{"body":60,"breadcrumbs":2,"title":1},"160":{"body":103,"breadcrumbs":8,"title":1},"161":{"body":90,"breadcrumbs":8,"title":1},"162":{"body":26,"breadcrumbs":9,"title":2},"163":{"body":27,"breadcrumbs":11,"title":2},"164":{"body":30,"breadcrumbs":11,"title":2},"165":{"body":25,"breadcrumbs":11,"title":2},"166":{"body":25,"breadcrumbs":13,"title":3},"167":{"body":23,"breadcrumbs":11,"title":2},"168":{"body":26,"breadcrumbs":11,"title":2},"169":{"body":35,"breadcrumbs":11,"title":2},"17":{"body":146,"breadcrumbs":2,"title":1},"170":{"body":27,"breadcrumbs":11,"title":2},"171":{"body":27,"breadcrumbs":9,"title":1},"172":{"body":19,"breadcrumbs":11,"title":2},"173":{"body":29,"breadcrumbs":9,"title":1},"174":{"body":26,"breadcrumbs":13,"title":3},"175":{"body":23,"breadcrumbs":9,"title":1},"176":{"body":35,"breadcrumbs":9,"title":1},"177":{"body":12,"breadcrumbs":9,"title":2},"178":{"body":21,"breadcrumbs":9,"title":1},"179":{"body":105,"breadcrumbs":9,"title":1},"18":{"body":43,"breadcrumbs":2,"title":1},"180":{"body":105,"breadcrumbs":9,"title":1},"181":{"body":26,"breadcrumbs":9,"title":1},"182":{"body":46,"breadcrumbs":11,"title":2},"183":{"body":19,"breadcrumbs":11,"title":2},"184":{"body":19,"breadcrumbs":11,"title":2},"185":{"body":17,"breadcrumbs":9,"title":1},"186":{"body":25,"breadcrumbs":9,"title":1},"187":{"body":25,"breadcrumbs":9,"title":2},"188":{"body":40,"breadcrumbs":8,"title":1},"189":{"body":27,"breadcrumbs":8,"title":1},"19":{"body":180,"breadcrumbs":3,"title":2},"190":{"body":20,"breadcrumbs":9,"title":2},"191":{"body":39,"breadcrumbs":9,"title":1},"192":{"body":35,"breadcrumbs":9,"title":1},"193":{"body":39,"breadcrumbs":9,"title":1},"194":{"body":44,"breadcrumbs":9,"title":1},"195":{"body":29,"breadcrumbs":9,"title":1},"196":{"body":30,"breadcrumbs":9,"title":1},"197":{"body":30,"breadcrumbs":9,"title":1},"198":{"body":32,"breadcrumbs":9,"title":1},"199":{"body":50,"breadcrumbs":9,"title":1},"2":{"body":93,"breadcrumbs":2,"title":1},"20":{"body":221,"breadcrumbs":3,"title":2},"200":{"body":56,"breadcrumbs":9,"title":1},"201":{"body":43,"breadcrumbs":9,"title":1},"202":{"body":31,"breadcrumbs":9,"title":1},"203":{"body":35,"breadcrumbs":9,"title":1},"204":{"body":27,"breadcrumbs":9,"title":1},"205":{"body":57,"breadcrumbs":9,"title":1},"206":{"body":30,"breadcrumbs":9,"title":1},"207":{"body":30,"breadcrumbs":9,"title":1},"208":{"body":30,"breadcrumbs":9,"title":1},"209":{"body":40,"breadcrumbs":9,"title":1},"21":{"body":3,"breadcrumbs":2,"title":1},"210":{"body":40,"breadcrumbs":7,"title":1},"211":{"body":9,"breadcrumbs":8,"title":2},"212":{"body":12,"breadcrumbs":8,"title":2},"213":{"body":20,"breadcrumbs":9,"title":2},"214":{"body":98,"breadcrumbs":11,"title":2},"215":{"body":19,"breadcrumbs":11,"title":2},"216":{"body":20,"breadcrumbs":11,"title":2},"217":{"body":24,"breadcrumbs":11,"title":2},"218":{"body":19,"breadcrumbs":11,"title":2},"219":{"body":24,"breadcrumbs":11,"title":2},"22":{"body":91,"breadcrumbs":3,"title":2},"220":{"body":20,"breadcrumbs":11,"title":2},"221":{"body":24,"breadcrumbs":11,"title":2},"222":{"body":19,"breadcrumbs":11,"title":2},"223":{"body":24,"breadcrumbs":11,"title":2},"224":{"body":7,"breadcrumbs":7,"title":1},"225":{"body":20,"breadcrumbs":10,"title":2},"226":{"body":42,"breadcrumbs":10,"title":2},"227":{"body":44,"breadcrumbs":12,"title":3},"228":{"body":94,"breadcrumbs":11,"title":3},"23":{"body":42,"breadcrumbs":3,"title":2},"24":{"body":28,"breadcrumbs":2,"title":1},"25":{"body":14,"breadcrumbs":3,"title":2},"26":{"body":99,"breadcrumbs":4,"title":3},"27":{"body":340,"breadcrumbs":3,"title":2},"28":{"body":54,"breadcrumbs":5,"title":4},"29":{"body":74,"breadcrumbs":3,"title":2},"3":{"body":74,"breadcrumbs":2,"title":1},"30":{"body":5,"breadcrumbs":2,"title":1},"31":{"body":106,"breadcrumbs":3,"title":1},"32":{"body":13,"breadcrumbs":5,"title":2},"33":{"body":12,"breadcrumbs":4,"title":1},"34":{"body":26,"breadcrumbs":4,"title":1},"35":{"body":3,"breadcrumbs":4,"title":1},"36":{"body":11,"breadcrumbs":4,"title":1},"37":{"body":3,"breadcrumbs":4,"title":1},"38":{"body":3,"breadcrumbs":4,"title":1},"39":{"body":3,"breadcrumbs":4,"title":1},"4":{"body":26,"breadcrumbs":2,"title":1},"40":{"body":3,"breadcrumbs":4,"title":1},"41":{"body":3,"breadcrumbs":4,"title":1},"42":{"body":3,"breadcrumbs":4,"title":1},"43":{"body":15,"breadcrumbs":4,"title":1},"44":{"body":9,"breadcrumbs":4,"title":1},"45":{"body":13,"breadcrumbs":4,"title":1},"46":{"body":19,"breadcrumbs":6,"title":3},"47":{"body":174,"breadcrumbs":5,"title":2},"48":{"body":66,"breadcrumbs":8,"title":4},"49":{"body":24,"breadcrumbs":8,"title":2},"5":{"body":42,"breadcrumbs":2,"title":1},"50":{"body":31,"breadcrumbs":7,"title":1},"51":{"body":20,"breadcrumbs":8,"title":2},"52":{"body":21,"breadcrumbs":8,"title":2},"53":{"body":866,"breadcrumbs":7,"title":1},"54":{"body":361,"breadcrumbs":7,"title":1},"55":{"body":137,"breadcrumbs":10,"title":3},"56":{"body":104,"breadcrumbs":8,"title":2},"57":{"body":93,"breadcrumbs":6,"title":1},"58":{"body":68,"breadcrumbs":8,"title":2},"59":{"body":80,"breadcrumbs":8,"title":2},"6":{"body":73,"breadcrumbs":4,"title":3},"60":{"body":0,"breadcrumbs":8,"title":2},"61":{"body":43,"breadcrumbs":10,"title":4},"62":{"body":271,"breadcrumbs":7,"title":1},"63":{"body":14,"breadcrumbs":7,"title":1},"64":{"body":19,"breadcrumbs":7,"title":1},"65":{"body":14,"breadcrumbs":8,"title":2},"66":{"body":9,"breadcrumbs":9,"title":3},"67":{"body":36,"breadcrumbs":10,"title":4},"68":{"body":44,"breadcrumbs":10,"title":4},"69":{"body":39,"breadcrumbs":6,"title":1},"7":{"body":27,"breadcrumbs":4,"title":3},"70":{"body":65,"breadcrumbs":8,"title":3},"71":{"body":12,"breadcrumbs":8,"title":3},"72":{"body":13,"breadcrumbs":7,"title":2},"73":{"body":59,"breadcrumbs":8,"title":3},"74":{"body":39,"breadcrumbs":8,"title":3},"75":{"body":21,"breadcrumbs":6,"title":1},"76":{"body":22,"breadcrumbs":7,"title":2},"77":{"body":64,"breadcrumbs":8,"title":3},"78":{"body":51,"breadcrumbs":6,"title":1},"79":{"body":0,"breadcrumbs":8,"title":2},"8":{"body":65,"breadcrumbs":3,"title":2},"80":{"body":304,"breadcrumbs":7,"title":1},"81":{"body":0,"breadcrumbs":8,"title":2},"82":{"body":483,"breadcrumbs":7,"title":1},"83":{"body":421,"breadcrumbs":6,"title":1},"84":{"body":0,"breadcrumbs":8,"title":2},"85":{"body":794,"breadcrumbs":7,"title":1},"86":{"body":0,"breadcrumbs":7,"title":1},"87":{"body":12,"breadcrumbs":8,"title":2},"88":{"body":50,"breadcrumbs":8,"title":2},"89":{"body":25,"breadcrumbs":7,"title":1},"9":{"body":28,"breadcrumbs":3,"title":2},"90":{"body":24,"breadcrumbs":7,"title":1},"91":{"body":538,"breadcrumbs":8,"title":2},"92":{"body":3,"breadcrumbs":6,"title":1},"93":{"body":102,"breadcrumbs":8,"title":3},"94":{"body":149,"breadcrumbs":8,"title":3},"95":{"body":32,"breadcrumbs":8,"title":2},"96":{"body":29,"breadcrumbs":8,"title":2},"97":{"body":163,"breadcrumbs":6,"title":1},"98":{"body":83,"breadcrumbs":6,"title":1},"99":{"body":0,"breadcrumbs":6,"title":1}},"docs":{"0":{"body":"Welcome to The Azle Book! This is a guide for building secure decentralized/replicated servers in TypeScript or JavaScript on ICP . The current replication factor is 13-40 times . Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP The Azle Book is subject to the following license and Azle's License Extension : MIT License Copyright (c) 2024 AZLE token holders (nlhft-2iaaa-aaaae-qaaua-cai) Permission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.","breadcrumbs":"The Azle Book (Beta) » The Azle Book (Beta)","id":"0","title":"The Azle Book (Beta)"},"1":{"body":"Installation Deployment Azle helps you to build secure decentralized/replicated servers in TypeScript or JavaScript on ICP . The current replication factor is 13-40 times . Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP","breadcrumbs":"Get Started » Get Started","id":"1","title":"Get Started"},"10":{"body":"If you run into an error during deployment, try the following: Ensure that you have followed the installation instructions exactly as specified in the Get Started chapter Start the whole deployment process from scratch and look for more error output by doing the following: In your replica terminal: Terminate the replica in your terminal or run dfx stop if your replica is running in the background dfx start --clean --host 127.0.0.1:8000 In your project terminal at the root directory of your project: rm -rf node_modules npm install npx azle clean AZLE_VERBOSE=true dfx deploy If the build process hangs on Waiting for VM ..., see this issue for possible fixes If the problem is still not resolved, reach out with the error output in the Discord channel","breadcrumbs":"Deployment » Common deployment issues","id":"10","title":"Common deployment issues"},"100":{"body":"Azle is a beta project. See the disclaimer for more information.","breadcrumbs":"Old Candid-based Documentation » Caveats » Unknown security vulnerabilities","id":"100","title":"Unknown security vulnerabilities"},"101":{"body":"Some npm packages will work and some will not work. It is our long-term goal to support as many npm packages as possible. There are various reasons why an npm package may not currently work, including the small Wasm binary limit of the IC and unimplemented web or Node.js APIs. Feel free to open issues if your npm package does not work in Azle.","breadcrumbs":"Old Candid-based Documentation » Caveats » npm packages","id":"101","title":"npm packages"},"102":{"body":"You may encounter various missing JavaScript environment APIs, such as those you would expect in the web or Node.js environments.","breadcrumbs":"Old Candid-based Documentation » Caveats » JavaScript environment APIs","id":"102","title":"JavaScript environment APIs"},"103":{"body":"Candid encoding/decoding is currently very unoptimized. This will most likely lead to a ~1-2 million extra fixed instruction cost for all calls. Be careful using CandidType Serializable objects with StableBTreeMap, or using any other API or data structure that engages in Candid encoding/decoding.","breadcrumbs":"Old Candid-based Documentation » Caveats » High Candid encoding/decoding costs","id":"103","title":"High Candid encoding/decoding costs"},"104":{"body":"Though promises are implemented, the underlying queue that handles asynchronous operations is very simple. This queue will not behave exactly as queues from the major JS engines.","breadcrumbs":"Old Candid-based Documentation » Caveats » Promises","id":"104","title":"Promises"},"105":{"body":"It seems to be only some float64 values cannot be successfully stored and retrieved with a StableBTreeMap using stableJson because of this bug with JSON.parse: https://github.com/bellard/quickjs/issues/206 This will also affect stand-alone usage of JSON.parse.","breadcrumbs":"Old Candid-based Documentation » Caveats » JSON.parse and StableBTreeMap float64 values","id":"105","title":"JSON.parse and StableBTreeMap float64 values"},"106":{"body":"Bitcoin Call APIs Candid Canister APIs Canister Methods Environment Variables Management Canister Plugins Stable Memory Timers Wasm Binary Optimization","breadcrumbs":"Old Candid-based Documentation » Reference » Reference","id":"106","title":"Reference"},"107":{"body":"The Internet Computer (IC) interacts with the Bitcoin blockchain through the use of tECDSA, the Bitcoin integration, and a ledger canister called ckBTC.","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » Bitcoin","id":"107","title":"Bitcoin"},"108":{"body":"tECDSA on the IC allows canisters to request access to threshold ECDSA keypairs on the tECDSA subnet. This functionality is exposed through two management canister methods: ecdsa_public_key sign_with_ecdsa The following are examples using tECDSA: basic_bitcoin threshold_ecdsa","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » tECDSA","id":"108","title":"tECDSA"},"109":{"body":"The Bitcoin integration allows canisters on the IC to interact directly with the Bitcoin network. This functionality is exposed through the following management canister methods: bitcoin_get_balance bitcoin_get_current_fee_percentiles bitcoin_get_utxos bitcoin_send_transaction The following are examples using the Bitcoin integration: basic_bitcoin bitcoin","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » Bitcoin integration","id":"109","title":"Bitcoin integration"},"11":{"body":"Your project is just a directory with a dfx.json file that points to your .ts or .js entrypoint. Here's what your directory structure might look like: hello_world/\n|\n├── dfx.json\n|\n└── src/ └── api.ts And the corresponding dfx.json file: { \"canisters\": { \"api\": { \"type\": \"custom\", \"main\": \"src/api.ts\", \"candid\": \"src/api.did\", \"candid_gen\": \"http\", \"build\": \"npx azle api\", \"wasm\": \".azle/api/api.wasm\", \"gzip\": true, \"metadata\": [ { \"name\": \"candid:service\", \"path\": \"src/api.did\" }, { \"name\": \"cdk:name\", \"content\": \"azle\" } ] } }\n} Once you have created this directory structure you can deploy to mainnet or a locally running replica by running the dfx deploy command in the same directory as your dfx.json file.","breadcrumbs":"Project Structure » Project Structure TL;DR","id":"11","title":"Project Structure TL;DR"},"110":{"body":"ckBTC is a ledger canister deployed to the IC. It follows the ICRC standard, and can be accessed easily from an Azle canister using azle/canisters/ICRC if you only need the ICRC methods. For access to the full ledger methods you will need to create your own Service for now. The following are examples using ckBTC: ckBTC","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » ckBTC","id":"110","title":"ckBTC"},"111":{"body":"accept message arg data raw arg data raw size call call raw call raw 128 call with payment call with payment 128 caller method name msg cycles accept msg cycles accept 128 msg cycles available msg cycles available 128 msg cycles refunded msg cycles refunded 128 notify notify raw notify with payment 128 reject reject code reject message reply reply raw","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » Call APIs","id":"111","title":"Call APIs"},"112":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { Canister, ic, inspectMessage } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { ic.acceptMessage(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » accept message » accept message","id":"112","title":"accept message"},"113":{"body":"This section is a work in progress. Examples: ic_api import { blob, bool, Canister, ic, int8, query, text } from 'azle'; export default Canister({ // returns the argument data as bytes. argDataRaw: query( [blob, int8, bool, text], blob, (arg1, arg2, arg3, arg4) => { return ic.argDataRaw(); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » arg data raw » arg data raw","id":"113","title":"arg data raw"},"114":{"body":"This section is a work in progress. Examples: ic_api import { blob, bool, Canister, ic, int8, nat, query, text } from 'azle'; export default Canister({ // returns the length of the argument data in bytes argDataRawSize: query( [blob, int8, bool, text], nat, (arg1, arg2, arg3, arg4) => { return ic.argDataRawSize(); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » arg data raw size » arg data raw size","id":"114","title":"arg data raw size"},"115":{"body":"This section is a work in progress. Examples: async_await bitcoin composite_queries cross_canister_calls cycles ethereum_json_rpc func_types heartbeat inline_types ledger_canister management_canister outgoing_http_requests threshold_ecdsa rejections timers tuple_types whoami import { Canister, ic, init, nat64, Principal, update } from 'azle'; const TokenCanister = Canister({ transfer: update([Principal, nat64], nat64)\n}); let tokenCanister: typeof TokenCanister; export default Canister({ init: init([], setup), postDeploy: init([], setup), payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); function setup() { tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai') );\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call » call","id":"115","title":"call"},"116":{"body":"This section is a work in progress. Examples: call_raw outgoing_http_requests import { Canister, ic, nat64, Principal, text, update } from 'azle'; export default Canister({ executeCallRaw: update( [Principal, text, text, nat64], text, async (canisterId, method, candidArgs, payment) => { const candidBytes = await ic.callRaw( canisterId, method, ic.candidEncode(candidArgs), payment ); return ic.candidDecode(candidBytes); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call raw » call raw","id":"116","title":"call raw"},"117":{"body":"This section is a work in progress. Examples: call_raw import { Canister, ic, nat, Principal, text, update } from 'azle'; export default Canister({ executeCallRaw128: update( [Principal, text, text, nat], text, async (canisterId, method, candidArgs, payment) => { const candidBytes = await ic.callRaw128( canisterId, method, ic.candidEncode(candidArgs), payment ); return ic.candidDecode(candidBytes); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call raw 128 » call raw 128","id":"117","title":"call raw 128"},"118":{"body":"This section is a work in progress. Examples: bitcoin cycles ethereum_json_rpc management_canister outgoing_http_requests threshold_ecdsa import { blob, Canister, ic, Principal, update, Void } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], Void, async (canisterId, wasmModule) => { return await ic.call(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call with payment » call with payment","id":"118","title":"call with payment"},"119":{"body":"This section is a work in progress. Examples: cycles import { blob, Canister, ic, Principal, update, Void } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], Void, async (canisterId, wasmModule) => { return await ic.call128(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call with payment 128 » call with payment 128","id":"119","title":"call with payment 128"},"12":{"body":"Just write Node.js servers like this: import { createServer } from 'http'; const server = createServer((req, res) => { res.write('Hello World!'); res.end();\n}); server.listen(); or write Express servers like this: import express, { Request } from 'express'; let db = { hello: ''\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.json(db);\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.json(db);\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » Servers TL;DR","id":"12","title":"Servers TL;DR"},"120":{"body":"This section is a work in progress. Examples: ic_api threshold_ecdsa whoami import { Canister, ic, Principal, update } from 'azle'; export default Canister({ // returns the principal of the identity that called this function caller: update([], Principal, () => { return ic.caller(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » caller » caller","id":"120","title":"caller"},"121":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { bool, Canister, ic, inspectMessage, update } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { console.log('inspectMessage called'); if (ic.methodName() === 'accessible') { ic.acceptMessage(); return; } if (ic.methodName() === 'inaccessible') { return; } throw `Method \"${ic.methodName()}\" not allowed`; }), accessible: update([], bool, () => { return true; }), inaccessible: update([], bool, () => { return false; }), alsoInaccessible: update([], bool, () => { return false; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » method name » method name","id":"121","title":"method name"},"122":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles: update([], nat64, () => { return ic.msgCyclesAccept(ic.msgCyclesAvailable() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles accept » msg cycles accept","id":"122","title":"msg cycles accept"},"123":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles128: update([], nat64, () => { return ic.msgCyclesAccept128(ic.msgCyclesAvailable128() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles accept 128 » msg cycles accept 128","id":"123","title":"msg cycles accept 128"},"124":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles: update([], nat64, () => { return ic.msgCyclesAccept(ic.msgCyclesAvailable() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles available » msg cycles available","id":"124","title":"msg cycles available"},"125":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles128: update([], nat64, () => { return ic.msgCyclesAccept128(ic.msgCyclesAvailable128() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles available 128 » msg cycles available 128","id":"125","title":"msg cycles available 128"},"126":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ // Reports the number of cycles returned from the Cycles canister sendCycles: update([], nat64, async () => { await ic.call(otherCanister.receiveCycles, { cycles: 1_000_000n }); return ic.msgCyclesRefunded(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles refunded » msg cycles refunded","id":"126","title":"msg cycles refunded"},"127":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ // Reports the number of cycles returned from the Cycles canister sendCycles128: update([], nat64, async () => { await ic.call128(otherCanister.receiveCycles128, { cycles: 1_000_000n }); return ic.msgCyclesRefunded128(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles refunded 128 » msg cycles refunded 128","id":"127","title":"msg cycles refunded 128"},"128":{"body":"This section is a work in progress. Examples: cross_canister_calls cycles import { Canister, ic, update, Void } from 'azle';\nimport { otherCanister } from './otherCanister'; export default Canister({ sendNotification: update([], Void, () => { return ic.notify(otherCanister.receiveNotification, { args: ['This is the notification'] }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify » notify","id":"128","title":"notify"},"129":{"body":"This section is a work in progress. Examples: notify_raw import { Canister, ic, Principal, update, Void } from 'azle'; export default Canister({ sendNotification: update([], Void, () => { return ic.notifyRaw( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai'), 'receiveNotification', Uint8Array.from(ic.candidEncode('()')), 0n ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify raw » notify raw","id":"129","title":"notify raw"},"13":{"body":"Node.js http.server Express Server Limitations Azle supports building HTTP servers on ICP using the Node.js http.Server class as the foundation. These servers can serve static files or act as API backends, or both. Azle currently has good but not comprehensive support for Node.js http.Server and Express . Support for other libraries like Nest are works-in-progress. Once deployed you can access your server at a URL like this locally http://bkyz2-fmaaa-aaaaa-qaaaq-cai.localhost:8000 or like this on mainnet https://bkyz2-fmaaa-aaaaa-qaaaq-cai.raw.icp0.io. You can use any HTTP client to interact with your server, such as curl, fetch, or a web browser. See the Interacting with your canister section of the deployment chapter for help in constructing your canister URL.","breadcrumbs":"Servers » Servers","id":"13","title":"Servers"},"130":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, update, Void } from 'azle';\nimport { otherCanister } from './otherCanister'; export default Canister({ sendCycles128Notify: update([], Void, () => { return ic.notify(otherCanister.receiveCycles128, { cycles: 1_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify with payment 128 » notify with payment 128","id":"130","title":"notify with payment 128"},"131":{"body":"This section is a work in progress. Examples: ic_api manual_reply rejections import { Canister, empty, ic, Manual, query, text } from 'azle'; export default Canister({ reject: query( [text], Manual(empty), (message) => { ic.reject(message); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject » reject","id":"131","title":"reject"},"132":{"body":"This section is a work in progress. Examples: rejections import { Canister, ic, RejectionCode, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ getRejectionCodeDestinationInvalid: update([], RejectionCode, async () => { await ic.call(otherCanister.method); return ic.rejectCode(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject code » reject code","id":"132","title":"reject code"},"133":{"body":"This section is a work in progress. Examples: rejections import { Canister, ic, text, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ getRejectionMessage: update([], text, async () => { await ic.call(otherCanister.method); return ic.rejectMessage(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject message » reject message","id":"133","title":"reject message"},"134":{"body":"This section is a work in progress. Examples: composite_queries manual_reply import { blob, Canister, ic, Manual, update } from 'azle'; export default Canister({ updateBlob: update( [], Manual(blob), () => { ic.reply( new Uint8Array([83, 117, 114, 112, 114, 105, 115, 101, 33]), blob ); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reply » reply","id":"134","title":"reply"},"135":{"body":"This section is a work in progress. Examples: manual_reply outgoing_http_requests import { blob, bool, Canister, ic, int, Manual, Null, Record, text, update, Variant\n} from 'azle'; const Options = Variant({ High: Null, Medium: Null, Low: Null\n}); export default Canister({ replyRaw: update( [], Manual( Record({ int: int, text: text, bool: bool, blob: blob, variant: Options }) ), () => { ic.replyRaw( ic.candidEncode( '(record { \"int\" = 42; \"text\" = \"text\"; \"bool\" = true; \"blob\" = blob \"Surprise!\"; \"variant\" = variant { Medium } })' ) ); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reply raw » reply raw","id":"135","title":"reply raw"},"136":{"body":"blob bool empty float32 float64 func int int8 int16 int32 int64 nat nat8 nat16 nat32 nat64 null opt principal record reserved service text variant vec","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » Candid","id":"136","title":"Candid"},"137":{"body":"The CandidType object blob corresponds to the Candid type blob , is inferred to be a TypeScript Uint8Array and will be decoded into a JavaScript Uint8Array at runtime. TypeScript or JavaScript: import { blob, Canister, query } from 'azle'; export default Canister({ getBlob: query([], blob, () => { return Uint8Array.from([68, 73, 68, 76, 0, 0]); }), printBlob: query([blob], blob, (blob) => { console.log(typeof blob); return blob; })\n}); Candid: service : () -> { getBlob : () -> (vec nat8) query; printBlob : (vec nat8) -> (vec nat8) query;\n} dfx: dfx canister call candid_canister printBlob '(vec { 68; 73; 68; 76; 0; 0; })'\n(blob \"DIDL\\00\\00\") dfx canister call candid_canister printBlob '(blob \"DIDL\\00\\00\")'\n(blob \"DIDL\\00\\00\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » blob » blob","id":"137","title":"blob"},"138":{"body":"The CandidType object bool corresponds to the Candid type bool , is inferred to be a TypeScript boolean, and will be decoded into a JavaScript Boolean at runtime. TypeScript or JavaScript: import { bool, Canister, query } from 'azle'; export default Canister({ getBool: query([], bool, () => { return true; }), printBool: query([bool], bool, (bool) => { console.log(typeof bool); return bool; })\n}); Candid: service : () -> { getBool : () -> (bool) query; printBool : (bool) -> (bool) query;\n} dfx: dfx canister call candid_canister printBool '(true)'\n(true)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » bool » bool","id":"138","title":"bool"},"139":{"body":"The CandidType object empty corresponds to the Candid type empty , is inferred to be a TypeScript never, and has no JavaScript value at runtime. TypeScript or JavaScript: import { Canister, empty, query } from 'azle'; export default Canister({ getEmpty: query([], empty, () => { throw 'Anything you want'; }), // Note: It is impossible to call this function because it requires an argument // but there is no way to pass an \"empty\" value as an argument. printEmpty: query([empty], empty, (empty) => { console.log(typeof empty); throw 'Anything you want'; })\n}); Candid: service : () -> { getEmpty : () -> (empty) query; printEmpty : (empty) -> (empty) query;\n} dfx: dfx canister call candid_canister printEmpty '(\"You can put anything here\")'\nError: Failed to create argument blob.\nCaused by: Failed to create argument blob. Invalid data: Unable to serialize Candid values: type mismatch: \"You can put anything here\" cannot be of type empty","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » empty » empty","id":"139","title":"empty"},"14":{"body":"Azle supports instances of Node.js http.Server . listen() must be called on the server instance for Azle to use it to handle HTTP requests. Azle does not respect a port being passed into listen(). The port is set by the ICP replica (e.g. dfx start --host 127.0.0.1:8000), not by Azle. Here's an example of a very simple Node.js http.Server : import { createServer } from 'http'; const server = createServer((req, res) => { res.write('Hello World!'); res.end();\n}); server.listen();","breadcrumbs":"Servers » Node.js http.server","id":"14","title":"Node.js http.server"},"140":{"body":"The CandidType object float32 corresponds to the Candid type float32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, float32, query } from 'azle'; export default Canister({ getFloat32: query([], float32, () => { return Math.PI; }), printFloat32: query([float32], float32, (float32) => { console.log(typeof float32); return float32; })\n}); Candid: service : () -> { getFloat32 : () -> (float32) query; printFloat32 : (float32) -> (float32) query;\n} dfx: dfx canister call candid_canister printFloat32 '(3.1415927 : float32)'\n(3.1415927 : float32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » float32 » float32","id":"140","title":"float32"},"141":{"body":"The CandidType object float64 corresponds to the Candid type float64 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, float64, query } from 'azle'; export default Canister({ getFloat64: query([], float64, () => { return Math.E; }), printFloat64: query([float64], float64, (float64) => { console.log(typeof float64); return float64; })\n}); Candid: service : () -> { getFloat64 : () -> (float64) query; printFloat64 : (float64) -> (float64) query;\n} dfx: dfx canister call candid_canister printFloat64 '(2.718281828459045 : float64)'\n(2.718281828459045 : float64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » float64 » float64","id":"141","title":"float64"},"142":{"body":"Values created by the CandidType function Func correspond to the Candid type func , are inferred to be TypeScript [Principal, string] tuples, and will be decoded into JavaScript array with two elements at runtime. The first element is an @dfinity/principal and the second is a JavaScript string . The @dfinity/principal represents the principal of the canister/service where the function exists, and the string represents the function's name. A func acts as a callback, allowing the func receiver to know which canister instance and method must be used to call back. TypeScript or JavaScript: import { Canister, Func, Principal, query, text } from 'azle'; const BasicFunc = Func([text], text, 'query'); export default Canister({ getBasicFunc: query([], BasicFunc, () => { return [ Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'), 'getBasicFunc' ]; }), printBasicFunc: query([BasicFunc], BasicFunc, (basicFunc) => { console.log(typeof basicFunc); return basicFunc; })\n}); Candid: service : () -> { getBasicFunc : () -> (func (text) -> (text) query) query; printBasicFunc : (func (text) -> (text) query) -> ( func (text) -> (text) query, ) query;\n} dfx: dfx canister call candid_canister printBasicFunc '(func \"r7inp-6aaaa-aaaaa-aaabq-cai\".getBasicFunc)'\n(func \"r7inp-6aaaa-aaaaa-aaabq-cai\".getBasicFunc)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » func » func","id":"142","title":"func"},"143":{"body":"The CandidType object int corresponds to the Candid type int , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, int, query } from 'azle'; export default Canister({ getInt: query([], int, () => { return 170_141_183_460_469_231_731_687_303_715_884_105_727n; }), printInt: query([int], int, (int) => { console.log(typeof int); return int; })\n}); Candid: service : () -> { getInt : () -> (int) query; printInt : (int) -> (int) query;\n} dfx: dfx canister call candid_canister printInt '(170_141_183_460_469_231_731_687_303_715_884_105_727 : int)'\n(170_141_183_460_469_231_731_687_303_715_884_105_727 : int)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int » int","id":"143","title":"int"},"144":{"body":"The CandidType object int8 corresponds to the Candid type int8 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int8, query } from 'azle'; export default Canister({ getInt8: query([], int8, () => { return 127; }), printInt8: query([int8], int8, (int8) => { console.log(typeof int8); return int8; })\n}); Candid: service : () -> { getInt8 : () -> (int8) query; printInt8 : (int8) -> (int8) query;\n} dfx: dfx canister call candid_canister printInt8 '(127 : int8)'\n(127 : int8)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int8 » int8","id":"144","title":"int8"},"145":{"body":"The CandidType object int16 corresponds to the Candid type int16 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int16, query } from 'azle'; export default Canister({ getInt16: query([], int16, () => { return 32_767; }), printInt16: query([int16], int16, (int16) => { console.log(typeof int16); return int16; })\n}); Candid: service : () -> { getInt16 : () -> (int16) query; printInt16 : (int16) -> (int16) query;\n} dfx: dfx canister call candid_canister printInt16 '(32_767 : int16)'\n(32_767 : int16)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int16 » int16","id":"145","title":"int16"},"146":{"body":"The CandidType object int32 corresponds to the Candid type int32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int32, query } from 'azle'; export default Canister({ getInt32: query([], int32, () => { return 2_147_483_647; }), printInt32: query([int32], int32, (int32) => { console.log(typeof int32); return int32; })\n}); Candid: service : () -> { getInt32 : () -> (int32) query; printInt32 : (int32) -> (int32) query;\n} dfx: dfx canister call candid_canister printInt32 '(2_147_483_647 : int32)'\n(2_147_483_647 : int32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int32 » int32","id":"146","title":"int32"},"147":{"body":"The CandidType object int64 corresponds to the Candid type int64 , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, int64, query } from 'azle'; export default Canister({ getInt64: query([], int64, () => { return 9_223_372_036_854_775_807n; }), printInt64: query([int64], int64, (int64) => { console.log(typeof int64); return int64; })\n}); Candid: service : () -> { getInt64 : () -> (int64) query; printInt64 : (int64) -> (int64) query;\n} dfx: dfx canister call candid_canister printInt64 '(9_223_372_036_854_775_807 : int64)'\n(9_223_372_036_854_775_807 : int64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int64 » int64","id":"147","title":"int64"},"148":{"body":"The CandidType object nat corresponds to the Candid type nat , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, nat, query } from 'azle'; export default Canister({ getNat: query([], nat, () => { return 340_282_366_920_938_463_463_374_607_431_768_211_455n; }), printNat: query([nat], nat, (nat) => { console.log(typeof nat); return nat; })\n}); Candid: service : () -> { getNat : () -> (nat) query; printNat : (nat) -> (nat) query;\n} dfx: dfx canister call candid_canister printNat '(340_282_366_920_938_463_463_374_607_431_768_211_455 : nat)'\n(340_282_366_920_938_463_463_374_607_431_768_211_455 : nat)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat » nat","id":"148","title":"nat"},"149":{"body":"The CandidType object nat8 corresponds to the Candid type nat8 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat8, query } from 'azle'; export default Canister({ getNat8: query([], nat8, () => { return 255; }), printNat8: query([nat8], nat8, (nat8) => { console.log(typeof nat8); return nat8; })\n}); Candid: service : () -> { getNat8 : () -> (nat8) query; printNat8 : (nat8) -> (nat8) query;\n} dfx: dfx canister call candid_canister printNat8 '(255 : nat8)'\n(255 : nat8)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat8 » nat8","id":"149","title":"nat8"},"15":{"body":"Express is one of the most popular backend JavaScript web frameworks, and it's the recommended way to get started building servers in Azle. Here's the main code from the hello_world example : import express, { Request } from 'express'; let db = { hello: ''\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.json(db);\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.json(db);\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » Express","id":"15","title":"Express"},"150":{"body":"The CandidType object nat16 corresponds to the Candid type nat16 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat16, query } from 'azle'; export default Canister({ getNat16: query([], nat16, () => { return 65_535; }), printNat16: query([nat16], nat16, (nat16) => { console.log(typeof nat16); return nat16; })\n}); Candid: service : () -> { getNat16 : () -> (nat16) query; printNat16 : (nat16) -> (nat16) query;\n} dfx: dfx canister call candid_canister printNat16 '(65_535 : nat16)'\n(65_535 : nat16)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat16 » nat16","id":"150","title":"nat16"},"151":{"body":"The CandidType object nat32 corresponds to the Candid type nat32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat32, query } from 'azle'; export default Canister({ getNat32: query([], nat32, () => { return 4_294_967_295; }), printNat32: query([nat32], nat32, (nat32) => { console.log(typeof nat32); return nat32; })\n}); Candid: service : () -> { getNat32 : () -> (nat32) query; printNat32 : (nat32) -> (nat32) query;\n} dfx: dfx canister call candid_canister printNat32 '(4_294_967_295 : nat32)'\n(4_294_967_295 : nat32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat32 » nat32","id":"151","title":"nat32"},"152":{"body":"The CandidType object nat64 corresponds to the Candid type nat64 , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, nat64, query } from 'azle'; export default Canister({ getNat64: query([], nat64, () => { return 18_446_744_073_709_551_615n; }), printNat64: query([nat64], nat64, (nat64) => { console.log(typeof nat64); return nat64; })\n}); Candid: service : () -> { getNat64 : () -> (nat64) query; printNat64 : (nat64) -> (nat64) query;\n} dfx: dfx canister call candid_canister printNat64 '(18_446_744_073_709_551_615 : nat64)'\n(18_446_744_073_709_551_615 : nat64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat64 » nat64","id":"152","title":"nat64"},"153":{"body":"The CandidType object null corresponds to the Candid type null , is inferred to be a TypeScript null, and will be decoded into a JavaScript null at runtime. TypeScript or JavaScript: import { Canister, Null, query } from 'azle'; export default Canister({ getNull: query([], Null, () => { return null; }), printNull: query([Null], Null, (null_) => { console.log(typeof null_); return null_; })\n}); Candid: service : () -> { getNull : () -> (null) query; printNull : (null) -> (null) query;\n} dfx: dfx canister call candid_canister printNull '(null)'\n(null : null)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » null » null","id":"153","title":"null"},"154":{"body":"The CandidType object Opt corresponds to the Candid type opt , is inferred to be a TypeScript Opt, and will be decoded into a JavaScript Object at runtime. It is a variant with Some and None cases. At runtime if the value of the variant is Some, the Some property of the variant object will have a value of the enclosed Opt type at runtime. TypeScript or JavaScript: import { bool, Canister, None, Opt, query, Some } from 'azle'; export default Canister({ getOptSome: query([], Opt(bool), () => { return Some(true); // equivalent to { Some: true } }), getOptNone: query([], Opt(bool), () => { return None; //equivalent to { None: null} })\n}); Candid: service : () -> { getOptNone : () -> (opt bool) query; getOptSome : () -> (opt bool) query;\n} dfx: dfx canister call candid_canister getOptSome\n(opt true) dfx canister call candid_canister getOptNone\n(null)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » opt » opt","id":"154","title":"opt"},"155":{"body":"The CandidType object Principal corresponds to the Candid type principal , is inferred to be a TypeScript @dfinity/principal Principal, and will be decoded into an @dfinity/principal Principal at runtime. TypeScript or JavaScript: import { Canister, Principal, query } from 'azle'; export default Canister({ getPrincipal: query([], Principal, () => { return Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'); }), printPrincipal: query([Principal], Principal, (principal) => { console.log(typeof principal); return principal; })\n}); Candid: service : () -> { getPrincipal : () -> (principal) query; printPrincipal : (principal) -> (principal) query;\n} dfx: dfx canister call candid_canister printPrincipal '(principal \"rrkah-fqaaa-aaaaa-aaaaq-cai\")'\n(principal \"rrkah-fqaaa-aaaaa-aaaaq-cai\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » principal » principal","id":"155","title":"principal"},"156":{"body":"Objects created by the CandidType function Record correspond to the Candid record type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The shape of the object will match the object literal passed to the Record function. TypeScript or JavaScript: import { Canister, Principal, query, Record, text } from 'azle'; const User = Record({ id: Principal, username: text\n}); export default Canister({ getUser: query([], User, () => { return { id: Principal.fromUint8Array(Uint8Array.from([0])), username: 'lastmjs' }; }), printUser: query([User], User, (user) => { console.log(typeof user); return user; })\n}); Candid: type User = record { id : principal; username : text };\nservice : () -> { getUser : () -> (User) query; printUser : (User) -> (User) query;\n} dfx: dfx canister call candid_canister printUser '(record { id = principal \"2ibo7-dia\"; username = \"lastmjs\" })'\n(record { id = principal \"2ibo7-dia\"; username = \"lastmjs\" })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » record » record","id":"156","title":"record"},"157":{"body":"The CandidType object reserved corresponds to the Candid type reserved , is inferred to be a TypeScript any, and will be decoded into a JavaScript null at runtime. TypeScript or JavaScript: import { Canister, query, reserved } from 'azle'; export default Canister({ getReserved: query([], reserved, () => { return 'anything'; }), printReserved: query([reserved], reserved, (reserved) => { console.log(typeof reserved); return reserved; })\n}); Candid: service : () -> { getReserved : () -> (reserved) query; printReserved : (reserved) -> (reserved) query;\n} dfx: dfx canister call candid_canister printReserved '(null)'\n(null : reserved)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » reserved » reserved","id":"157","title":"reserved"},"158":{"body":"Values created by the CandidType function Canister correspond to the Candid service type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The properties of this object that match the keys of the service's query and update methods can be passed into ic.call and ic.notify to perform cross-canister calls. TypeScript or JavaScript: import { bool, Canister, ic, Principal, query, text, update } from 'azle'; const SomeCanister = Canister({ query1: query([], bool), update1: update([], text)\n}); export default Canister({ getService: query([], SomeCanister, () => { return SomeCanister(Principal.fromText('aaaaa-aa')); }), callService: update([SomeCanister], text, (service) => { return ic.call(service.update1); })\n}); Candid: type ManualReply = variant { Ok : text; Err : text };\nservice : () -> { callService : ( service { query1 : () -> (bool) query; update1 : () -> (text) }, ) -> (ManualReply); getService : () -> ( service { query1 : () -> (bool) query; update1 : () -> (text) }, ) query;\n} dfx: dfx canister call candid_canister getService\n(service \"aaaaa-aa\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » service » service","id":"158","title":"service"},"159":{"body":"The CandidType object text corresponds to the Candid type text , is inferred to be a TypeScript string, and will be decoded into a JavaScript String at runtime. TypeScript or JavaScript: import { Canister, query, text } from 'azle'; export default Canister({ getString: query([], text, () => { return 'Hello world!'; }), printString: query([text], text, (string) => { console.log(typeof string); return string; })\n}); Candid: service : () -> { getString : () -> (text) query; printString : (text) -> (text) query;\n} dfx: dfx canister call candid_canister printString '(\"Hello world!\")'\n(\"Hello world!\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » text » text","id":"159","title":"text"},"16":{"body":"When working with res.json you may run into errors because of attempting to send back JavaScript objects that are not strictly JSON. This can happen when trying to send back an object with a BigInt for example. Azle has created a special function called jsonStringify that will serialize many ICP-specific data structures to JSON for you: import { jsonStringify } from 'azle';\nimport express, { Request } from 'express'; let db = { bigInt: 0n\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.send(jsonStringify(db));\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.send(jsonStringify(db));\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » jsonStringify","id":"16","title":"jsonStringify"},"160":{"body":"Objects created by the CandidType function Variant correspond to the Candid variant type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The shape of the object will match the object literal passed to the Variant function, however it will contain only one of the enumerated properties. TypeScript or JavaScript: import { Canister, Null, query, Variant } from 'azle'; const Emotion = Variant({ Happy: Null, Indifferent: Null, Sad: Null\n}); const Reaction = Variant({ Fire: Null, ThumbsUp: Null, Emotion: Emotion\n}); export default Canister({ getReaction: query([], Reaction, () => { return { Fire: null }; }), printReaction: query([Reaction], Reaction, (reaction) => { console.log(typeof reaction); return reaction; })\n}); Candid: type Emotion = variant { Sad; Indifferent; Happy };\ntype Reaction = variant { Emotion : Emotion; Fire; ThumbsUp };\nservice : () -> { getReaction : () -> (Reaction) query; printReaction : (Reaction) -> (Reaction) query;\n} dfx: dfx canister call candid_canister printReaction '(variant { Fire })'\n(variant { Fire })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » variant » variant","id":"160","title":"variant"},"161":{"body":"The CandidType object Vec corresponds to the Candid type vec , is inferred to be a TypeScript T[], and will be decoded into a JavaScript array of the specified type at runtime (except for Vec which will become a Uint8Array, thus it is recommended to use the blob type instead of Vec). TypeScript or JavaScript: import { Canister, int32, Vec, query } from 'azle'; export default Canister({ getNumbers: query([], Vec(int32), () => { return [0, 1, 2, 3]; }), printNumbers: query([Vec(int32)], Vec(int32), (numbers) => { console.log(typeof numbers); return numbers; })\n}); Candid: service : () -> { getNumbers : () -> (vec int32) query; printNumbers : (vec int32) -> (vec int32) query;\n} dfx: dfx canister call candid_canister printNumbers '(vec { 0 : int32; 1 : int32; 2 : int32; 3 : int32 })'\n(vec { 0 : int32; 1 : int32; 2 : int32; 3 : int32 })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » vec » vec","id":"161","title":"vec"},"162":{"body":"candid decode candid encode canister balance canister balance 128 canister version canister id data certificate instruction counter is controller performance counter print set certified data time trap","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » Canister APIs","id":"162","title":"Canister APIs"},"163":{"body":"This section is a work in progress. Examples: call_raw candid_encoding import { blob, Canister, ic, query, text } from 'azle'; export default Canister({ // decodes Candid bytes to a Candid string candidDecode: query([blob], text, (candidEncoded) => { return ic.candidDecode(candidEncoded); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » candid decode » candid decode","id":"163","title":"candid decode"},"164":{"body":"This section is a work in progress. Examples: call_raw candid_encoding manual_reply notify_raw outgoing_http_requests import { blob, Canister, ic, query, text } from 'azle'; export default Canister({ // encodes a Candid string to Candid bytes candidEncode: query([text], blob, (candidString) => { return ic.candidEncode(candidString); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » candid encode » candid encode","id":"164","title":"candid encode"},"165":{"body":"This section is a work in progress. Examples: cycles ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the amount of cycles available in the canister canisterBalance: query([], nat64, () => { return ic.canisterBalance(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister balance » canister balance","id":"165","title":"canister balance"},"166":{"body":"This section is a work in progress. Examples: cycles ic_api import { Canister, ic, nat, query } from 'azle'; export default Canister({ // returns the amount of cycles available in the canister canisterBalance128: query([], nat, () => { return ic.canisterBalance128(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister balance 128 » canister balance 128","id":"166","title":"canister balance 128"},"167":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the canister's version number canisterVersion: query([], nat64, () => { return ic.canisterVersion(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister version » canister version","id":"167","title":"canister version"},"168":{"body":"This section is a work in progress. Examples: ethereum_json_rpc ic_api http_counter outgoing_http_requests whoami import { Canister, ic, Principal, query } from 'azle'; export default Canister({ // returns this canister's id id: query([], Principal, () => { return ic.id(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister id » canister id","id":"168","title":"canister id"},"169":{"body":"This section is a work in progress. Examples: ic_api import { blob, Canister, ic, Opt, query } from 'azle'; export default Canister({ // When called from a query call, returns the data certificate // authenticating certified_data set by this canister. Returns None if not // called from a query call. dataCertificate: query([], Opt(blob), () => { return ic.dataCertificate(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » data certificate » data certificate","id":"169","title":"data certificate"},"17":{"body":"If you need to add canister methods to your HTTP server, the Server function imported from azle allows you to do so. Here's an example of a very simple HTTP server: import { Server } from 'azle';\nimport express from 'express'; export default Server(() => { const app = express(); app.get('/http-query', (_req, res) => { res.send('http-query-server'); }); app.post('/http-update', (_req, res) => { res.send('http-update-server'); }); return app.listen();\n}); You can add canister methods like this: import { query, Server, text, update } from 'azle';\nimport express from 'express'; export default Server( () => { const app = express(); app.get('/http-query', (_req, res) => { res.send('http-query-server'); }); app.post('/http-update', (_req, res) => { res.send('http-update-server'); }); return app.listen(); }, { candidQuery: query([], text, () => { return 'candidQueryServer'; }), candidUpdate: update([], text, () => { return 'candidUpdateServer'; }) }\n); The default export of your main module must be the result of calling Server, and the callback argument to Server must return a Node.js http.Server . The main module is specified by the main property of your project's dfx.json file . The dfx.json file must be at the root directory of your project. The callback argument to Server can be asynchronous: import { Server } from 'azle';\nimport { createServer } from 'http'; export default Server(async () => { const message = await asynchronousHelloWorld(); return createServer((req, res) => { res.write(message); res.end(); });\n}); async function asynchronousHelloWorld() { // do some asynchronous task return 'Hello World Asynchronous!';\n}","breadcrumbs":"Servers » Server","id":"17","title":"Server"},"170":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // Returns the number of instructions that the canister executed since the // last entry point. instructionCounter: query([], nat64, () => { return ic.instructionCounter(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » instruction counter » instruction counter","id":"170","title":"instruction counter"},"171":{"body":"This section is a work in progress. Examples: ic_api import { bool, Canister, ic, Principal, query } from 'azle'; export default Canister({ // determines whether the given principal is a controller of the canister isController: query([Principal], bool, (principal) => { return ic.isController(principal); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » is controller » is controller","id":"171","title":"is controller"},"172":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ performanceCounter: query([], nat64, () => { return ic.performanceCounter(0); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » performance counter » performance counter","id":"172","title":"performance counter"},"173":{"body":"This section is a work in progress. Examples: ic_api null_example import { bool, Canister, ic, query, text } from 'azle'; export default Canister({ // prints a message through the local replica's output print: query([text], bool, (message) => { ic.print(message); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » print » print","id":"173","title":"print"},"174":{"body":"This section is a work in progress. Examples: ic_api import { blob, Canister, ic, update, Void } from 'azle'; export default Canister({ // sets up to 32 bytes of certified data setCertifiedData: update([blob], Void, (data) => { ic.setCertifiedData(data); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » set certified data » set certified data","id":"174","title":"set certified data"},"175":{"body":"This section is a work in progress. Examples: audio_recorder ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the current timestamp time: query([], nat64, () => { return ic.time(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » time » time","id":"175","title":"time"},"176":{"body":"This section is a work in progress. Examples: cross_canister_calls ethereum_json_rpc http_counter ic_api outgoing_http_requests threshold_ecdsa import { bool, Canister, ic, query, text } from 'azle'; export default Canister({ // traps with a message, stopping execution and discarding all state within the call trap: query([text], bool, (message) => { ic.trap(message); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » trap » trap","id":"176","title":"trap"},"177":{"body":"heartbeat http_request http_request_update init inspect message post upgrade pre upgrade query update","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » Canister Methods","id":"177","title":"Canister Methods"},"178":{"body":"This section is a work in progress. Examples: heartbeat run_time_errors import { Canister, heartbeat } from 'azle'; export default Canister({ heartbeat: heartbeat(() => { console.log('this runs ~1 time per second'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » heartbeat » heartbeat","id":"178","title":"heartbeat"},"179":{"body":"This section is a work in progress. Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, query, Record, text, Tuple, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request: query([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » http_request » http_request","id":"179","title":"http_request"},"18":{"body":"For a deeper understanding of possible limitations you may want to refer to The HTTP Gateway Protocol Specification . The top-level route /api is currently reserved by the replica locally The Transfer-Encoding header is not supported gzip responses most likely do not work HTTP requests are generally limited to ~2 MiB HTTP responses are generally limited to ~3 MiB You cannot set HTTP status codes in the 1xx range","breadcrumbs":"Servers » Limitations","id":"18","title":"Limitations"},"180":{"body":"This section is a work in progress. Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, Record, text, Tuple, update, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request_update: update([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » http_request_update » http_request","id":"180","title":"http_request"},"181":{"body":"This section is a work in progress. Examples: ethereum_json_rpc func_types init persistent-storage pre_and_post_upgrade whoami import { Canister, init } from 'azle'; export default Canister({ init: init([], () => { console.log('This runs once when the canister is first initialized'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » init » init","id":"181","title":"init"},"182":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { bool, Canister, ic, inspectMessage, update } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { console.log('inspectMessage called'); if (ic.methodName() === 'accessible') { ic.acceptMessage(); return; } if (ic.methodName() === 'inaccessible') { return; } throw `Method \"${ic.methodName()}\" not allowed`; }), accessible: update([], bool, () => { return true; }), inaccessible: update([], bool, () => { return false; }), alsoInaccessible: update([], bool, () => { return false; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » inspect message » inspect message","id":"182","title":"inspect message"},"183":{"body":"This section is a work in progress. Examples: pre_and_post_upgrade whoami import { Canister, postUpgrade } from 'azle'; export default Canister({ postUpgrade: postUpgrade([], () => { console.log('This runs after every canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » post upgrade » post upgrade","id":"183","title":"post upgrade"},"184":{"body":"This section is a work in progress. Examples: pre_and_post_upgrade import { Canister, preUpgrade } from 'azle'; export default Canister({ preUpgrade: preUpgrade(() => { console.log('This runs before every canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » pre upgrade » pre upgrade","id":"184","title":"pre upgrade"},"185":{"body":"This section is a work in progress. import { Canister, query, text } from 'azle'; export default Canister({ simpleQuery: query([], text, () => { return 'This is a query method'; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » query » query","id":"185","title":"query"},"186":{"body":"This section is a work in progress. import { Canister, query, text, update, Void } from 'azle'; let message = ''; export default Canister({ getMessage: query([], text, () => { return message; }), setMessage: update([text], Void, (newMessage) => { message = newMessage; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » update » update","id":"186","title":"update"},"187":{"body":"You can provide environment variables to Azle canisters by specifying their names in your dfx.json file and then using the process.env object in Azle. Be aware that the environment variables that you specify in your dfx.json file will be included in plain text in your canister's Wasm binary.","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » Environment Variables","id":"187","title":"Environment Variables"},"188":{"body":"Modify your dfx.json file with the env property to specify which environment variables you would like included in your Azle canister's binary. In this case, CANISTER1_PRINCIPAL and CANISTER2_PRINCIPAL will be included: { \"canisters\": { \"canister1\": { \"type\": \"custom\", \"main\": \"src/canister1/index.ts\", \"build\": \"npx azle canister1\", \"candid\": \"src/canister1/index.did\", \"wasm\": \".azle/canister1/canister1.wasm\", \"gzip\": true, \"declarations\": { \"output\": \"test/dfx_generated/canister1\", \"node_compatibility\": true }, \"env\": [\"CANISTER1_PRINCIPAL\", \"CANISTER2_PRINCIPAL\"] } }\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » dfx.json","id":"188","title":"dfx.json"},"189":{"body":"You can access the specified environment variables in Azle like so: import { Canister, query, text } from 'azle'; export default Canister({ canister1PrincipalEnvVar: query([], text, () => { return ( process.env.CANISTER1_PRINCIPAL ?? 'process.env.CANISTER1_PRINCIPAL is undefined' ); }), canister2PrincipalEnvVar: query([], text, () => { return ( process.env.CANISTER2_PRINCIPAL ?? 'process.env.CANISTER2_PRINCIPAL is undefined' ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » process.env","id":"189","title":"process.env"},"19":{"body":"You can automatically copy static assets (essentially files and folders) into your canister's filesystem during deploy by using the assets, assets_large and build_assets properties of the canister object in your project's dfx.json file. Here's an example that copies the src/frontend/dist directory on the deploying machine into the dist directory of the canister, using the assets and build_assets properties: { \"canisters\": { \"backend\": { \"type\": \"custom\", \"main\": \"src/backend/index.ts\", \"candid\": \"src/backend/index.did\", \"candid_gen\": \"http\", \"build\": \"npx azle backend\", \"wasm\": \".azle/backend/backend.wasm\", \"gzip\": true, \"assets\": [[\"src/frontend/dist\", \"dist\"]], \"build_assets\": \"npm run build\", \"metadata\": [ { \"name\": \"candid:service\", \"path\": \"src/backend/index.did\" }, { \"name\": \"cdk:name\", \"content\": \"azle\" } ] } }\n} The assets property is an array of tuples, where the first element of the tuple is the source directory on the deploying machine, and the second element of the tuple is the destination directory in the canister. Use assets for total assets under ~90 MiB in size. The build_assets property allows you to specify custom terminal commands that will run before Azle copies the assets into the canister. You can use build_assets to build your frontend code for example. In this case we are running npm run build, which refers to an npm script that we have specified in our package.json file. There is also an assets_large property that works similarly to the assets property, but allows for total assets up to ~2 GiB in size. We are working on increasing this limit further. Once you have loaded assets into your canister, they are accessible from that canister's filesystem. Here's an example of using the Express static middleware to serve a frontend from the canister's filesystem: import express from 'express'; const app = express(); app.use(express.static('/dist')); app.listen(); Assuming the /dist directory in the canister has an appropriate index.html file, this canister would serve a frontend at its URL when loaded in a web browser.","breadcrumbs":"Assets » Assets TL;DR","id":"19","title":"Assets TL;DR"},"190":{"body":"bitcoin_get_balance bitcoin_get_current_fee_percentiles bitcoin_get_utxos bitcoin_send_transaction canister_info canister_status create_canister delete_canister deposit_cycles ecdsa_public_key http_request install_code provisional_create_canister_with_cycles provisional_top_up_canister raw_rand sign_with_ecdsa start_canister stop_canister uninstall_code update_settings","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » Management Canister","id":"190","title":"Management Canister"},"191":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, None, text, update } from 'azle';\nimport { managementCanister, Satoshi } from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getBalance: update([text], Satoshi, async (address) => { return await ic.call(managementCanister.bitcoin_get_balance, { args: [ { address, min_confirmations: None, network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_balance » bitcoin_get_balance","id":"191","title":"bitcoin_get_balance"},"192":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, update, Vec } from 'azle';\nimport { managementCanister, MillisatoshiPerByte\n} from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getCurrentFeePercentiles: update([], Vec(MillisatoshiPerByte), async () => { return await ic.call( managementCanister.bitcoin_get_current_fee_percentiles, { args: [ { network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST } ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_current_fee_percentiles » bitcoin_get_current_fee_percentiles","id":"192","title":"bitcoin_get_current_fee_percentiles"},"193":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, None, text, update } from 'azle';\nimport { GetUtxosResult, managementCanister } from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getUtxos: update([text], GetUtxosResult, async (address) => { return await ic.call(managementCanister.bitcoin_get_utxos, { args: [ { address, filter: None, network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_utxos » bitcoin_get_utxos","id":"193","title":"bitcoin_get_utxos"},"194":{"body":"This section is a work in progress. Examples: import { blob, bool, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const BITCOIN_BASE_TRANSACTION_COST = 5_000_000_000n;\nconst BITCOIN_CYCLE_COST_PER_TRANSACTION_BYTE = 20_000_000n; export default Canister({ sendTransaction: update([blob], bool, async (transaction) => { const transactionFee = BITCOIN_BASE_TRANSACTION_COST + BigInt(transaction.length) * BITCOIN_CYCLE_COST_PER_TRANSACTION_BYTE; await ic.call(managementCanister.bitcoin_send_transaction, { args: [ { transaction, network: { Regtest: null } } ], cycles: transactionFee }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_send_transaction » bitcoin_send_transaction","id":"194","title":"bitcoin_send_transaction"},"195":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, update } from 'azle';\nimport { CanisterStatusArgs, CanisterStatusResult, managementCanister\n} from 'azle/canisters/management'; export default Canister({ getCanisterStatus: update( [CanisterStatusArgs], CanisterStatusResult, async (args) => { return await ic.call(managementCanister.canister_status, { args: [args] }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » canister_status » canister_status","id":"195","title":"canister_status"},"196":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, None, update } from 'azle';\nimport { CreateCanisterResult, managementCanister\n} from 'azle/canisters/management'; export default Canister({ executeCreateCanister: update([], CreateCanisterResult, async () => { return await ic.call(managementCanister.create_canister, { args: [{ settings: None }], cycles: 50_000_000_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » create_canister » create_canister","id":"196","title":"create_canister"},"197":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeDeleteCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.delete_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » delete_canister » delete_canister","id":"197","title":"delete_canister"},"198":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeDepositCycles: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.deposit_cycles, { args: [ { canister_id: canisterId } ], cycles: 10_000_000n }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » deposit_cycles » deposit_cycles","id":"198","title":"deposit_cycles"},"199":{"body":"This section is a work in progress. Examples: threshold_ecdsa import { blob, Canister, ic, None, Record, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const PublicKey = Record({ publicKey: blob\n}); export default Canister({ publicKey: update([], PublicKey, async () => { const caller = ic.caller().toUint8Array(); const publicKeyResult = await ic.call( managementCanister.ecdsa_public_key, { args: [ { canister_id: None, derivation_path: [caller], key_id: { curve: { secp256k1: null }, name: 'dfx_test_key' } } ] } ); return { publicKey: publicKeyResult.public_key }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » ecdsa_public_key » ecdsa_public_key","id":"199","title":"ecdsa_public_key"},"2":{"body":"Windows is only supported through a Linux virtual environment of some kind, such as WSL On Ubuntu/WSL: sudo apt-get install podman On Mac: brew install podman It's recommended to use nvm and Node.js 20: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash Restart your terminal and then run: nvm install 20 Check that the installation went smoothly by looking for clean output from the following command: node --version Install the dfx command line tools for managing ICP applications: DFX_VERSION=0.19.0 sh -ci \"$(curl -fsSL https://sdk.dfinity.org/install.sh)\" Check that the installation went smoothly by looking for clean output from the following command: dfx --version If after trying to run dfx --version you encounter an error such as dfx: command not found, you might need to add $HOME/bin to your path. Here's an example of doing this in your .bashrc: echo 'export PATH=\"$PATH:$HOME/bin\"' >> \"$HOME/.bashrc\"","breadcrumbs":"Get Started » Installation","id":"2","title":"Installation"},"20":{"body":"Azle canisters can import ic from azle and use ic.caller() to get the principal (public-key linked identifier) of the initiator of an HTTP request. HTTP requests are anonymous (principal 2vxsx-fae) by default, but authentication with web browsers (and maybe Node.js) can be done using a JWT-like API from azle/http_client. First you import toJwt from azle/http_client: import { toJwt } from 'azle/http_client'; Then you use fetch and construct an Authorization header using an @dfinity/agent Identity: const response = await fetch( `http://bkyz2-fmaaa-aaaaa-qaaaq-cai.localhost:8000/whoami`, { method: 'GET', headers: [['Authorization', toJwt(this.identity)]] }\n); Here's an example of the frontend of a simple web application using azle/http_client and Internet Identity : import { Identity } from '@dfinity/agent';\nimport { AuthClient } from '@dfinity/auth-client';\nimport { toJwt } from 'azle/http_client';\nimport { html, LitElement } from 'lit';\nimport { customElement, property } from 'lit/decorators.js'; @customElement('azle-app')\nexport class AzleApp extends LitElement { @property() identity: Identity | null = null; @property() whoami: string = ''; connectedCallback() { super.connectedCallback(); this.authenticate(); } async authenticate() { const authClient = await AuthClient.create(); const isAuthenticated = await authClient.isAuthenticated(); if (isAuthenticated === true) { this.handleIsAuthenticated(authClient); } else { await this.handleIsNotAuthenticated(authClient); } } handleIsAuthenticated(authClient: AuthClient) { this.identity = authClient.getIdentity(); } async handleIsNotAuthenticated(authClient: AuthClient) { await new Promise((resolve, reject) => { authClient.login({ identityProvider: import.meta.env.VITE_IDENTITY_PROVIDER, onSuccess: resolve as () => void, onError: reject, windowOpenerFeatures: `width=500,height=500` }); }); this.identity = authClient.getIdentity(); } async whoamiUnauthenticated() { const response = await fetch( `${import.meta.env.VITE_CANISTER_ORIGIN}/whoami` ); const responseText = await response.text(); this.whoami = responseText; } async whoamiAuthenticated() { const response = await fetch( `${import.meta.env.VITE_CANISTER_ORIGIN}/whoami`, { method: 'GET', headers: [['Authorization', toJwt(this.identity)]] } ); const responseText = await response.text(); this.whoami = responseText; } render() { return html`

Internet Identity

Whoami principal: ${this.whoami}

`; }\n} Here's an example of the backend of that same simple web application: import { ic } from 'azle';\nimport express from 'express'; const app = express(); app.get('/whoami', (req, res) => { res.send(ic.caller().toString());\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Authentication » Authentication TL;DR","id":"20","title":"Authentication TL;DR"},"200":{"body":"This section is a work in progress. Examples: ethereum_json_rpc outgoing_http_requests import { Canister, ic, None, Principal, query, Some, update } from 'azle';\nimport { HttpResponse, HttpTransformArgs, managementCanister\n} from 'azle/canisters/management'; export default Canister({ xkcd: update([], HttpResponse, async () => { return await ic.call(managementCanister.http_request, { args: [ { url: `https://xkcd.com/642/info.0.json`, max_response_bytes: Some(2_000n), method: { get: null }, headers: [], body: None, transform: Some({ function: [ic.id(), 'xkcdTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); }), xkcdTransform: query([HttpTransformArgs], HttpResponse, (args) => { return { ...args.response, headers: [] }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » http_request » http_request","id":"200","title":"http_request"},"201":{"body":"This section is a work in progress. Examples: management_canister import { blob, bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], bool, async (canisterId, wasmModule) => { await ic.call(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); return true; } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » install_code » install_code","id":"201","title":"install_code"},"202":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, None, update } from 'azle';\nimport { managementCanister, ProvisionalCreateCanisterWithCyclesResult\n} from 'azle/canisters/management'; export default Canister({ provisionalCreateCanisterWithCycles: update( [], ProvisionalCreateCanisterWithCyclesResult, async () => { return await ic.call( managementCanister.provisional_create_canister_with_cycles, { args: [ { amount: None, settings: None } ] } ); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » provisional_create_canister_with_cycles » provisional_create_canister_with_cycles","id":"202","title":"provisional_create_canister_with_cycles"},"203":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, nat, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ provisionalTopUpCanister: update( [Principal, nat], bool, async (canisterId, amount) => { await ic.call(managementCanister.provisional_top_up_canister, { args: [ { canister_id: canisterId, amount } ] }); return true; } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » provisional_top_up_canister » provisional_top_up_canister","id":"203","title":"provisional_top_up_canister"},"204":{"body":"This section is a work in progress. Examples: async/await heartbeat management_canister timers import { blob, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ getRawRand: update([], blob, async () => { return await ic.call(managementCanister.raw_rand); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » raw_rand » raw_rand","id":"204","title":"raw_rand"},"205":{"body":"This section is a work in progress. Examples: threshold_ecdsa import { blob, Canister, ic, Record, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const Signature = Record({ signature: blob\n}); export default Canister({ sign: update([blob], Signature, async (messageHash) => { if (messageHash.length !== 32) { ic.trap('messageHash must be 32 bytes'); } const caller = ic.caller().toUint8Array(); const signatureResult = await ic.call( managementCanister.sign_with_ecdsa, { args: [ { message_hash: messageHash, derivation_path: [caller], key_id: { curve: { secp256k1: null }, name: 'dfx_test_key' } } ], cycles: 10_000_000_000n } ); return { signature: signatureResult.signature }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » sign_with_ecdsa » sign_with_ecdsa","id":"205","title":"sign_with_ecdsa"},"206":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeStartCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.start_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » start_canister » start_canister","id":"206","title":"start_canister"},"207":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeStopCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.stop_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » stop_canister » stop_canister","id":"207","title":"stop_canister"},"208":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeUninstallCode: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.uninstall_code, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » uninstall_code » uninstall_code","id":"208","title":"uninstall_code"},"209":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, None, Principal, Some, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeUpdateSettings: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.update_settings, { args: [ { canister_id: canisterId, settings: { controllers: None, compute_allocation: Some(1n), memory_allocation: Some(3_000_000n), freezing_threshold: Some(2_000_000n) } } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » update_settings » update_settings","id":"209","title":"update_settings"},"21":{"body":"Examples: fetch_ic internet_identity","breadcrumbs":"Authentication » Authentication","id":"21","title":"Authentication"},"210":{"body":"Azle plugins allow developers to wrap Rust code in TypeScript/JavaScript APIs that can then be exposed to Azle canisters, providing a clean and simple developer experience with the underlying Rust code. Plugins are in a very early alpha state. You can create and use them now, but be aware that the API will be changing significantly in the near future. You can use the following example plugins as you create your own plugins:","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » Plugins","id":"210","title":"Plugins"},"211":{"body":"If you just want to create a plugin in the same repo as your project, see the plugins example .","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » Local plugin","id":"211","title":"Local plugin"},"212":{"body":"If you want to create a plugin that can be published and/or used with npm, see the ic-sqlite-plugin example .","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » npm plugin","id":"212","title":"npm plugin"},"213":{"body":"stable structures stable bytes stable grow stable read stable size stable write stable64 grow stable64 read stable64 size stable64 write","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » Stable Memory","id":"213","title":"Stable Memory"},"214":{"body":"This section is a work in progress. Examples: audio_recorder ethereum_json_rpc func_types http_counter inline_types persistent-storage pre_and_post_upgrade stable_structures import { bool, Canister, nat64, nat8, Opt, query, StableBTreeMap, text, Tuple, update, Vec\n} from 'azle'; const Key = nat8;\ntype Key = typeof Key.tsType; const Value = text;\ntype Value = typeof Value.tsType; let map = StableBTreeMap(0); export default Canister({ containsKey: query([Key], bool, (key) => { return map.containsKey(key); }), get: query([Key], Opt(Value), (key) => { return map.get(key); }), insert: update([Key, Value], Opt(Value), (key, value) => { return map.insert(key, value); }), isEmpty: query([], bool, () => { return map.isEmpty(); }), items: query([], Vec(Tuple(Key, Value)), () => { return map.items(); }), keys: query([], Vec(Key), () => { return Uint8Array.from(map.keys()); }), len: query([], nat64, () => { return map.len(); }), remove: update([Key], Opt(Value), (key) => { return map.remove(key); }), values: query([], Vec(Value), () => { return map.values(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable structures » stable structures","id":"214","title":"stable structures"},"215":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, query } from 'azle'; export default Canister({ stableBytes: query([], blob, () => { return ic.stableBytes(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable bytes » stable bytes","id":"215","title":"stable bytes"},"216":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat32, update } from 'azle'; export default Canister({ stableGrow: update([nat32], nat32, (newPages) => { return ic.stableGrow(newPages); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable grow » stable grow","id":"216","title":"stable grow"},"217":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat32, query } from 'azle'; export default Canister({ stableRead: query([nat32, nat32], blob, (offset, length) => { return ic.stableRead(offset, length); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable read » stable read","id":"217","title":"stable read"},"218":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat32, query } from 'azle'; export default Canister({ stableSize: query([], nat32, () => { return ic.stableSize(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable size » stable size","id":"218","title":"stable size"},"219":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat32, update, Void } from 'azle'; export default Canister({ stableWrite: update([nat32, blob], Void, (offset, buf) => { ic.stableWrite(offset, buf); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable write » stable write","id":"219","title":"stable write"},"22":{"body":"Authentication of ICP calls is done through signatures on messages. @dfinity/agent provides very nice abstractions for creating all of the required signatures in the correct formats when calling into canisters on ICP. Unfortunately this requires you to abandon traditional HTTP requests, as you must use the agent's APIs. Azle attempts to enable you to perform traditional HTTP requests with traditional libraries. Currently Azle focuses on fetch. When importing toJwt, azle/http_client will overwrite the global fetch function and will intercept fetch requests that have Authorization headers with an Identity as a value. Once intercepted, these requests are turned into @dfinity/agent requests that call the http_request and http_request_update canister methods directly, thus performing all of the required client-side authentication work. We are working to push for ICP to more natively understand JWTs for authentication, without the need to intercept fetch requests and convert them into agent requests.","breadcrumbs":"Authentication » Under-the-hood","id":"22","title":"Under-the-hood"},"220":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat64, update } from 'azle'; export default Canister({ stable64Grow: update([nat64], nat64, (newPages) => { return ic.stable64Grow(newPages); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 grow » stable64 grow","id":"220","title":"stable64 grow"},"221":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat64, query } from 'azle'; export default Canister({ stable64Read: query([nat64, nat64], blob, (offset, length) => { return ic.stable64Read(offset, length); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 read » stable64 read","id":"221","title":"stable64 read"},"222":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat64, query } from 'azle'; export default Canister({ stable64Size: query([], nat64, () => { return ic.stable64Size(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 size » stable64 size","id":"222","title":"stable64 size"},"223":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat64, update, Void } from 'azle'; export default Canister({ stable64Write: update([nat64, blob], Void, (offset, buf) => { ic.stable64Write(offset, buf); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 write » stable64 write","id":"223","title":"stable64 write"},"224":{"body":"clear timer set timer set timer interval","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » Timers","id":"224","title":"Timers"},"225":{"body":"This section is a work in progress. Examples: timers import { Canister, ic, TimerId, update, Void } from 'azle'; export default Canister({ clearTimer: update([TimerId], Void, (timerId) => { ic.clearTimer(timerId); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » clear timer » clear timer","id":"225","title":"clear timer"},"226":{"body":"This section is a work in progress. Examples: timers import { Canister, Duration, ic, TimerId, Tuple, update } from 'azle'; export default Canister({ setTimers: update([Duration], Tuple(TimerId, TimerId), (delay) => { const functionTimerId = ic.setTimer(delay, callback); const capturedValue = '🚩'; const closureTimerId = ic.setTimer(delay, () => { console.log(`closure called and captured value ${capturedValue}`); }); return [functionTimerId, closureTimerId]; })\n}); function callback() { console.log('callback called');\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » set timer » set timer","id":"226","title":"set timer"},"227":{"body":"This section is a work in progress. Examples: timers import { Canister, Duration, ic, TimerId, Tuple, update } from 'azle'; export default Canister({ setTimerIntervals: update( [Duration], Tuple(TimerId, TimerId), (interval) => { const functionTimerId = ic.setTimerInterval(interval, callback); const capturedValue = '🚩'; const closureTimerId = ic.setTimerInterval(interval, () => { console.log( `closure called and captured value ${capturedValue}` ); }); return [functionTimerId, closureTimerId]; } )\n}); function callback() { console.log('callback called');\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » set timer interval » set timer interval","id":"227","title":"set timer interval"},"228":{"body":"The IC currently limits Wasm binaries to a relatively small size of ~2MiB (with some caveats). You are likely to hit this limit as your Azle canisters grow in size. Azle provides some automatic optimizations to help you deal with this limit. It is hoped that the IC-imposed limit will be greatly increased sometime in 2023. To optimize the Wasm binary of an Azle canister, you can add the opt_level property to your dfx.json with the following options: \"0\", \"1\", \"2\", \"3\", or \"4\". \"0\" is the default option if opt_level is not specified. Each option is intended to reduce the size of your Wasm binary as the value increases. Each option is likely to take longer to compile than the previous option. It is recommended to start at \"1\" and increase only as necessary. Here's an example using opt_level \"1\": { \"canisters\": { \"hello_world\": { \"type\": \"custom\", \"main\": \"src/index.ts\", \"build\": \"npx azle hello_world\", \"candid\": \"src/index.did\", \"wasm\": \".azle/hello_world/hello_world.wasm.gz\", \"opt_level\": \"1\" } }\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Wasm Binary Optimization » Wasm Binary Optimization","id":"228","title":"Wasm Binary Optimization"},"23":{"body":"If your terminal logs ever say did not produce a response or response failed classification=Status code: 502 Bad Gateway, it most likely means that your canister has thrown an error and halted execution for that call. Use console.log and try/catch liberally to track down problems and reveal error information. If your error logs do not have useful messages, use try/catch with a console.log of the catch error argument to reveal the underlying error message.","breadcrumbs":"Debugging » Debugging TL;DR","id":"23","title":"Debugging TL;DR"},"24":{"body":"console.log and try/catch Canister did not produce a response No error message Final Compiled and Bundled JavaScript Azle currently has less-than-elegant error reporting. We hope to improve this significantly in the future. In the meantime, consider the following tips when trying to debug your application.","breadcrumbs":"Debugging » Debugging","id":"24","title":"Debugging"},"25":{"body":"At the highest level, the most important tip is this: use console.log and try/catch liberally to track down problems and reveal error information.","breadcrumbs":"Debugging » console.log and try/catch","id":"25","title":"console.log and try/catch"},"26":{"body":"If you ever see an error that looks like this: Replica Error: reject code CanisterError, reject message IC0506: Canister bkyz2-fmaaa-aaaaa-qaaaq-cai did not produce a response, error code Some(\"IC0506\") or this: 2024-04-17T15:01:39.194377Z WARN icx_proxy_dev::proxy::agent: Replica Error\n2024-04-17T15:01:39.194565Z ERROR tower_http::trace::on_failure: response failed classification=Status code: 502 Bad Gateway latency=61 ms it most likely means that your canister has thrown an error and halted execution for that call. First check the replica's logs for any errors messages. If there are no useful error messages, use console.log and try/catch liberally to track down the source of the error and to reveal more information about the error. Don't be surprised if you need to console.log after each of your program's statements (including dependencies found in node_modules) to find out where the error is coming from. And don't be surprised if you need to use try/catch with a console.log of the catch error argument to reveal useful error messaging.","breadcrumbs":"Debugging » Canister did not produce a response","id":"26","title":"Canister did not produce a response"},"27":{"body":"You might find yourself in a situation where an error is reported without a useful message like this: \n\n\n\nError\n\n\n
    at <anonymous> (azle_main:110643)
   at handle (azle_main:73283)
   at next (azle_main:73452)
   at dispatch (azle_main:73432)
   at handle (azle_main:73283)
   at <anonymous> (azle_main:73655)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at expressInit (azle_main:73910)
   at handle (azle_main:73283)
   at trim_prefix (azle_main:73684)
   at <anonymous> (azle_main:73657)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at query3 (azle_main:73938)
   at handle (azle_main:73283)
   at trim_prefix (azle_main:73684)
   at <anonymous> (azle_main:73657)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at handle (azle_main:73587)
   at handle (azle_main:76233)
   at app2 (azle_main:78091)
   at call (native)
   at emitTwo (azle_main:9782)
   at emit2 (azle_main:10023)
   at httpHandler (azle_main:87618)
\n\n or like this: 2024-04-17 14:35:30.433501980 UTC: [Canister bkyz2-fmaaa-aaaaa-qaaaq-cai] \" at (azle_main:110643)\\n at handle (azle_main:73283)\\n at next (azle_main:73452)\\n at dispatch (azle_main:73432)\\n at handle (azle_main:73283)\\n at (azle_main:73655)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at expressInit (azle_main:73910)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at query3 (azle_main:73938)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at handle (azle_main:73587)\\n at handle (azle_main:76233)\\n at app2 (azle_main:78091)\\n at call (native)\\n at emitTwo (azle_main:9782)\\n at emit2 (azle_main:10023)\\n at httpHandler (azle_main:87618)\\n\"\n2024-04-17T14:35:31.983590Z ERROR tower_http::trace::on_failure: response failed classification=Status code: 500 Internal Server Error latency=101 ms\n2024-04-17 14:36:34.652587412 UTC: [Canister bkyz2-fmaaa-aaaaa-qaaaq-cai] \" at (azle_main:110643)\\n at handle (azle_main:73283)\\n at next (azle_main:73452)\\n at dispatch (azle_main:73432)\\n at handle (azle_main:73283)\\n at (azle_main:73655)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at expressInit (azle_main:73910)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at query3 (azle_main:73938)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at handle (azle_main:73587)\\n at handle (azle_main:76233)\\n at app2 (azle_main:78091)\\n at call (native)\\n at emitTwo (azle_main:9782)\\n at emit2 (azle_main:10023)\\n at httpHandler (azle_main:87618)\\n\" In these situations you might be able to use try/catch with a console.log of the catch error argument to reveal the underlying error message. For example, this code without a try/catch will log errors without the message This is the error text: import express from 'express'; const app = express(); app.get('/hello-world', (_req, res) => { throw new Error('This is the error text'); res.send('Hello World!');\n}); app.listen(); You can get the message to print in the replica terminal like this: import express from 'express'; const app = express(); app.get('/hello-world', (_req, res) => { try { throw new Error('This is the error text'); res.send('Hello World!'); } catch (error) { console.log(error); }\n}); app.listen();","breadcrumbs":"Debugging » No error message","id":"27","title":"No error message"},"28":{"body":"Azle compiles and bundles your TypeScript/JavaScript into a final JavaScript file to be included and executed inside of your canister. Inspecting this final JavaScript code may help you to debug your application. When you see something like (azle_main:110643) in your error stack traces, it is a reference to the final compiled and bundled JavaScript file that is actually deployed with and executed by the canister. The right-hand side of azle_main e.g. :110643 is the line number in that file. You can find the file at [project_name]/.azle/[canister_name]/canister/src/main.js. If you have the AZLE_AUTORELOAD environment variable set to true then you should instead look at [project_name]/.azle/[canister_name]/canister/src/main_reloaded.js","breadcrumbs":"Debugging » Final Compiled and Bundled JavaScript","id":"28","title":"Final Compiled and Bundled JavaScript"},"29":{"body":"There are a number of limitations that you are likely to run into while you develop with Azle on ICP. These are generally the most limiting: 5 billion instruction limit for query calls (HTTP GET requests) (~1 second of computation) 20 billion instruction limit for update calls (HTTP POST/etc requests) (~5 seconds of computation) 2 MiB request size limit 3 MiB response size limit 4 GiB heap limit High request latency relative to traditional web applications (think seconds not milliseconds) High costs relative to traditional web applications (think ~10x traditional web costs) Read more here for in-depth information on current ICP limitations.","breadcrumbs":"Limitations » Limitations TL;DR","id":"29","title":"Limitations TL;DR"},"3":{"body":"npx azle new hello_world\ncd hello_world npm install dfx start --clean --host 127.0.0.1:8000 In a separate terminal in the hello_world directory: dfx deploy If you are building an HTTP-based canister and would like your canister to autoreload on file changes (DO NOT deploy to mainnet with autoreload enabled): AZLE_AUTORELOAD=true dfx deploy If you have problems deploying see Common deployment issues . View your frontend in a web browser at http://[canisterId].localhost:8000. To obtain your application's [canisterId]: dfx canister id backend Communicate with your canister using any HTTP client library, for example using curl: curl http://[canisterId].localhost:8000/db\ncurl -X POST -H \"Content-Type: application/json\" -d \"{ \\\"hello\\\": \\\"world\\\" }\" http://[canisterId].localhost:8000/db/update","breadcrumbs":"Get Started » Deployment","id":"3","title":"Deployment"},"30":{"body":"Autoreload Environment Variables Native Compilation","breadcrumbs":"Reference » Reference","id":"30","title":"Reference"},"31":{"body":"Deploying to mainnet with AZLE_AUTORELOAD=true will expose your canister to arbitrary untrusted JavaScript code execution You can turn on automatic reloading of your canister's final compiled JavaScript by using the AZLE_AUTORELOAD environment variable during deploy: AZLE_AUTORELOAD=true dfx deploy The autoreload feature watches all .ts and .js files recursively in the directory with your dfx.json file (the root directory of your project), excluding files found in .azle, .dfx, and node_modules. Autoreload only works properly if you do not change the methods of your canister. HTTP-based canisters will generally work well with autoreload as the query and update methods http_request and http_request_update will not need to change often. Candid-based canisters with explicit query and update methods may require manual deploys more often. Autoreload will not reload assets uploaded through the assets property of your dfx.json. It is extremely important to keep in mind that setting AZLE_AUTORELOAD=true will create an update method in your canister called reload_js that has no authorization built into it. If you deploy this to mainnet, anyone will be able to call this method and change the JavaScript of your canister.","breadcrumbs":"Reference » Autoreload » Autoreload","id":"31","title":"Autoreload"},"32":{"body":"AZLE_AUTORELOAD AZLE_DOCKERFILE_HASH AZLE_IDENTITY_STORAGE_MODE AZLE_INSTRUCTION_COUNT AZLE_PROPTEST_NUM_RUNS AZLE_PROPTEST_PATH AZLE_PROPTEST_QUIET AZLE_PROPTEST_SEED AZLE_PROPTEST_VERBOSE AZLE_TEST_FETCH AZLE_USE_DOCKERFILE AZLE_VERBOSE AZLE_WASMEDGE_QUICKJS_DIR","breadcrumbs":"Reference » Environment Variables » Environment Variables","id":"32","title":"Environment Variables"},"33":{"body":"Set this to true to enable autoreloading of your TypeScript/JavaScript code when making any changes to .ts or .js files in your project.","breadcrumbs":"Reference » Environment Variables » AZLE_AUTORELOAD","id":"33","title":"AZLE_AUTORELOAD"},"34":{"body":"Set this to the hash that you would like Azle to use when determining the container image, container, and wasmedge-quickjs directory names. The container image file and wasmedge-quickjs directory will be stored at ~/.config/azle. The hash is the final part of each of those names.","breadcrumbs":"Reference » Environment Variables » AZLE_DOCKERFILE_HASH","id":"34","title":"AZLE_DOCKERFILE_HASH"},"35":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_IDENTITY_STORAGE_MODE","id":"35","title":"AZLE_IDENTITY_STORAGE_MODE"},"36":{"body":"Set this to true to see rough instruction counts just before JavaScript execution completes for calls.","breadcrumbs":"Reference » Environment Variables » AZLE_INSTRUCTION_COUNT","id":"36","title":"AZLE_INSTRUCTION_COUNT"},"37":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_NUM_RUNS","id":"37","title":"AZLE_PROPTEST_NUM_RUNS"},"38":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_PATH","id":"38","title":"AZLE_PROPTEST_PATH"},"39":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_QUIET","id":"39","title":"AZLE_PROPTEST_QUIET"},"4":{"body":"There are many Azle examples in the examples directory . We recommend starting with the following: apollo_server audio_and_video autoreload ethers ethers_base express fetch_ic file_protocol fs hello_world http_outcall_fetch hybrid_canister ic_evm_rpc internet_identity large_files sqlite tfjs web_assembly","breadcrumbs":"Examples » Examples","id":"4","title":"Examples"},"40":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_SEED","id":"40","title":"AZLE_PROPTEST_SEED"},"41":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_VERBOSE","id":"41","title":"AZLE_PROPTEST_VERBOSE"},"42":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_TEST_FETCH","id":"42","title":"AZLE_TEST_FETCH"},"43":{"body":"Set this to true to force Azle to build the container image locally from the internal Dockerfile instead of attempting to download the container image.","breadcrumbs":"Reference » Environment Variables » AZLE_USE_DOCKERFILE","id":"43","title":"AZLE_USE_DOCKERFILE"},"44":{"body":"Set this to true to enable more logging output during dfx deploy.","breadcrumbs":"Reference » Environment Variables » AZLE_VERBOSE","id":"44","title":"AZLE_VERBOSE"},"45":{"body":"Set this to the path that you would like Azle to use to find the wasmedge-quickjs directory. The default is ~/.config/azle/wasmedge-quickjs_[current Dockerfile hash].","breadcrumbs":"Reference » Environment Variables » AZLE_WASMEDGE_QUICKJS_DIR","id":"45","title":"AZLE_WASMEDGE_QUICKJS_DIR"},"46":{"body":"Add the --native-compilation option to the command in the build property of your canister object in your dfx.json file. Make sure you install the correct dependencies for your project's version of Azle.","breadcrumbs":"Reference » Native Compilation » Native Compilation TL;DR","id":"46","title":"Native Compilation TL;DR"},"47":{"body":"Examples: key_value_store primitive_types stable_structures Azle uses a container image and Podman to simplify the development environment experience. Because of this, Azle only requires dfx, node/npm, and podman to be installed on the developer's machine. But this setup isn't always desirable. For example, Podman has trouble running inside of a Docker container. If you would like to skip the container and run Azle's build process directly on your machine, you can do so as follows: Add the --native-compilation option to the command in the build property of your canister object in your dfx.json file, like this: npx azle canister_name --native-compilation. Install prerequisites: sudo apt-get update\nsudo apt-get install clang\nsudo apt-get install build-essential Install Rust: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.73.0 --profile=minimal Install wasm32-wasi: rustup target add wasm32-wasi Install wasi2ic: cargo install --git https://github.com/wasm-forge/wasi2ic --rev 806c3558aad24224852a9582f018178402cb3679 Download and rename wasmedge-quickjs: mkdir -p ~/.config/azle\ncd ~/.config/azle\ngit clone https://github.com/demergent-labs/wasmedge-quickjs\ncd wasmedge-quickjs\ngit checkout c21ff69f442998e4cda4619166e23a9bc91418be\ncd -\nmv wasmedge-quickjs wasmedge-quickjs_$(npx azle@0.21.1 dockerfile-hash) Keep in mind that much of this setup is Azle version-specific. The installation steps above are accurate as of version 0.21.1 of Azle. If your Azle project uses a different version of Azle then you might need to make changes to these instructions to ensure correct compilation and execution. If you are struggling to get --native-compilation to work, it may be helpful for you to view the following files from the Azle repository: Dockerfile test.yml , search for --native-compilation","breadcrumbs":"Reference » Native Compilation » Native Compilation","id":"47","title":"Native Compilation"},"48":{"body":"This entire section of the documentation may be out of date Azle is currently going through a transition to give higher priority to utilizing HTTP, REST, JSON, and other familiar web technologies. This is in contrast to having previously focused on ICP-specific technologies like Candid and explicitly creating Canister objects with query and update methods. We are calling these two paradigms HTTP-based and Candid-based. Many concepts from the Candid-based documentation are still applicable in the HTTP-based paradigm. The HTTP-based paradigm simply focuses on changing the communication and serialization strategies to be more web-focused and less custom.","breadcrumbs":"Old Candid-based Documentation » Old Candid-based Documentation","id":"48","title":"Old Candid-based Documentation"},"49":{"body":"Azle is a TypeScript and JavaScript Canister Development Kit (CDK) for the Internet Computer (IC). In other words, it's a TypeScript/JavaScript runtime for building applications ( canisters ) on the IC. npm package GitHub repo Discord channel","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Azle (Beta)","id":"49","title":"Azle (Beta)"},"5":{"body":"Starting the local replica Deploying to the local replica Interacting with your canister Deploying to mainnet Common deployment issues There are two main ICP environments that you will generally interact with: the local replica and mainnet . We recommend using the dfx command line tools to deploy to these environments. Please note that not all dfx commands are shown here. See the dfx CLI reference for more information.","breadcrumbs":"Deployment » Deployment","id":"5","title":"Deployment"},"50":{"body":"Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Disclaimer","id":"50","title":"Disclaimer"},"51":{"body":"Azle is currently developed by Demergent Labs , a for-profit company with a grant from DFINITY . Demergent Labs' vision is to accelerate the adoption of Web3, the Internet Computer, and sustainable open source.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Demergent Labs","id":"51","title":"Demergent Labs"},"52":{"body":"Azle and the IC provide unique benefits and drawbacks, and both are not currently suitable for all application use-cases. The following information will help you to determine when Azle and the IC might be beneficial for your use-case.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Benefits and drawbacks","id":"52","title":"Benefits and drawbacks"},"53":{"body":"Azle intends to be a full TypeScript and JavaScript environment for the IC (a decentralized cloud platform), with support for all of the TypeScript and JavaScript language and as many relevant environment APIs as possible. These environment APIs will be similar to those available in the Node.js and web browser environments. One of the core benefits of Azle is that it allows web developers to bring their TypeScript or JavaScript skills to the IC. For example, Azle allows the use of various npm packages and VS Code intellisense. As for the IC, we believe its main benefits can be broken down into the following categories: Ownership Security Developer Experience Most of these benefits stem from the decentralized nature of the IC, though the IC is best thought of as a progressively decentralizing cloud platform. As opposed to traditional cloud platforms, its goal is to be owned and controlled by many independent entities. Ownership Full-stack group ownership Autonomous ownership Permanent APIs Credible neutrality Reduced platform risk Full-stack group ownership The IC allows you to build applications that are controlled directly and only (with some caveats) by a group of people. This is in opposition to most cloud applications written today, which must be under the control of a very limited number of people and often a single legal entity that answers directly to a cloud provider, which itself is a single legal entity. In the blockchain world, group-owned applications are known as DAOs . As opposed to DAOs built on most blockchains, the IC allows full-stack applications to be controlled by groups. This means that the group fully controls the running instances of the frontend and the backend code. Autonomous ownership In addition to allowing applications to be owned by groups of people, the IC also allows applications to be owned by no one. This essentially creates autonomous applications or everlasting processes that execute indefinitely. The IC will essentially allow such an application to run indefinitely, unless it depletes its balance of cycles, or the NNS votes to shut it down, neither of which is inevitable. Permanent APIs Because most web APIs are owned and operated by individual entities, their fate is tied to that of their owners. If their owners go out of business, then those APIs may cease to exist. If their owners decide that they do not like or agree with certain users, they may restrict their access. In the end, they may decide to shut down or restrict access for arbitrary reasons. Because the IC allows for group and autonomous ownership of cloud software, the IC is able to produce potentially permanent web APIs. A decentralized group of independent entities will find it difficult to censor API consumers or shut down an API. An autonomous API would take those difficulties to the extreme, as it would continue operating as long as consumers were willing to pay for it. Credible neutrality Group and autonomous ownership makes it possible to build neutral cloud software on the IC. This type of software would allow independent parties to coordinate with reduced trust in each other or a single third-party coordinator. This removes the risk of the third-party coordinator acting in its own self-interest against the interests of the coordinating participants. The coordinating participants would also find it difficult to implement changes that would benefit themselves to the detriment of other participants. Examples could include mobile app stores, ecommerce marketplaces, and podcast directories. Reduced platform risk Because the IC is not owned or controlled by any one entity or individual, the risk of being deplatformed is reduced. This is in opposition to most cloud platforms, where the cloud provider itself generally has the power to arbitrarily remove users from its platform. While deplatforming can still occur on the IC, the only endogenous means of forcefully taking down an application is through an NNS vote. Security Built-in replication Built-in authentication Built-in firewall/port management Built-in sandboxing Threshold protocols Verifiable source code Blockchain integration Built-in replication Replication has many benefits that stem from reducing various central points of failure. The IC is at its core a Byzantine Fault Tolerant replicated compute environment. Applications are deployed to subnets which are composed of nodes running replicas. Each replica is an independent replicated state machine that executes an application's state transitions (usually initiated with HTTP requests) and persists the results. This replication provides a high level of security out-of-the-box. It is also the foundation of a number of protocols that provide threshold cryptographic operations to IC applications. Built-in authentication IC client tooling makes it easy to sign and send messages to the IC, and Internet Identity provides a novel approach to self-custody of private keys. The IC automatically authenticates messages with the public key of the signer, and provides a compact representation of that public key, called a principal, to the application. The principal can be used for authorization purposes. This removes many authentication concerns from the developer. Built-in firewall/port management The concept of ports and various other low-level network infrastructure on the IC is abstracted away from the developer. This can greatly reduce application complexity thus minimizing the chance of introducing vulnerabilities through incorrect configurations. Canisters expose endpoints through various methods, usually query or update methods. Because authentication is also built-in, much of the remaining vulnerability surface area is minimized to implementing correct authorization rules in the canister method endpoints. Built-in sandboxing Canisters have at least two layers of sandboxing to protect colocated canisters from each other. All canisters are at their core Wasm modules and thus inherit the built-in Wasm sandbox. In case there is any bug in the underlying implementation of the Wasm execution environment (or a vulnerability in the imported host functionality), there is also an OS-level sandbox. Developers need not do anything to take advantage of these sandboxes. Threshold protocols The IC provides a number of threshold protocols that allow groups of independent nodes to perform cryptographic operations. These protocols remove central points of failure while providing familiar and useful cryptographic operations to developers. Included are ECDSA , BLS , VRF-like , and in the future threshold key derivation . Verifiable source code IC applications (canisters) are compiled into Wasm and deployed to the IC as Wasm modules. The IC hashes each canister's Wasm binary and stores it for public retrieval. The Wasm binary hash can be retrieved and compared with the hash of an independently compiled Wasm binary derived from available source code. If the hashes match, then one can know with a high degree of certainty that the application is executing the Wasm binary that was compiled from that source code. Blockchain integration When compared with web APIs built for the same purpose, the IC provides a high degree of security when integrating with various other blockchains. It has a direct client integration with Bitcoin, allowing applications to query its state with BFT guarantees. A similar integration is coming for Ethereum. In addition to these blockchain client integrations, a threshold ECDSA protocol (tECDSA) allows the IC to create keys and sign transactions on various ECDSA chains . These chains include Bitcoin and Ethereum, and in the future the protocol may be extended to allow interaction with various EdDSA chains . These direct integrations combined with tECDSA provide a much more secure way to provide blockchain functionality to end users than creating and storing their private keys on traditional cloud infrastructure. Developer experience Built-in devops Orthogonal persistence Built-in devops The IC provides many devops benefits automatically. Though currently limited in its scalability, the protocol attempts to remove the need for developers to concern themselves with concepts such as autoscaling, load balancing, uptime, sandboxing, and firewalls/port management. Correctly constructed canisters have a simple deploy process and automatically inherit these devops capabilities up unto the current scaling limits of the IC. DFINITY engineers are constantly working to remove scalability bottlenecks. Orthogonal persistence The IC automatically persists its heap. This creates an extremely convenient way for developers to store application state, by simply writing into global variables in their programming language of choice. This is a great way to get started. If a canister upgrades its code, swapping out its Wasm binary, then the heap must be cleared. To overcome this limitation, there is a special area of memory called stable memory that persists across these canister upgrades. Special stable data structures provide a familiar API that allows writing into stable memory directly. All of this together provides the foundation for a very simple persistence experience for the developer. The persistence tools now available and coming to the IC may be simpler than their equivalents on traditional cloud infrastructure.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Benefits","id":"53","title":"Benefits"},"54":{"body":"It's important to note that both Azle and the IC are early-stage projects. The IC officially launched in May of 2021, and Azle reached beta in April of 2022. Azle Some of Azle's main drawbacks can be summarized as follows: Beta Security risks Missing APIs Beta Azle reached beta in April of 2022. It's an immature project that may have unforeseen bugs and other issues. We're working constantly to improve it. We hope to get to a production-ready 1.0 in 2024. The following are the major blockers to 1.0: Extensive automated property test coverage Multiple independent security reviews/audits Broad npm package support Security risks As discussed earlier, these are some things to keep in mind: Azle does not yet have extensive automated property tests Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to the IC Missing APIs Azle is not Node.js nor is it V8 running in a web browser. It is using a JavaScript interpreter running in a very new and very different environment. APIs from the Node.js and web browser ecosystems may not be present in Azle. Our goal is to support as many of these APIs as possible over time. IC Some of the IC's main drawbacks can be summarized as follows: Early High latencies Limited and expensive compute resources Limited scalability Lack of privacy NNS risk Early The IC launched officially in May of 2021. As a relatively new project with an extremely ambitious vision, you can expect a small community, immature tooling, and an unproven track record. Much has been delivered, but many promises are yet to be fulfilled. High latencies Any requests that change state on the IC must go through consensus, thus you can expect latencies of a few seconds for these types of requests. When canisters need to communicate with each other across subnets or under heavy load, these latencies can be even longer. Under these circumstances, in the worst case latencies will build up linearly. For example, if canister A calls canister B calls canister C, and these canisters are all on different subnets or under heavy load, then you might need to multiply the latency by the total number of calls. Limited and expensive compute resources CPU usage, data storage, and network usage may be more expensive than the equivalent usage on traditional cloud platforms. Combining these costs with the high latencies explained above, it becomes readily apparent that the IC is currently not built for high-performance computing. Limited scalability The IC might not be able to scale to the needs of your application. It is constantly seeking to improve scalability bottlenecks, but it will probably not be able to onboard millions of users to your traditional web application. Lack of privacy You should assume that all of your application data (unless it is end-to-end encrypted) is accessible to multiple third-parties with no direct relationship and limited commitment to you. Currently all canister state sits unencrypted on node operator's machines. Application-layer access controls for data are possible, but motivated node operators will have an easy time getting access to your data. NNS risk The NNS has the ability to uninstall any canister and can generally change anything about the IC protocol. The NNS uses a simple liquid democracy based on coin/token voting and follower relationships. At the time of this writing most of the voting power on the NNS follows DFINITY for protocol changes, effectively giving DFINITY write control to the protocol while those follower relationships remain in place. The NNS must mature and decentralize to provide practical and realistic protections to canisters and their users.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Drawbacks","id":"54","title":"Drawbacks"},"55":{"body":"The Internet Computer (IC) is a decentralized cloud platform. Actually, it is better thought of as a progressively decentralizing cloud platform. Its full vision is yet to be fulfilled. It aims to be owned and operated by many independent entities in many geographies and legal jurisdictions throughout the world. This is in opposition to most traditional cloud platforms today, which are generally owned and operated by one overarching legal entity. The IC is composed of computer hardware nodes running the IC protocol software. Each running IC protocol software process is known as a replica. Nodes are assigned into groups known as subnets. Each subnet attempts to maximize its decentralization of nodes according to factors such as data center location and node operator independence. The subnets vary in size. Generally speaking the larger the size of the subnet the more secure it will be. Subnets currently range in size from 13 to 40 nodes, with most subnets having 13 nodes. IC applications, known as canisters, are deployed to specific subnets. They are then accessible through Internet Protocol requests such as HTTP. Each subnet replicates all canisters across all of its replicas. A consensus protocol is run by the replicas to ensure Byzantine Fault Tolerance . View the IC Dashboard to explore all data centers, subnets, node operators, and many other aspects of the IC.","breadcrumbs":"Old Candid-based Documentation » Internet Computer Overview » Internet Computer Overview","id":"55","title":"Internet Computer Overview"},"56":{"body":"Canisters are Internet Computer (IC) applications. They are the encapsulation of your code and state, and are essentially Wasm modules. State can be stored on the 4 GiB heap or in a larger 96 GiB location called stable memory. You can store state on the heap using your language's native global variables. You can store state in stable memory using low-level APIs or special stable data structures that behave similarly to native language data structures. State changes must go through a process called consensus. The consensus process ensures that state changes are Byzantine Fault Tolerant . This process takes a few seconds to complete. Operations on canister state are exposed to users through canister methods. These methods can be invoked through HTTP requests. Query methods allow state to be read and are low-latency. Update methods allow state to be changed and are higher-latency. Update methods take a few seconds to complete because of the consensus process.","breadcrumbs":"Old Candid-based Documentation » Canisters Overview » Canisters Overview","id":"56","title":"Canisters Overview"},"57":{"body":"Windows is only supported through a Linux virtual environment of some kind, such as WSL On Ubuntu/WSL: sudo apt-get install podman On Mac: brew install podman It's recommended to use nvm and Node.js 20: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash Restart your terminal and then run: nvm install 20 Check that the installation went smoothly by looking for clean output from the following command: node --version Install the dfx command line tools for managing ICP applications: DFX_VERSION=0.16.1 sh -ci \"$(curl -fsSL https://sdk.dfinity.org/install.sh)\" Check that the installation went smoothly by looking for clean output from the following command: dfx --version If after trying to run dfx --version you encounter an error such as dfx: command not found, you might need to add $HOME/bin to your path. Here's an example of doing this in your .bashrc: echo 'export PATH=\"$PATH:$HOME/bin\"' >> \"$HOME/.bashrc\"","breadcrumbs":"Old Candid-based Documentation » Installation » Installation","id":"57","title":"Installation"},"58":{"body":"Quick start Methodical start The project directory and file structure index.ts tsconfig.json dfx.json Local deployment Common deployment issues Interacting with your canister from the command line Interacting with your canister from the web UI Let's build your first application (canister) with Azle! Before embarking please ensure you've followed all of the installation instructions , especially noting the build dependencies . We'll build a simple Hello World canister that shows the basics of importing Azle, exposing a query method, exposing an update method, and storing some state in a global variable. We'll then interact with it from the command line and from our web browser.","breadcrumbs":"Old Candid-based Documentation » Hello World » Hello World","id":"58","title":"Hello World"},"59":{"body":"We are going to use the Azle new command which creates a simple example project. First use the new command to create a new project called azle_hello_world: npx azle new azle_hello_world Now let's go inside of our project: cd azle_hello_world We should install Azle and all of its dependencies: npm install Start up your local replica: dfx start In another terminal, deploy your canister: dfx deploy azle_hello_world Call the setMessage method: dfx canister call azle_hello_world setMessage '(\"Hello world!\")' Call the getMessage method: dfx canister call azle_hello_world getMessage If you run into an error during deployment, see the common deployment issues section . See the official azle_hello_world example for more information.","breadcrumbs":"Old Candid-based Documentation » Hello World » Quick Start","id":"59","title":"Quick Start"},"6":{"body":"We recommend running your local replica in its own terminal and on a port of your choosing: dfx start --host 127.0.0.1:8000 Alternatively you can start the local replica as a background process: dfx start --background --host 127.0.0.1:8000 If you want to stop a local replica running in the background: dfx stop If you ever see this kind of error after dfx stop: Error: Failed to kill all processes. Remaining: 627221 626923 627260 Then try this: sudo kill -9 627221\nsudo kill -9 626923\nsudo kill -9 627260 If your replica starts behaving strangely, we recommend starting the replica clean, which will clean the dfx state of your project: dfx start --clean --host 127.0.0.1:8000","breadcrumbs":"Deployment » Starting the local replica","id":"6","title":"Starting the local replica"},"60":{"body":"","breadcrumbs":"Old Candid-based Documentation » Hello World » Methodical start","id":"60","title":"Methodical start"},"61":{"body":"Assuming you're starting completely from scratch, run these commands to setup your project's directory and file structure: mkdir azle_hello_world\ncd azle_hello_world mkdir src touch src/index.ts\ntouch tsconfig.json\ntouch dfx.json Now install Azle, which will create your package.json and package-lock.json files: npm install azle Open up azle_hello_world in your text editor (we recommend VS Code ).","breadcrumbs":"Old Candid-based Documentation » Hello World » The project directory and file structure","id":"61","title":"The project directory and file structure"},"62":{"body":"Here's the main code of the project, which you should put in the azle_hello_world/src/index.ts file of your canister: import { Canister, query, text, update, Void } from 'azle'; // This is a global variable that is stored on the heap\nlet message = ''; export default Canister({ // Query calls complete quickly because they do not go through consensus getMessage: query([], text, () => { return message; }), // Update calls take a few seconds to complete // This is because they persist state changes and go through consensus setMessage: update([text], Void, (newMessage) => { message = newMessage; // This change will be persisted })\n}); Let's discuss each section of the code. import { Canister, query, text, update, Void } from 'azle'; The code starts off by importing Canister, query, text, update and Void from azle. The azle module provides most of the Internet Computer (IC) APIs for your canister. // This is a global variable that is stored on the heap\nlet message = ''; We have created a global variable to store the state of our application. This variable is in scope to all of the functions defined in this module. We have set it equal to an empty string. export default Canister({ ...\n}); The Canister function allows us to export our canister's definition to the Azle IC environment. // Query calls complete quickly because they do not go through consensus\ngetMessage: query([], text, () => { return message;\n}), We are exposing a canister query method here. This method simply returns our global message variable. We use a CandidType object called text to instruct Azle to encode the return value as a Candid text value. When query methods are called they execute quickly because they do not have to go through consensus. // Update calls take a few seconds to complete\n// This is because they persist state changes and go through consensus\nsetMessage: update([text], Void, (newMessage) => { message = newMessage; // This change will be persisted\n}); We are exposing an update method here. This method accepts a string from the caller and will store it in our global message variable. We use a CandidType object called text to instruct Azle to decode the newMessage parameter from a Candid text value to a JavaScript string value. Azle will infer the TypeScript type for newMessage. We use a CandidType object called Void to instruct Azle to encode the return value as the absence of a Candid value. When update methods are called they take a few seconds to complete. This is because they persist changes and go through consensus. A majority of nodes in a subnet must agree on all state changes introduced in calls to update methods. That's it! We've created a very simple getter/setter Hello World application. But no Hello World project is complete without actually yelling Hello world! To do that, we'll need to setup the rest of our project.","breadcrumbs":"Old Candid-based Documentation » Hello World » index.ts","id":"62","title":"index.ts"},"63":{"body":"Create the following in azle_hello_world/tsconfig.json: { \"compilerOptions\": { \"strict\": true, \"target\": \"ES2020\", \"moduleResolution\": \"node\", \"allowJs\": true, \"outDir\": \"HACK_BECAUSE_OF_ALLOW_JS\" }\n}","breadcrumbs":"Old Candid-based Documentation » Hello World » tsconfig.json","id":"63","title":"tsconfig.json"},"64":{"body":"Create the following in azle_hello_world/dfx.json: { \"canisters\": { \"azle_hello_world\": { \"type\": \"custom\", \"main\": \"src/index.ts\", \"candid\": \"src/index.did\", \"build\": \"npx azle azle_hello_world\", \"wasm\": \".azle/azle_hello_world/azle_hello_world.wasm\", \"gzip\": true } }\n}","breadcrumbs":"Old Candid-based Documentation » Hello World » dfx.json","id":"64","title":"dfx.json"},"65":{"body":"Let's deploy to our local replica. First startup the replica: dfx start --background Then deploy the canister: dfx deploy","breadcrumbs":"Old Candid-based Documentation » Hello World » Local deployment","id":"65","title":"Local deployment"},"66":{"body":"If you run into an error during deployment, see the common deployment issues section .","breadcrumbs":"Old Candid-based Documentation » Hello World » Common deployment issues","id":"66","title":"Common deployment issues"},"67":{"body":"Once we've deployed we can ask for our message: dfx canister call azle_hello_world getMessage We should see (\"\") representing an empty message. Now let's yell Hello World!: dfx canister call azle_hello_world setMessage '(\"Hello World!\")' Retrieve the message: dfx canister call azle_hello_world getMessage We should see (\"Hello World!\").","breadcrumbs":"Old Candid-based Documentation » Hello World » Interacting with your canister from the command line","id":"67","title":"Interacting with your canister from the command line"},"68":{"body":"After deploying your canister, you should see output similar to the following in your terminal: Deployed canisters.\nURLs: Backend canister via Candid interface: azle_hello_world: http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai Open up http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai or the equivalent URL from your terminal to access the web UI and interact with your canister.","breadcrumbs":"Old Candid-based Documentation » Hello World » Interacting with your canister from the web UI","id":"68","title":"Interacting with your canister from the web UI"},"69":{"body":"Starting the local replica Deploying to the local replica Interacting with your canister Deploying to mainnet Common deployment issues There are two main Internet Computer (IC) environments that you will generally interact with: the local replica and mainnet. When developing on your local machine, our recommended flow is to start up a local replica in your project's root directoy and then deploy to it for local testing.","breadcrumbs":"Old Candid-based Documentation » Deployment » Deployment","id":"69","title":"Deployment"},"7":{"body":"To deploy all canisters defined in your dfx.json: dfx deploy If you are building an HTTP-based canister and would like your canister to autoreload on file changes (DO NOT deploy to mainnet with autoreload enabled): AZLE_AUTORELOAD=true dfx deploy To deploy an individual canister: dfx deploy [canisterName]","breadcrumbs":"Deployment » Deploying to the local replica","id":"7","title":"Deploying to the local replica"},"70":{"body":"Open a terminal and navigate to your project's root directory: dfx start Alternatively you can start the local replica as a background process: dfx start --background If you want to stop a local replica running in the background: dfx stop If you ever see this error after dfx stop: Error: Failed to kill all processes. Remaining: 627221 626923 627260 Then try this: sudo kill -9 627221\nsudo kill -9 626923\nsudo kill -9 627260 If your replica starts behaving strangely, we recommend starting the replica clean, which will clean the dfx state of your project: dfx start --clean","breadcrumbs":"Old Candid-based Documentation » Deployment » Starting the local replica","id":"70","title":"Starting the local replica"},"71":{"body":"To deploy all canisters defined in your dfx.json: dfx deploy To deploy an individual canister: dfx deploy canister_name","breadcrumbs":"Old Candid-based Documentation » Deployment » Deploying to the local replica","id":"71","title":"Deploying to the local replica"},"72":{"body":"As a developer you can generally interact with your canister in three ways: dfx command line dfx web UI @dfinity/agent","breadcrumbs":"Old Candid-based Documentation » Deployment » Interacting with your canister","id":"72","title":"Interacting with your canister"},"73":{"body":"You can see a more complete reference here . The commands you are likely to use most frequently are: # assume a canister named my_canister # builds and deploys all canisters specified in dfx.json\ndfx deploy # builds all canisters specified in dfx.json\ndfx build # builds and deploys my_canister\ndfx deploy my_canister # builds my_canister\ndfx build my_canister # removes the Wasm binary and state of my_canister\ndfx uninstall-code my_canister # calls the methodName method on my_canister with a string argument\ndfx canister call my_canister methodName '(\"This is a Candid string argument\")'","breadcrumbs":"Old Candid-based Documentation » Deployment » dfx command line","id":"73","title":"dfx command line"},"74":{"body":"After deploying your canister, you should see output similar to the following in your terminal: Deployed canisters.\nURLs: Backend canister via Candid interface: my_canister: http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai Open up http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai to access the web UI.","breadcrumbs":"Old Candid-based Documentation » Deployment » dfx web UI","id":"74","title":"dfx web UI"},"75":{"body":"@dfinity/agent is the TypeScript/JavaScript client library for interacting with canisters on the IC. If you are building a client web application, this is probably what you'll want to use. There are other agents for other languages as well: Java Python Rust","breadcrumbs":"Old Candid-based Documentation » Deployment » @dfinity/agent","id":"75","title":"@dfinity/agent"},"76":{"body":"Assuming you are setup with cycles , then you are ready to deploy to mainnet. To deploy all canisters defined in your dfx.json: dfx deploy --network ic To deploy an individual canister: dfx deploy --network ic canister_name","breadcrumbs":"Old Candid-based Documentation » Deployment » Deploying to mainnet","id":"76","title":"Deploying to mainnet"},"77":{"body":"If you run into an error during deployment, try the following: Ensure that you have followed the instructions correctly in the installation chapter , especially noting the build dependencies Start the whole deployment process from scratch by running the following commands: dfx stop or simply terminate dfx in your terminal, dfx start --clean, npx azle clean, dfx deploy Look for more error output by adding the --verbose flag to the build command in your dfx.json file like so: \"build\": \"npx azle build hello_world --verbose Look for errors in each of the files in ~/.config/azle/rust/[rust_version]/logs Reach out in the Discord channel","breadcrumbs":"Old Candid-based Documentation » Deployment » Common deployment issues","id":"77","title":"Common deployment issues"},"78":{"body":"Azle has many example projects showing nearly all Azle APIs. They can be found in the examples directory of the Azle GitHub repository . We'll highlight a few of them and some others here: Query Update Primitive Types Stable Structures Cycles Cross Canister Calls Management Canister Outgoing HTTP Requests Incoming HTTP Requests Pre and Post Upgrade Timers Multisig Vault ICRC-1 IC Chainlink Data Feeds Bitcoin ckBTC","breadcrumbs":"Old Candid-based Documentation » Examples » Examples","id":"78","title":"Examples"},"79":{"body":"","breadcrumbs":"Old Candid-based Documentation » Query Methods » Query Methods","id":"79","title":"Query Methods"},"8":{"body":"You will generally interact with your canister through an HTTP client such as curl, fetch, or a web browser. The URL of your canister locally will look like this: http://[canisterId].localhost:[replicaPort]. Azle will print your canister's URL in the terminal after a successful deploy. # You can obtain the canisterId like this\ndfx canister id [canisterName] # You can obtain the replicaPort like this\ndfx info webserver-port # An example of performing a GET request to a canister\ncurl http://a3shf-5eaaa-aaaaa-qaafa-cai.localhost:8000 # An example of performing a POST request to a canister\ncurl -X POST -H \"Content-Type: application/json\" -d \"{ \\\"hello\\\": \\\"world\\\" }\" http://a3shf-5eaaa-aaaaa-qaafa-cai.localhost:8000","breadcrumbs":"Deployment » Interacting with your canister","id":"8","title":"Interacting with your canister"},"80":{"body":"Created with the query function Read-only Executed on a single node No consensus Latency on the order of ~100 milliseconds 5 billion Wasm instruction limit 4 GiB heap limit ~32k queries per second per canister The most basic way to expose your canister's functionality publicly is through a query method. Here's an example of a simple query method named getString: import { Canister, query, text } from 'azle'; export default Canister({ getString: query([], text, () => { return 'This is a query method!'; })\n}); Query methods are defined inside of a call to Canister using the query function. The first parameter to query is an array of CandidType objects that will be used to decode the Candid bytes of the arguments sent from the client when calling your query method. The second parameter to query is a CandidType object used to encode the return value of your function to Candid bytes to then be sent back to the client. The third parameter to query is the function that receives the decoded arguments, performs some computation, and then returns a value to be encoded. The TypeScript signature of this function (parameter and return types) will be inferred from the CandidType arguments in the first and second parameters to query. getString can be called from the outside world through the IC's HTTP API. You'll usually invoke this API from the dfx command line, dfx web UI, or an agent . From the dfx command line you can call it like this: dfx canister call my_canister getString Query methods are read-only. They do not persist any state changes. Take a look at the following example: import { Canister, query, text, Void } from 'azle'; let db: { [key: string]: string;\n} = {}; export default Canister({ set: query([text, text], Void, (key, value) => { db[key] = value; })\n}); Calling set will perform the operation of setting the key property on the db object to value, but after the call finishes that change will be discarded. This is because query methods are executed on a single node machine and do not go through consensus . This results in lower latencies, perhaps on the order of 100 milliseconds. There is a limit to how much computation can be done in a single call to a query method. The current query call limit is 5 billion Wasm instructions . Here's an example of a query method that runs the risk of reaching the limit: import { Canister, nat32, query, text } from 'azle'; export default Canister({ pyramid: query([nat32], text, (levels) => { return new Array(levels).fill(0).reduce((acc, _, index) => { const asterisks = new Array(index + 1).fill('*').join(''); return `${acc}${asterisks}\\n`; }, ''); })\n}); From the dfx command line you can call pyramid like this: dfx canister call my_canister pyramid '(1_000)' With an argument of 1_000, pyramid will fail with an error ...exceeded the instruction limit for single message execution. Keep in mind that each query method invocation has up to 4 GiB of heap available. In terms of query scalability, an individual canister likely has an upper bound of ~36k queries per second .","breadcrumbs":"Old Candid-based Documentation » Query Methods » TL;DR","id":"80","title":"TL;DR"},"81":{"body":"","breadcrumbs":"Old Candid-based Documentation » Update Methods » Update Methods","id":"81","title":"Update Methods"},"82":{"body":"Created with the update function Read-write Executed on many nodes Consensus Latency ~2-5 seconds 20 billion Wasm instruction limit 4 GiB heap limit 96 GiB stable memory limit ~900 updates per second per canister Update methods are similar to query methods, but state changes can be persisted. Here's an example of a simple update method: import { Canister, nat64, update } from 'azle'; let counter = 0n; export default Canister({ increment: update([], nat64, () => { return counter++; })\n}); Calling increment will return the current value of counter and then increase its value by 1. Because counter is a global variable, the change will be persisted to the heap, and subsequent query and update calls will have access to the new counter value. Because the Internet Computer (IC) persists changes with certain fault tolerance guarantees, update calls are executed on many nodes and go through consensus . This leads to latencies of ~2-5 seconds per update call. Due to the latency and other expenses involved with update methods, it is best to use them only when necessary. Look at the following example: import { Canister, query, text, update, Void } from 'azle'; let message = ''; export default Canister({ getMessage: query([], text, () => { return message; }), setMessage: update([text], Void, (newMessage) => { message = newMessage; })\n}); You'll notice that we use an update method, setMessage, only to perform the change to the global message variable. We use getMessage, a query method, to read the message. Keep in mind that the heap is limited to 4 GiB, and thus there is an upper bound to global variable storage capacity. You can imagine how a simple database like the following would eventually run out of memory with too many entries: import { Canister, None, Opt, query, Some, text, update, Void } from 'azle'; type Db = { [key: string]: string;\n}; let db: Db = {}; export default Canister({ get: query([text], Opt(text), (key) => { const value = db[key]; return value !== undefined ? Some(value) : None; }), set: update([text, text], Void, (key, value) => { db[key] = value; })\n}); If you need more than 4 GiB of storage, consider taking advantage of the 96 GiB of stable memory. Stable structures like StableBTreeMap give you a nice API for interacting with stable memory. These data structures will be covered in more detail later . Here's a simple example: import { Canister, Opt, query, StableBTreeMap, text, update, Void } from 'azle'; let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); })\n}); So far we have only seen how state changes can be persisted. State changes can also be discarded by implicit or explicit traps. A trap is an immediate stop to execution with the ability to provide a message to the execution environment. Traps can be useful for ensuring that multiple operations are either all completed or all disregarded, or in other words atomic. Keep in mind that these guarantees do not hold once cross-canister calls are introduced, but that's a more advanced topic covered later . Here's an example of how to trap and ensure atomic changes to your database: import { Canister, ic, Opt, query, Record, StableBTreeMap, text, update, Vec, Void\n} from 'azle'; const Entry = Record({ key: text, value: text\n}); let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); }), setMany: update([Vec(Entry)], Void, (entries) => { entries.forEach((entry) => { if (entry.key === 'trap') { ic.trap('explicit trap'); } db.insert(entry.key, entry.value); }); })\n}); In addition to ic.trap, an explicit JavaScript throw or any unhandled exception will also trap. There is a limit to how much computation can be done in a single call to an update method. The current update call limit is 20 billion Wasm instructions . If we modify our database example, we can introduce an update method that runs the risk of reaching the limit: import { Canister, nat64, Opt, query, StableBTreeMap, text, update, Void\n} from 'azle'; let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); }), setMany: update([nat64], Void, (numEntries) => { for (let i = 0; i < numEntries; i++) { db.insert(i.toString(), i.toString()); } })\n}); From the dfx command line you can call setMany like this: dfx canister call my_canister setMany '(10_000)' With an argument of 10_000, setMany will fail with an error ...exceeded the instruction limit for single message execution. In terms of update scalability, an individual canister likely has an upper bound of ~900 updates per second .","breadcrumbs":"Old Candid-based Documentation » Update Methods » TL;DR","id":"82","title":"TL;DR"},"83":{"body":"text blob nat nat8 nat16 nat32 nat64 int int8 int16 int32 int64 float32 float64 bool null vec opt record variant func service principal reserved empty Candid is an interface description language created by DFINITY . It can be used to define interfaces between services (canisters), allowing canisters and clients written in various languages to easily interact with each other. This interaction occurs through the serialization/encoding and deserialization/decoding of runtime values to and from Candid bytes. Azle performs automatic encoding and decoding of JavaScript values to and from Candid bytes through the use of various CandidType objects. For example, CandidType objects are used when defining the parameter and return types of your query and update methods. They are also used to define the keys and values of a StableBTreeMap. It's important to note that the CandidType objects decode Candid bytes into specific JavaScript runtime data structures that may differ in behavior from the description of the actual Candid type. For example, a float32 Candid type is a JavaScript Number , a nat64 is a JavaScript BigInt , and an int is also a JavaScript BigInt . Keep this in mind as it may result in unexpected behavior. Each CandidType object and its equivalent JavaScript runtime value is explained in more detail in The Azle Book Candid reference . A more canonical reference of all Candid types available on the Internet Computer (IC) can be found here . The following is a simple example showing how to import and use many of the CandidType objects available in Azle: import { blob, bool, Canister, float32, float64, Func, int, int16, int32, int64, int8, nat, nat16, nat32, nat64, nat8, None, Null, Opt, Principal, query, Record, Recursive, text, update, Variant, Vec\n} from 'azle'; const MyCanister = Canister({ query: query([], bool), update: update([], text)\n}); const Candid = Record({ text: text, blob: blob, nat: nat, nat64: nat64, nat32: nat32, nat16: nat16, nat8: nat8, int: int, int64: int64, int32: int32, int16: int16, int8: int8, float64: float64, float32: float32, bool: bool, null: Null, vec: Vec(text), opt: Opt(nat), record: Record({ firstName: text, lastName: text, age: nat8 }), variant: Variant({ Tag1: Null, Tag2: Null, Tag3: int }), func: Recursive(() => Func([], Candid, 'query')), canister: Canister({ query: query([], bool), update: update([], text) }), principal: Principal\n}); export default Canister({ candidTypes: query([], Candid, () => { return { text: 'text', blob: Uint8Array.from([]), nat: 340_282_366_920_938_463_463_374_607_431_768_211_455n, nat64: 18_446_744_073_709_551_615n, nat32: 4_294_967_295, nat16: 65_535, nat8: 255, int: 170_141_183_460_469_231_731_687_303_715_884_105_727n, int64: 9_223_372_036_854_775_807n, int32: 2_147_483_647, int16: 32_767, int8: 127, float64: Math.E, float32: Math.PI, bool: true, null: null, vec: ['has one element'], opt: None, record: { firstName: 'John', lastName: 'Doe', age: 35 }, variant: { Tag1: null }, func: [ Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'), 'candidTypes' ], canister: MyCanister(Principal.fromText('aaaaa-aa')), principal: Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai') }; })\n}); Calling candidTypes with dfx will return: ( record { func = func \"rrkah-fqaaa-aaaaa-aaaaq-cai\".candidTypes; text = \"text\"; nat16 = 65_535 : nat16; nat32 = 4_294_967_295 : nat32; nat64 = 18_446_744_073_709_551_615 : nat64; record = record { age = 35 : nat8; lastName = \"Doe\"; firstName = \"John\" }; int = 170_141_183_460_469_231_731_687_303_715_884_105_727 : int; nat = 340_282_366_920_938_463_463_374_607_431_768_211_455 : nat; opt = null; vec = vec { \"has one element\" }; variant = variant { Tag1 }; nat8 = 255 : nat8; canister = service \"aaaaa-aa\"; int16 = 32_767 : int16; int32 = 2_147_483_647 : int32; int64 = 9_223_372_036_854_775_807 : int64; null = null : null; blob = vec {}; bool = true; principal = principal \"ryjl3-tyaaa-aaaaa-aaaba-cai\"; int8 = 127 : int8; float32 = 3.1415927 : float32; float64 = 2.718281828459045 : float64; },\n)","breadcrumbs":"Old Candid-based Documentation » Candid » Candid","id":"83","title":"Candid"},"84":{"body":"","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Stable Structures","id":"84","title":"Stable Structures"},"85":{"body":"96 GiB of stable memory Persistent across upgrades Familiar API Must specify memory id No migrations per memory id Stable structures are data structures with familiar APIs that allow write and read access to stable memory. Stable memory is a separate memory location from the heap that currently allows up to 96 GiB of binary storage. Stable memory persists automatically across upgrades. Persistence on the Internet Computer (IC) is very important to understand. When a canister is upgraded (its code is changed after being initially deployed) its heap is wiped. This includes all global variables. On the other hand, anything stored in stable memory will be preserved. Writing and reading to and from stable memory can be done with a low-level API , but it is generally easier and preferable to use stable structures. Azle currently provides one stable structure called StableBTreeMap. It's similar to a JavaScript Map and has most of the common operations you'd expect such as reading, inserting, and removing values. Here's how to define a simple StableBTreeMap: import { nat8, StableBTreeMap, text } from 'azle'; let map = StableBTreeMap(0); This is a StableBTreeMap with a key of type nat8 and a value of type text. Unless you want a default type of any for your key and value, then you must explicitly type your StableBTreeMap with type arguments. StableBTreeMap works by encoding and decoding values under-the-hood, storing and retrieving these values in bytes in stable memory. When writing to and reading from a StableBTreeMap, by default the stableJson Serializable object is used to encode JS values into bytes and to decode JS values from bytes. stableJson uses JSON.stringify and JSON.parse with a custom replacer and reviver to handle many Candid and other values that you will most likely use in your canisters. You may use other Serializable objects besides stableJson, and you can even create your own. Simply pass in a Serializable object as the second and third parameters to your StableBTreeMap. The second parameter is the key Serializable object and the third parameter is the value Serializable object. For example, the following StableBTreeMap uses the nat8 and text CandidType objects from Azle as Serializable objects. These Serializable objects will encode and decode to and from Candid bytes: import { nat8, StableBTreeMap, text } from 'azle'; let map = StableBTreeMap(0, nat8, text); All CandidType objects imported from azle are Serializable objects. A Serializable object simply has a toBytes method that takes a JS value and returns a Uint8Array, and a fromBytes method that takes a Uint8Array and returns a JS value. Here's an example of how to create your own simple JSON Serializable: export interface Serializable { toBytes: (data: any) => Uint8Array; fromBytes: (bytes: Uint8Array) => any;\n} export function StableSimpleJson(): Serializable { return { toBytes(data: any) { const result = JSON.stringify(data); return Uint8Array.from(Buffer.from(result)); }, fromBytes(bytes: Uint8Array) { return JSON.parse(Buffer.from(bytes).toString()); } };\n} This StableBTreeMap also has a memory id of 0. Each StableBTreeMap instance must have a unique memory id between 0 and 254. Once a memory id is allocated, it cannot be used with a different StableBTreeMap. This means you can't create another StableBTreeMap using the same memory id, and you can't change the key or value types of an existing StableBTreeMap. This problem will be addressed to some extent . Here's an example showing all of the basic StableBTreeMap operations: import { bool, Canister, nat64, nat8, Opt, query, StableBTreeMap, text, Tuple, update, Vec\n} from 'azle'; const Key = nat8;\ntype Key = typeof Key.tsType; const Value = text;\ntype Value = typeof Value.tsType; let map = StableBTreeMap(0); export default Canister({ containsKey: query([Key], bool, (key) => { return map.containsKey(key); }), get: query([Key], Opt(Value), (key) => { return map.get(key); }), insert: update([Key, Value], Opt(Value), (key, value) => { return map.insert(key, value); }), isEmpty: query([], bool, () => { return map.isEmpty(); }), items: query([], Vec(Tuple(Key, Value)), () => { return map.items(); }), keys: query([], Vec(Key), () => { return Uint8Array.from(map.keys()); }), len: query([], nat64, () => { return map.len(); }), remove: update([Key], Opt(Value), (key) => { return map.remove(key); }), values: query([], Vec(Value), () => { return map.values(); })\n}); With these basic operations you can build more complex CRUD database applications: import { blob, Canister, ic, Err, nat64, Ok, Opt, Principal, query, Record, Result, StableBTreeMap, text, update, Variant, Vec\n} from 'azle'; const User = Record({ id: Principal, createdAt: nat64, recordingIds: Vec(Principal), username: text\n});\ntype User = typeof User.tsType; const Recording = Record({ id: Principal, audio: blob, createdAt: nat64, name: text, userId: Principal\n});\ntype Recording = typeof Recording.tsType; const AudioRecorderError = Variant({ RecordingDoesNotExist: Principal, UserDoesNotExist: Principal\n});\ntype AudioRecorderError = typeof AudioRecorderError.tsType; let users = StableBTreeMap(0);\nlet recordings = StableBTreeMap(1); export default Canister({ createUser: update([text], User, (username) => { const id = generateId(); const user: User = { id, createdAt: ic.time(), recordingIds: [], username }; users.insert(user.id, user); return user; }), readUsers: query([], Vec(User), () => { return users.values(); }), readUserById: query([Principal], Opt(User), (id) => { return users.get(id); }), deleteUser: update([Principal], Result(User, AudioRecorderError), (id) => { const userOpt = users.get(id); if ('None' in userOpt) { return Err({ UserDoesNotExist: id }); } const user = userOpt.Some; user.recordingIds.forEach((recordingId) => { recordings.remove(recordingId); }); users.remove(user.id); return Ok(user); }), createRecording: update( [blob, text, Principal], Result(Recording, AudioRecorderError), (audio, name, userId) => { const userOpt = users.get(userId); if ('None' in userOpt) { return Err({ UserDoesNotExist: userId }); } const user = userOpt.Some; const id = generateId(); const recording: Recording = { id, audio, createdAt: ic.time(), name, userId }; recordings.insert(recording.id, recording); const updatedUser: User = { ...user, recordingIds: [...user.recordingIds, recording.id] }; users.insert(updatedUser.id, updatedUser); return Ok(recording); } ), readRecordings: query([], Vec(Recording), () => { return recordings.values(); }), readRecordingById: query([Principal], Opt(Recording), (id) => { return recordings.get(id); }), deleteRecording: update( [Principal], Result(Recording, AudioRecorderError), (id) => { const recordingOpt = recordings.get(id); if ('None' in recordingOpt) { return Err({ RecordingDoesNotExist: id }); } const recording = recordingOpt.Some; const userOpt = users.get(recording.userId); if ('None' in userOpt) { return Err({ UserDoesNotExist: recording.userId }); } const user = userOpt.Some; const updatedUser: User = { ...user, recordingIds: user.recordingIds.filter( (recordingId) => recordingId.toText() !== recording.id.toText() ) }; users.insert(updatedUser.id, updatedUser); recordings.remove(id); return Ok(recording); } )\n}); function generateId(): Principal { const randomBytes = new Array(29) .fill(0) .map((_) => Math.floor(Math.random() * 256)); return Principal.fromUint8Array(Uint8Array.from(randomBytes));\n} The example above shows a very basic audio recording backend application. There are two types of entities that need to be stored, User and Recording. These are represented as Candid records. Each entity gets its own StableBTreeMap: import { blob, Canister, ic, Err, nat64, Ok, Opt, Principal, query, Record, Result, StableBTreeMap, text, update, Variant, Vec\n} from 'azle'; const User = Record({ id: Principal, createdAt: nat64, recordingIds: Vec(Principal), username: text\n});\ntype User = typeof User.tsType; const Recording = Record({ id: Principal, audio: blob, createdAt: nat64, name: text, userId: Principal\n});\ntype Recording = typeof Recording.tsType; const AudioRecorderError = Variant({ RecordingDoesNotExist: Principal, UserDoesNotExist: Principal\n});\ntype AudioRecorderError = typeof AudioRecorderError.tsType; let users = StableBTreeMap(0);\nlet recordings = StableBTreeMap(1); Notice that each StableBTreeMap has a unique memory id. You can begin to create basic database CRUD functionality by creating one StableBTreeMap per entity. It's up to you to create functionality for querying, filtering, and relations. StableBTreeMap is not a full-featured database solution, but a fundamental building block that may enable you to achieve more advanced database functionality. Demergent Labs plans to deeply explore database solutions on the IC in the future.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » TL;DR","id":"85","title":"TL;DR"},"86":{"body":"","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Caveats","id":"86","title":"Caveats"},"87":{"body":"It seems to be only some float64 values cannot be successfully stored and retrieved with a StableBTreeMap using stableJson because of this bug with JSON.parse: https://github.com/bellard/quickjs/issues/206","breadcrumbs":"Old Candid-based Documentation » Stable Structures » float64 values","id":"87","title":"float64 values"},"88":{"body":"Azle's Candid encoding/decoding implementation is currently not well optimized, and Candid may not be the most optimal encoding format overall, so you may experience heavy instruction usage when performing many StableBTreeMap operations in succession. A rough idea of the overhead from our preliminary testing is probably 1-2 million instructions for a full Candid encoding and decoding of values per StableBTreeMap operation. For these reasons we recommend using the stableJson Serializable object (the default) instead of CandidType Serializable objects.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » CandidType Performance","id":"88","title":"CandidType Performance"},"89":{"body":"Migrations must be performed manually by reading the values out of one StableBTreeMap and writing them into another. Once a StableBTreeMap is initialized to a specific memory id, that memory id cannot be changed unless the canister is completely wiped and initialized again.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Migrations","id":"89","title":"Migrations"},"9":{"body":"Assuming you are setup with a cycles wallet , then you are ready to deploy to mainnet. To deploy all canisters defined in your dfx.json: dfx deploy --network ic To deploy an individual canister: dfx deploy --network ic [canisterName] The URL of your canister on mainnet will look like this: https://[canisterId].raw.icp0.io.","breadcrumbs":"Deployment » Deploying to mainnet","id":"9","title":"Deploying to mainnet"},"90":{"body":"Canister values do not currently work with the default stableJson implementation. If you must persist Canisters, consider using the Canister CandidType object as your Serializable object in your StableBTreeMap, or create a custom replacer or reviver for stableJson that handles Canister.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Canister","id":"90","title":"Canister"},"91":{"body":"Examples: async_await bitcoin composite_queries cross_canister_calls cycles ethereum_json_rpc func_types heartbeat inline_types ledger_canister management_canister outgoing_http_requests threshold_ecdsa rejections timers tuple_types whoami Canisters are generally able to call the query or update methods of other canisters in any subnet. We refer to these types of calls as cross-canister calls. A cross-canister call begins with a definition of the canister to be called. Imagine a simple canister called token_canister: import { Canister, ic, nat64, Opt, Principal, StableBTreeMap, update\n} from 'azle'; let accounts = StableBTreeMap(0); export default Canister({ transfer: update([Principal, nat64], nat64, (to, amount) => { const from = ic.caller(); const fromBalance = getBalance(accounts.get(from)); const toBalance = getBalance(accounts.get(to)); accounts.insert(from, fromBalance - amount); accounts.insert(to, toBalance + amount); return amount; })\n}); function getBalance(accountOpt: Opt): nat64 { if ('None' in accountOpt) { return 0n; } else { return accountOpt.Some; }\n} Now that you have the canister definition, you can import and instantiate it in another canister: import { Canister, ic, nat64, Principal, update } from 'azle';\nimport TokenCanister from './token_canister'; const tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); If you don't have the actual definition of the token canister with the canister method implementations, you can always create your own canister definition without method implementations: import { Canister, ic, nat64, Principal, update } from 'azle'; const TokenCanister = Canister({ transfer: update([Principal, nat64], nat64)\n}); const tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); The IC guarantees that cross-canister calls will return. This means that, generally speaking, you will always receive a response from ic.call. If there are errors during the call, ic.call will throw. Wrapping your cross-canister call in a try...catch allows you to handle these errors. Let's add to our example code and explore adding some practical error-handling to stop people from stealing tokens. token_canister: import { Canister, ic, nat64, Opt, Principal, StableBTreeMap, update\n} from 'azle'; let accounts = StableBTreeMap(0); export default Canister({ transfer: update([Principal, nat64], nat64, (to, amount) => { const from = ic.caller(); const fromBalance = getBalance(accounts.get(from)); if (amount > fromBalance) { throw new Error(`${from} has an insufficient balance`); } const toBalance = getBalance(accounts.get(to)); accounts.insert(from, fromBalance - amount); accounts.insert(to, toBalance + amount); return amount; })\n}); function getBalance(accountOpt: Opt): nat64 { if ('None' in accountOpt) { return 0n; } else { return accountOpt.Some; }\n} payout_canister: import { Canister, ic, nat64, Principal, update } from 'azle';\nimport TokenCanister from './index'; const tokenCanister = TokenCanister( Principal.fromText('bkyz2-fmaaa-aaaaa-qaaaq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { try { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); } catch (error) { console.log(error); } return 0n; })\n}); Throwing will allow you to express error conditions and halt execution, but you may find embracing the Result variant as a better solution for error handling because of its composability and predictability. So far we have only shown a cross-canister call from an update method. Update methods can call other update methods or query methods (but not composite query methods as discussed below). If an update method calls a query method, that query method will be called in replicated mode. Replicated mode engages the consensus process, but for queries the state will still be discarded. Cross-canister calls can also be initiated from query methods. These are known as composite queries, and in Azle they are simply async query methods. Composite queries can call other composite query methods and regular query methods. Composite queries cannot call update methods. Here's an example of a composite query method: import { bool, Canister, ic, Principal, query } from 'azle'; const SomeCanister = Canister({ queryForBoolean: query([], bool)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ querySomeCanister: query([], bool, async () => { return await ic.call(someCanister.queryForBoolean); })\n}); You can expect cross-canister calls within the same subnet to take up to a few seconds to complete, and cross-canister calls across subnets take about double that time . Composite queries should be much faster, similar to query calls in latency. If you don't need to wait for your cross-canister call to return, you can use notify: import { Canister, ic, Principal, update, Void } from 'azle'; const SomeCanister = Canister({ receiveNotification: update([], Void)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ sendNotification: update([], Void, () => { return ic.notify(someCanister.receiveNotification); })\n}); If you need to send cycles with your cross-canister call, you can add cycles to the config object of ic.notify: import { Canister, ic, Principal, update, Void } from 'azle'; const SomeCanister = Canister({ receiveNotification: update([], Void)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ sendNotification: update([], Void, () => { return ic.notify(someCanister.receiveNotification, { cycles: 1_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Cross-canister » Cross-canister","id":"91","title":"Cross-canister"},"92":{"body":"This chapter is a work in progress.","breadcrumbs":"Old Candid-based Documentation » HTTP » HTTP","id":"92","title":"HTTP"},"93":{"body":"Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, query, Record, text, Tuple, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request: query([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » HTTP » Incoming HTTP requests","id":"93","title":"Incoming HTTP requests"},"94":{"body":"Examples: ethereum_json_rpc outgoing_http_requests import { Canister, ic, init, nat32, Principal, query, Some, StableBTreeMap, text, update\n} from 'azle';\nimport { HttpResponse, HttpTransformArgs, managementCanister\n} from 'azle/canisters/management'; let stableStorage = StableBTreeMap(0); export default Canister({ init: init([text], (ethereumUrl) => { stableStorage.insert('ethereumUrl', ethereumUrl); }), ethGetBalance: update([text], text, async (ethereumAddress) => { const urlOpt = stableStorage.get('ethereumUrl'); if ('None' in urlOpt) { throw new Error('ethereumUrl is not defined'); } const url = urlOpt.Some; const httpResponse = await ic.call(managementCanister.http_request, { args: [ { url, max_response_bytes: Some(2_000n), method: { post: null }, headers: [], body: Some( Buffer.from( JSON.stringify({ jsonrpc: '2.0', method: 'eth_getBalance', params: [ethereumAddress, 'earliest'], id: 1 }), 'utf-8' ) ), transform: Some({ function: [ic.id(), 'ethTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); return Buffer.from(httpResponse.body.buffer).toString('utf-8'); }), ethGetBlockByNumber: update([nat32], text, async (number) => { const urlOpt = stableStorage.get('ethereumUrl'); if ('None' in urlOpt) { throw new Error('ethereumUrl is not defined'); } const url = urlOpt.Some; const httpResponse = await ic.call(managementCanister.http_request, { args: [ { url, max_response_bytes: Some(2_000n), method: { post: null }, headers: [], body: Some( Buffer.from( JSON.stringify({ jsonrpc: '2.0', method: 'eth_getBlockByNumber', params: [`0x${number.toString(16)}`, false], id: 1 }), 'utf-8' ) ), transform: Some({ function: [ic.id(), 'ethTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); return Buffer.from(httpResponse.body.buffer).toString('utf-8'); }), ethTransform: query([HttpTransformArgs], HttpResponse, (args) => { return { ...args.response, headers: [] }; })\n});","breadcrumbs":"Old Candid-based Documentation » HTTP » Outgoing HTTP requests","id":"94","title":"Outgoing HTTP requests"},"95":{"body":"This chapter is a work in progress. You can access the management canister like this: import { blob, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ randomBytes: update([], blob, async () => { return await ic.call(managementCanister.raw_rand); })\n}); See the management canister reference section for more information.","breadcrumbs":"Old Candid-based Documentation » Management Canister » Management Canister","id":"95","title":"Management Canister"},"96":{"body":"This chapter is a work in progress. import { Canister, init, postUpgrade, preUpgrade } from 'azle'; export default Canister({ init: init([], () => { console.log('runs on first canister install'); }), preUpgrade: preUpgrade(() => { console.log('runs before canister upgrade'); }), postUpgrade: postUpgrade([], () => { console.log('runs after canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Canister Lifecycle » Canister Lifecycle","id":"96","title":"Canister Lifecycle"},"97":{"body":"This chapter is a work in progress. import { blob, bool, Canister, Duration, ic, int8, query, Record, text, TimerId, update, Void\n} from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const StatusReport = Record({ single: bool, inline: int8, capture: text, repeat: int8, singleCrossCanister: blob, repeatCrossCanister: blob\n}); const TimerIds = Record({ single: TimerId, inline: TimerId, capture: TimerId, repeat: TimerId, singleCrossCanister: TimerId, repeatCrossCanister: TimerId\n}); let statusReport: typeof StatusReport = { single: false, inline: 0, capture: '', repeat: 0, singleCrossCanister: Uint8Array.from([]), repeatCrossCanister: Uint8Array.from([])\n}; export default Canister({ clearTimer: update([TimerId], Void, (timerId) => { ic.clearTimer(timerId); console.log(`timer ${timerId} cancelled`); }), setTimers: update([Duration, Duration], TimerIds, (delay, interval) => { const capturedValue = '🚩'; const singleId = ic.setTimer(delay, oneTimeTimerCallback); const inlineId = ic.setTimer(delay, () => { statusReport.inline = 1; console.log('Inline timer called'); }); const captureId = ic.setTimer(delay, () => { statusReport.capture = capturedValue; console.log(`Timer captured value ${capturedValue}`); }); const repeatId = ic.setTimerInterval(interval, () => { statusReport.repeat++; console.log(`Repeating timer. Call ${statusReport.repeat}`); }); const singleCrossCanisterId = ic.setTimer( delay, singleCrossCanisterTimerCallback ); const repeatCrossCanisterId = ic.setTimerInterval( interval, repeatCrossCanisterTimerCallback ); return { single: singleId, inline: inlineId, capture: captureId, repeat: repeatId, singleCrossCanister: singleCrossCanisterId, repeatCrossCanister: repeatCrossCanisterId }; }), statusReport: query([], StatusReport, () => { return statusReport; })\n}); function oneTimeTimerCallback() { statusReport.single = true; console.log('oneTimeTimerCallback called');\n} async function singleCrossCanisterTimerCallback() { console.log('singleCrossCanisterTimerCallback'); statusReport.singleCrossCanister = await ic.call( managementCanister.raw_rand );\n} async function repeatCrossCanisterTimerCallback() { console.log('repeatCrossCanisterTimerCallback'); statusReport.repeatCrossCanister = Uint8Array.from([ ...statusReport.repeatCrossCanister, ...(await ic.call(managementCanister.raw_rand)) ]);\n}","breadcrumbs":"Old Candid-based Documentation » Timers » Timers","id":"97","title":"Timers"},"98":{"body":"This chapter is a work in progress. Cycles are essentially units of computational resources such as bandwidth, memory, and CPU instructions. Costs are generally metered on the Internet Computer (IC) by cycles. You can see a breakdown of all cycle costs here . Currently queries do not have any cycle costs. Most important to you will probably be update costs. TODO break down some cycle scenarios maybe? Perhaps we should show some of our analyses for different types of applications. Maybe show how to send and receive cycles, exactly how to do it. Show all of the APIs for sending or receiving cycles? Perhaps we don't need to do that here, since each API will show this information. Maybe here we just show the basic concept of cycles, link to the main cycles cost page, and show a few examples of how to break down these costs or estimate these costs.","breadcrumbs":"Old Candid-based Documentation » Cycles » Cycles","id":"98","title":"Cycles"},"99":{"body":"","breadcrumbs":"Old Candid-based Documentation » Caveats » Caveats","id":"99","title":"Caveats"}},"length":229,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772}}},"df":6,"docs":{"137":{"tf":2.0},"161":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"129":{"tf":1.0},"16":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"x":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"6":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"1":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"'":{"*":{"'":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":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":{"80":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"134":{"tf":1.0}}},"5":{"df":1,"docs":{"134":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"29":{"tf":1.0}}}},"1":{"0":{"6":{"4":{"3":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"134":{"tf":1.0}}},"4":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"134":{"tf":1.0}}},"7":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"6":{"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":2,"docs":{"144":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"8":{"df":9,"docs":{"111":{"tf":2.449489742783178},"117":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.4142135623730951}}},"4":{":":{"3":{"5":{":":{"3":{"0":{".":{"4":{"3":{"3":{"5":{"0":{"1":{"9":{"8":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"3":{"4":{".":{"6":{"5":{"2":{"5":{"8":{"7":{"4":{"1":{"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"_":{"1":{"4":{"1":{"_":{"1":{"8":{"3":{"_":{"4":{"6":{"0":{"_":{"4":{"6":{"9":{"_":{"2":{"3":{"1":{"_":{"7":{"3":{"1":{"_":{"6":{"8":{"7":{"_":{"3":{"0":{"3":{"_":{"7":{"1":{"5":{"_":{"8":{"8":{"4":{"_":{"1":{"0":{"5":{"_":{"7":{"2":{"7":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"143":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"27":{"tf":1.4142135623730951}},"t":{"1":{"4":{":":{"3":{"5":{":":{"3":{"1":{".":{"9":{"8":{"3":{"5":{"9":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"1":{":":{"3":{"9":{".":{"1":{"9":{"4":{"3":{"7":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"_":{"4":{"4":{"6":{"_":{"7":{"4":{"4":{"_":{"0":{"7":{"3":{"_":{"7":{"0":{"9":{"_":{"5":{"5":{"1":{"_":{"6":{"1":{"5":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"152":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"161":{"tf":1.7320508075688772},"178":{"tf":1.0},"228":{"tf":2.0},"29":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"2":{".":{"0":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"7":{"1":{"8":{"2":{"8":{"1":{"8":{"2":{"8":{"4":{"5":{"9":{"0":{"4":{"5":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"228":{"tf":1.0}}},"4":{"df":4,"docs":{"0":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"54":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"57":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}},"5":{"4":{"df":1,"docs":{"85":{"tf":1.0}}},"5":{"df":2,"docs":{"149":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"4":{"7":{"_":{"4":{"8":{"3":{"_":{"6":{"4":{"7":{"df":2,"docs":{"146":{"tf":1.7320508075688772},"83":{"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":8,"docs":{"103":{"tf":1.0},"161":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0},"82":{"tf":1.4142135623730951},"88":{"tf":1.0}},"i":{"a":{"a":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"7":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0}}},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"3":{".":{"1":{"4":{"1":{"5":{"9":{"2":{"7":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"7":{"6":{"7":{"df":2,"docs":{"145":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"174":{"tf":1.0},"205":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"3":{"df":1,"docs":{"134":{"tf":1.0}}},"4":{"0":{"_":{"2":{"8":{"2":{"_":{"3":{"6":{"6":{"_":{"9":{"2":{"0":{"_":{"9":{"3":{"8":{"_":{"4":{"6":{"3":{"_":{"4":{"6":{"3":{"_":{"3":{"7":{"4":{"_":{"6":{"0":{"7":{"_":{"4":{"3":{"1":{"_":{"7":{"6":{"8":{"_":{"2":{"1":{"1":{"_":{"4":{"5":{"5":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"6":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":4,"docs":{"161":{"tf":1.7320508075688772},"18":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}},"2":{"df":1,"docs":{"135":{"tf":1.0}}},"_":{"2":{"9":{"4":{"_":{"9":{"6":{"7":{"_":{"2":{"9":{"5":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"83":{"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":5,"docs":{"228":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772}}},"5":{"0":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}},"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":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"a":{"a":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"2":{"6":{"9":{"2":{"3":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"1":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"_":{"5":{"3":{"5":{"df":2,"docs":{"150":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"a":{"a":{"a":{"a":{"df":3,"docs":{"115":{"tf":1.0},"142":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"6":{"c":{"3":{"5":{"5":{"8":{"a":{"a":{"d":{"2":{"4":{"2":{"2":{"4":{"8":{"5":{"2":{"a":{"9":{"5":{"8":{"2":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"1":{"7":{"8":{"4":{"0":{"2":{"c":{"b":{"3":{"6":{"7":{"9":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"27":{"tf":1.0},"94":{"tf":2.0}}},"9":{"0":{"0":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":1,"docs":{"19":{"tf":1.0}}},"6":{"df":3,"docs":{"56":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"_":{"2":{"2":{"3":{"_":{"3":{"7":{"2":{"_":{"0":{"3":{"6":{"_":{"8":{"5":{"4":{"_":{"7":{"7":{"5":{"_":{"8":{"0":{"7":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"147":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}},"_":{"df":1,"docs":{"80":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"17":{"tf":2.0},"27":{"tf":1.4142135623730951}}}}}},"a":{"a":{"a":{"a":{"a":{"df":14,"docs":{"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"68":{"tf":2.0},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"91":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"q":{"df":5,"docs":{"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"b":{"a":{"df":5,"docs":{"129":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{},"q":{"df":3,"docs":{"115":{"tf":1.0},"142":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"158":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"82":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"13":{"tf":1.0},"182":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"}":{"$":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"142":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"28":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"57":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"df":2,"docs":{"77":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":1,"docs":{"83":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"22":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"62":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"210":{"tf":1.0},"53":{"tf":3.7416573867739413},"56":{"tf":1.4142135623730951},"62":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"j":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.0},"182":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"70":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"47":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"115":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"91":{"tf":3.872983346207417}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"212":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":2.8284271247461903}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"59":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"139":{"tf":2.0},"157":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":21,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"13":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"210":{"tf":1.4142135623730951},"22":{"tf":1.0},"53":{"tf":3.4641016151377544},"54":{"tf":2.0},"56":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"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":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"'":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":8,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"53":{"tf":1.0}},"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":{"3":{"tf":1.0},"53":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":21,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":4.123105625617661},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"75":{"tf":1.0},"85":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"y":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"1":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"2":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"3":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"4":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":27,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"128":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"139":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"2":{"9":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"0":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"(":{"(":{"a":{"c":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"142":{"tf":1.0},"161":{"tf":1.0},"19":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":3.4641016151377544},"31":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"17":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"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":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"175":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"85":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"85":{"tf":2.6457513110645907}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":2.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"53":{"tf":2.23606797749979}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":2.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"df":8,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":2.449489742783178}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"111":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"53":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":34,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":3.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":2.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"187":{"tf":1.0},"210":{"tf":1.0}}},"y":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":160,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":2.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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":2.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.8284271247461903},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":3.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":3.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":2.0},"85":{"tf":2.8284271247461903},"91":{"tf":3.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"'":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"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":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"188":{"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":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":2.23606797749979},"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"@":{"0":{".":{"2":{"1":{".":{"1":{"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":{}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}}},"df":4,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"59":{"tf":2.6457513110645907},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"32":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"36":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"1":{"0":{"0":{"2":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"6":{"4":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"2":{"8":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"5":{"5":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"1":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"6":{"1":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"32":{"tf":1.0},"37":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"39":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"32":{"tf":1.0},"40":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"44":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"142":{"tf":1.0},"16":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"d":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"162":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"53":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"48":{"tf":2.449489742783178},"54":{"tf":1.0},"7":{"tf":1.0}}},"h":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"58":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"54":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"161":{"tf":1.0},"54":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"184":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"85":{"tf":1.0},"91":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"104":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"91":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.4142135623730951},"53":{"tf":2.6457513110645907}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"a":{"df":6,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"100":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"91":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"83":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"228":{"tf":2.0},"53":{"tf":2.23606797749979},"73":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":2.23606797749979},"115":{"tf":1.0},"118":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"53":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"53":{"tf":1.0}},"o":{"b":{"df":31,"docs":{"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"137":{"tf":3.4641016151377544},"139":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"194":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"93":{"tf":2.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"53":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"179":{"tf":2.0},"180":{"tf":2.0},"200":{"tf":1.0},"27":{"tf":1.4142135623730951},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"l":{"df":29,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"121":{"tf":2.0},"135":{"tf":2.0},"136":{"tf":1.0},"138":{"tf":3.4641016151377544},"154":{"tf":1.7320508075688772},"158":{"tf":2.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"214":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"52":{"tf":1.0},"54":{"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":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"g":{"df":4,"docs":{"105":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.0},"228":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.0},"77":{"tf":2.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"31":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":3.7416573867739413},"54":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":2.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"2":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"6":{"9":{"df":0,"docs":{},"f":{"4":{"4":{"2":{"9":{"9":{"8":{"df":0,"docs":{},"e":{"4":{"c":{"d":{"a":{"4":{"6":{"1":{"9":{"1":{"6":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"a":{"9":{"b":{"c":{"9":{"1":{"4":{"1":{"8":{"b":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"\"":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"91":{"tf":2.449489742783178}}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"142":{"tf":1.0},"17":{"tf":1.4142135623730951},"179":{"tf":2.0},"180":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"93":{"tf":2.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":66,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.449489742783178},"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},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"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.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":2.0},"17":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"22":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979},"62":{"tf":3.1622776601683795},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":3.3166247903554},"82":{"tf":3.0},"83":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":4.58257569495584},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"111":{"tf":1.0},"120":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":46,"docs":{"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"11":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":2.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":3.4641016151377544},"85":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"103":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":169,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"150":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":2.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":2.449489742783178},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":2.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":2.8284271247461903},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":2.0},"31":{"tf":2.449489742783178},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":3.0},"54":{"tf":2.8284271247461903},"55":{"tf":1.4142135623730951},"56":{"tf":2.0},"58":{"tf":2.0},"59":{"tf":1.7320508075688772},"62":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"8":{"tf":2.449489742783178},"80":{"tf":3.3166247903554},"82":{"tf":4.0},"83":{"tf":3.0},"85":{"tf":2.6457513110645907},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979},"91":{"tf":6.324555320336759},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979},"96":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":10,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.7320508075688772},"31":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"188":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"190":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"47":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"190":{"tf":1.0},"195":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"165":{"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":{"26":{"tf":1.0}}}}}}},"i":{"d":{"df":14,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"97":{"tf":2.23606797749979}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"154":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"228":{"tf":1.0},"53":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"3":{"tf":1.0},"47":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.0}},"k":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"49":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"162":{"tf":1.0},"169":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"174":{"tf":1.4142135623730951}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"n":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":15,"docs":{"210":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"62":{"tf":2.449489742783178},"7":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":2.6457513110645907},"85":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"57":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":3,"docs":{"107":{"tf":1.0},"110":{"tf":2.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"210":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"53":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}},"u":{"d":{"df":3,"docs":{"53":{"tf":3.3166247903554},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":19,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"210":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"53":{"tf":2.6457513110645907},"56":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"73":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"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":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}}},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"228":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"53":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"36":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.449489742783178},"73":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}},"x":{"df":2,"docs":{"53":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"107":{"tf":1.0},"29":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"34":{"tf":1.0},"47":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"62":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"i":{"d":{"df":3,"docs":{"24":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"n":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}}}}},"`":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":23,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}}}}}}}},"df":6,"docs":{"227":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}}}},"df":35,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"179":{"tf":2.8284271247461903},"180":{"tf":2.8284271247461903},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"20":{"tf":2.8284271247461903},"205":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":4.898979485566356},"91":{"tf":4.0},"93":{"tf":2.8284271247461903},"94":{"tf":2.449489742783178},"97":{"tf":3.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"160":{"tf":1.0},"34":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"162":{"tf":1.0},"171":{"tf":1.4142135623730951},"209":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":2.0},"19":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"11":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"54":{"tf":1.0},"98":{"tf":2.6457513110645907}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"162":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.0},"82":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"54":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":2.449489742783178},"90":{"tf":1.0},"91":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"176":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"158":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":3.3166247903554}}}}},"u":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"47":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"13":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":8,"docs":{"11":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":30,"docs":{"111":{"tf":2.449489742783178},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":2.23606797749979},"127":{"tf":2.23606797749979},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":2.0},"94":{"tf":1.4142135623730951},"98":{"tf":3.1622776601683795}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979}}}},"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":{"169":{"tf":1.0}}}}}}}},"df":17,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"139":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"82":{"tf":2.449489742783178}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"228":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":31,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"62":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":123,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.8284271247461903},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"62":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"62":{"tf":1.0},"91":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":1.7320508075688772},"85":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"26":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"df":0,"docs":{},"y":{"df":32,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":2.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":2.449489742783178},"31":{"tf":2.23606797749979},"44":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"65":{"tf":2.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"7":{"tf":2.6457513110645907},"71":{"tf":2.23606797749979},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"76":{"tf":2.449489742783178},"77":{"tf":2.0},"8":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":2.449489742783178}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":1.0},"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"210":{"tf":1.4142135623730951},"29":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":3.1622776601683795},"69":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":2.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"11":{"tf":2.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"6":{".":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":52,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"2":{"tf":2.0},"3":{"tf":2.0},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"57":{"tf":2.0},"59":{"tf":2.0},"6":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.6457513110645907},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"i":{"a":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"l":{"\\":{"0":{"0":{"\\":{"0":{"0":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"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":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"4":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"78":{"tf":1.0}}}},"y":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"176":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"100":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"10":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"54":{"tf":1.0},"62":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"52":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"28":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"228":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"62":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"54":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"83":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"108":{"tf":1.0},"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}},"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"131":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":3.605551275463989},"62":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"7":{"tf":1.0},"85":{"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":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"154":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"162":{"tf":1.0},"164":{"tf":1.4142135623730951},"18":{"tf":1.0},"62":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"103":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"53":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"10":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"53":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"170":{"tf":1.0},"82":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"188":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"102":{"tf":1.7320508075688772},"106":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"54":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"154":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"158":{"tf":1.0},"85":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.7320508075688772},"139":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":3.605551275463989},"27":{"tf":3.3166247903554},"28":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":2.449489742783178}}}}}},"s":{"2":{"0":{"2":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":9,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}}},"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":{"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"53":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":110,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979},"83":{"tf":1.7320508075688772},"85":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"161":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"170":{"tf":1.0},"176":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":2.0},"62":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979},"91":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"54":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"54":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"210":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772},"88":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"82":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"55":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":120,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":2.0},"91":{"tf":2.8284271247461903},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"210":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"16":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"27":{"tf":2.449489742783178},"4":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"31":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"139":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"121":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"82":{"tf":1.0},"91":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"13":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"78":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":19,"docs":{"0":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"19":{"tf":2.0},"28":{"tf":2.0},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}}}}},"l":{"(":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"193":{"tf":1.0},"85":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"24":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":1.0},"34":{"tf":1.0}}}},"d":{"df":6,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"160":{"tf":2.23606797749979}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"142":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.4142135623730951},"96":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}},"x":{"df":2,"docs":{"10":{"tf":1.0},"103":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"136":{"tf":1.0},"140":{"tf":3.7416573867739413},"83":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"136":{"tf":1.0},"141":{"tf":3.7416573867739413},"83":{"tf":2.6457513110645907},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":1,"docs":{"69":{"tf":1.0}}}}},"m":{"a":{"a":{"a":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":27,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"210":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.449489742783178},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"df":6,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"a":{"a":{"a":{"df":5,"docs":{"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"101":{"tf":1.0}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":2.23606797749979}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"4":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":5,"docs":{"110":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"n":{"c":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"115":{"tf":1.0},"181":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":6,"docs":{"136":{"tf":1.0},"142":{"tf":3.3166247903554},"179":{"tf":1.0},"180":{"tf":1.0},"83":{"tf":2.6457513110645907},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"142":{"tf":1.0}}},"df":23,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"85":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"210":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":13,"docs":{"18":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"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":1,"docs":{"191":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"m":{"b":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.4142135623730951},"80":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"i":{"b":{"df":6,"docs":{"19":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"49":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":2.23606797749979},"82":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":8,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":1.0}},"o":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"53":{"tf":3.3166247903554},"55":{"tf":1.0}}}},"w":{"df":4,"docs":{"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"220":{"tf":1.0},"228":{"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":{"53":{"tf":1.0},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"64":{"tf":1.0}}}}}},"h":{"1":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"28":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":6,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":4.242640687119285},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"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":1,"docs":{"10":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":2.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"48":{"tf":1.0},"55":{"tf":1.0}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"179":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"22":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"29":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.23606797749979},"204":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"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":6,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"228":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"8":{"tf":1.0}}}},"p":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"228":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":14,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"228":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"91":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":8,"docs":{"139":{"tf":1.4142135623730951},"29":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"103":{"tf":1.0},"135":{"tf":1.0},"29":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":2,"docs":{"22":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"228":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"17":{"tf":1.0}}}}}}}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"/":{"?":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"214":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":4,"docs":{"177":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":8,"docs":{"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"190":{"tf":1.0},"200":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"df":24,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":2.0}}}}}}}}},"s":{":":{"/":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"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":{"/":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"2":{"0":{"6":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"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":{}},"s":{"d":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"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":{},"h":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"k":{"c":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"6":{"4":{"2":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"0":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"c":{"'":{"df":2,"docs":{"54":{"tf":1.0},"80":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"120":{"tf":1.0},"158":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"91":{"tf":2.0},"97":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"118":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"204":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"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":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"135":{"tf":1.0}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"168":{"tf":1.0},"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"121":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.0},"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":2,"docs":{"123":{"tf":1.0},"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"d":{"1":{"2":{"8":{"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":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"158":{"tf":1.0},"91":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"130":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"173":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"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":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.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":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"227":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"97":{"tf":1.0}}}}}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"222":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"218":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"175":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"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":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"0":{"5":{"0":{"6":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":16,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":99,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":5.477225575051661},"54":{"tf":3.0},"55":{"tf":2.6457513110645907},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":2.0},"9":{"tf":1.4142135623730951},"91":{"tf":3.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"p":{"df":12,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"r":{"c":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}}},"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":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"\"":{">":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":2.23606797749979},"162":{"tf":1.0},"168":{"tf":1.7320508075688772},"3":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":4.58257569495584},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"104":{"tf":1.0},"53":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":131,"docs":{"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.4142135623730951},"119":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"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.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.7320508075688772},"85":{"tf":2.6457513110645907},"91":{"tf":3.3166247903554},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"228":{"tf":1.0}},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"24":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"101":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.7320508075688772},"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"78":{"tf":1.0},"93":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"19":{"tf":1.0},"228":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"58":{"tf":1.0},"62":{"tf":1.0}}}},"df":2,"docs":{"80":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":7,"docs":{"53":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":1,"docs":{"8":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"95":{"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":1,"docs":{"53":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"115":{"tf":2.0},"177":{"tf":1.0},"181":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}},"i":{"df":6,"docs":{"181":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"115":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"28":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"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":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"177":{"tf":1.0},"182":{"tf":1.0},"28":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"2":{"tf":2.6457513110645907},"201":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":3.0},"57":{"tf":2.6457513110645907},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"77":{"tf":1.0},"96":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"161":{"tf":1.0},"28":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"36":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"1":{"6":{"df":3,"docs":{"136":{"tf":1.0},"145":{"tf":3.7416573867739413},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"3":{"2":{"df":4,"docs":{"136":{"tf":1.0},"146":{"tf":3.7416573867739413},"161":{"tf":3.4641016151377544},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"136":{"tf":1.0},"147":{"tf":3.7416573867739413},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"136":{"tf":1.0},"144":{"tf":3.7416573867739413},"83":{"tf":2.6457513110645907},"97":{"tf":1.7320508075688772}}},"df":4,"docs":{"135":{"tf":2.0},"136":{"tf":1.0},"143":{"tf":3.7416573867739413},"83":{"tf":3.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"107":{"tf":1.0},"109":{"tf":1.7320508075688772},"53":{"tf":2.6457513110645907}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"n":{"d":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"f":{"a":{"c":{"df":4,"docs":{"68":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"27":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"107":{"tf":1.0},"20":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"53":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"56":{"tf":1.0},"80":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"77":{"tf":1.0}}}}},"t":{"'":{"df":7,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"75":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":1.7320508075688772},"36":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.449489742783178},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}},"s":{"df":5,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"85":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"85":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"16":{"tf":1.4142135623730951},"48":{"tf":1.0},"85":{"tf":1.0}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.7320508075688772}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"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":8,"docs":{"158":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":2.6457513110645907},"53":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"85":{"tf":3.3166247903554}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"6":{"tf":2.0},"70":{"tf":2.0}}}},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"142":{"tf":1.0},"53":{"tf":1.0}},"n":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"51":{"tf":1.7320508075688772},"85":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}},"m":{"df":0,"docs":{},"j":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"29":{"tf":1.0},"54":{"tf":2.6457513110645907},"56":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"91":{"tf":1.0}},"y":{"=":{"1":{"0":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"114":{"tf":1.0},"217":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"24":{"tf":1.0},"48":{"tf":1.0}}}},"t":{"'":{"df":6,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"25":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":1.0},"228":{"tf":2.0},"29":{"tf":3.0},"53":{"tf":2.0},"54":{"tf":2.23606797749979},"80":{"tf":2.449489742783178},"82":{"tf":2.8284271247461903}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":10,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"k":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}}}},"o":{"a":{"d":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.0},"65":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"8":{"tf":1.0}}},"t":{"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"101":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"228":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"57":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":4,"docs":{"135":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"t":{";":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"98":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"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":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"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":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0}}}}}}}},"df":5,"docs":{"131":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"31":{"tf":1.0},"89":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"p":{"(":{"(":{"_":{"df":1,"docs":{"85":{"tf":1.0}}},"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":2.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"h":{".":{"df":2,"docs":{"141":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"140":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}},"y":{"b":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"106":{"tf":1.0},"213":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"82":{"tf":2.0},"85":{"tf":3.872983346207417},"89":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":2.23606797749979},"53":{"tf":1.4142135623730951},"62":{"tf":2.8284271247461903},"67":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}}},"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"df":37,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"142":{"tf":1.0},"158":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":2.23606797749979},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":2.6457513110645907},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":3.1622776601683795},"81":{"tf":1.0},"82":{"tf":2.8284271247461903},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":4.123105625617661},"93":{"tf":1.0},"94":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"b":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"29":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":6,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"102":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"188":{"tf":1.0},"82":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"62":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0}}}}},"s":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}},"g":{"df":7,"docs":{"111":{"tf":2.449489742783178},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.7320508075688772},"82":{"tf":1.0}},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}},"v":{"df":1,"docs":{"47":{"tf":1.0}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":3.0},"74":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"205":{"tf":1.0},"34":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.0}}}},"t":{"1":{"6":{"df":6,"docs":{"136":{"tf":1.0},"150":{"tf":3.7416573867739413},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"136":{"tf":1.0},"151":{"tf":3.7416573867739413},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":2.6457513110645907},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{">":{"(":{"0":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"115":{"tf":2.23606797749979},"116":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"136":{"tf":1.0},"152":{"tf":3.7416573867739413},"165":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"91":{"tf":4.358898943540674}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"149":{"tf":3.7416573867739413},"214":{"tf":1.4142135623730951},"83":{"tf":3.0},"85":{"tf":2.6457513110645907}}},"df":7,"docs":{"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"136":{"tf":1.0},"148":{"tf":3.7416573867739413},"166":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951}},"e":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":5.196152422706632}}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":5.196152422706632}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"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":{"228":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"110":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"31":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"109":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}},"w":{"df":11,"docs":{"134":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":2.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"186":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"216":{"tf":1.0},"220":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":3.4641016151377544}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"n":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":2.449489742783178}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":11,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"2":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":2.6457513110645907},"57":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"154":{"tf":2.0},"169":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":2.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"139":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.0}},"i":{"df":5,"docs":{"111":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"91":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"129":{"tf":1.0},"164":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}},"w":{"df":7,"docs":{"110":{"tf":1.0},"210":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"101":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"3":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}},"x":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"153":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.0},"153":{"tf":3.872983346207417},"154":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":2.6457513110645907},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"83":{"tf":3.605551275463989},"94":{"tf":1.4142135623730951}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"167":{"tf":1.0},"170":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"103":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"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.7320508075688772},"155":{"tf":1.0},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"161":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":2.23606797749979},"85":{"tf":3.3166247903554},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":2,"docs":{"158":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}},"df":7,"docs":{"15":{"tf":1.0},"160":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"101":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"104":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"154":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"6":{"4":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"154":{"tf":1.0}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":2.0}}}}}}}},"df":11,"docs":{"136":{"tf":1.0},"154":{"tf":2.8284271247461903},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"85":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"228":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"135":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":1,"docs":{"53":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"78":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"200":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"173":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":1,"docs":{"54":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":2.8284271247461903}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":2.23606797749979},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"62":{"tf":1.0},"80":{"tf":2.23606797749979},"83":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"53":{"tf":1.7320508075688772},"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"139":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{"$":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"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":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":1.0}}}},"y":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"130":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"r":{"df":5,"docs":{"178":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"158":{"tf":1.0},"162":{"tf":1.0},"172":{"tf":1.0},"22":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"80":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"181":{"tf":1.0},"214":{"tf":1.0},"53":{"tf":2.6457513110645907},"62":{"tf":2.23606797749979},"80":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}},"n":{"df":1,"docs":{"85":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"53":{"tf":2.6457513110645907},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772}}}}}}},"o":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"170":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"53":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"18":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":6,"docs":{"177":{"tf":1.0},"183":{"tf":1.0},"3":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"183":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"54":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"177":{"tf":1.0},"184":{"tf":1.0},"27":{"tf":1.0},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"228":{"tf":1.0}},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":3,"docs":{"142":{"tf":1.0},"155":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":3,"docs":{"129":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":29,"docs":{"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"129":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"155":{"tf":4.0},"156":{"tf":2.23606797749979},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"53":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"85":{"tf":3.872983346207417},"91":{"tf":2.8284271247461903},"94":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":2.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"162":{"tf":1.0},"173":{"tf":1.7320508075688772},"27":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}},"df":1,"docs":{"143":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":1,"docs":{"148":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.7320508075688772}}},"m":{"b":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"54":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"85":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":2.0},"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"77":{"tf":1.0},"91":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"53":{"tf":1.0}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":87,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{".":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"11":{"tf":1.4142135623730951},"17":{"tf":1.0},"211":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"154":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.449489742783178},"20":{"tf":1.7320508075688772},"228":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":1.7320508075688772},"55":{"tf":2.0}}}}},"df":1,"docs":{"47":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":3.7416573867739413},"54":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":1.0},"202":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"53":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"212":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":2,"docs":{"139":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"q":{"a":{"a":{"a":{"df":0,"docs":{},"q":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":73,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":2.8284271247461903},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.23606797749979},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.6457513110645907},"159":{"tf":2.0},"160":{"tf":2.0},"161":{"tf":2.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.0},"17":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":2.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"200":{"tf":1.0},"214":{"tf":2.449489742783178},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":3.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":4.898979485566356},"82":{"tf":3.0},"83":{"tf":2.8284271247461903},"85":{"tf":3.3166247903554},"91":{"tf":4.358898943540674},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"y":{"(":{"[":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"137":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"179":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":1,"docs":{"143":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"151":{"tf":1.0},"217":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"152":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"155":{"tf":1.0},"171":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"159":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"j":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":2.0}},"s":{"_":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"18":{"tf":1.0},"55":{"tf":1.0}}}},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"190":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"111":{"tf":2.449489742783178},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"160":{"tf":3.1622776601683795}}}}}}},"d":{"df":9,"docs":{"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"221":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":2.0},"89":{"tf":1.0}},"i":{"df":3,"docs":{"54":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"101":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"142":{"tf":1.0},"80":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.0},"124":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":2,"docs":{"123":{"tf":1.0},"125":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"129":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"15":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":13,"docs":{"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"156":{"tf":3.0},"179":{"tf":2.449489742783178},"180":{"tf":2.449489742783178},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"54":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":3.0},"85":{"tf":4.358898943540674},"93":{"tf":2.449489742783178},"97":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"1":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"85":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":1,"docs":{"85":{"tf":2.449489742783178}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":7,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"20":{"tf":1.0},"27":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"106":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"5":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"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":{"54":{"tf":1.7320508075688772}}}}}}}}}}},"df":3,"docs":{"228":{"tf":1.0},"29":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"214":{"tf":1.0},"53":{"tf":2.449489742783178},"73":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"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":1,"docs":{"97":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"'":{"df":2,"docs":{"173":{"tf":1.0},"26":{"tf":1.0}}},"df":16,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"5":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"53":{"tf":2.449489742783178},"55":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":3,"docs":{"111":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":2,"docs":{"211":{"tf":1.0},"49":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"78":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.0},"93":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"108":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"29":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"139":{"tf":1.0},"22":{"tf":1.7320508075688772},"31":{"tf":1.0},"47":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"b":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"d":{"b":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"14":{"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":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"136":{"tf":1.0},"157":{"tf":3.605551275463989},"18":{"tf":1.0},"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"20":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":8,"docs":{"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":1.0},"91":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":2.0}}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"df":2,"docs":{"48":{"tf":1.0},"62":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":6,"docs":{"17":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"105":{"tf":1.0},"53":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":104,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"17":{"tf":2.6457513110645907},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.23606797749979},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":3.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"62":{"tf":2.23606797749979},"80":{"tf":2.449489742783178},"82":{"tf":2.6457513110645907},"83":{"tf":1.7320508075688772},"85":{"tf":5.196152422706632},"91":{"tf":3.872983346207417},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"v":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}}}},"f":{"df":1,"docs":{"10":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"28":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"53":{"tf":2.0},"54":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"31":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"36":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":27,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"49":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"210":{"tf":1.4142135623730951},"47":{"tf":1.0},"75":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"53":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"54":{"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":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"10":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":1,"docs":{"47":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"142":{"tf":1.0},"178":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"80":{"tf":2.0},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"199":{"tf":1.0},"205":{"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":85,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"100":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":2.23606797749979},"54":{"tf":2.0},"55":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"13":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":1,"docs":{"54":{"tf":1.0}}},"m":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}},"n":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"d":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"127":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"16":{"tf":1.4142135623730951},"53":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"139":{"tf":1.0},"16":{"tf":1.0},"48":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"103":{"tf":1.0},"85":{"tf":3.4641016151377544},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}}}}}}}},"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":4.0},"27":{"tf":1.0}}}},"i":{"c":{"df":28,"docs":{"110":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.6457513110645907},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"83":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":22,"docs":{"14":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"209":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"115":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"0":{".":{"3":{"9":{".":{"7":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"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":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"58":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"98":{"tf":2.449489742783178}},"n":{"df":2,"docs":{"5":{"tf":1.0},"91":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":2.0},"22":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"205":{"tf":1.0}}}}}}}}}}}}},"df":2,"docs":{"205":{"tf":1.0},"53":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"24":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"53":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"210":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":6,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.7320508075688772},"80":{"tf":2.0},"82":{"tf":1.4142135623730951},"97":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"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":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"19":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"228":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"0":{"5":{"0":{"6":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"2":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"154":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"91":{"tf":3.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"55":{"tf":1.0},"91":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":10,"docs":{"10":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"73":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"212":{"tf":1.0},"4":{"tf":1.0}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"228":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"11":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"106":{"tf":1.0},"213":{"tf":2.6457513110645907},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":3.1622776601683795}},"e":{"6":{"4":{"df":5,"docs":{"213":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"222":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0}}}}}}}},"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":2,"docs":{"214":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":2.0},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}}}},"df":12,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"214":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.0},"85":{"tf":4.795831523312719},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"218":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"28":{"tf":1.0},"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"6":{"tf":2.6457513110645907},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"77":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"176":{"tf":1.0},"210":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"56":{"tf":3.0},"58":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":2.0},"70":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"18":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"97":{"tf":2.449489742783178}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"47":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"10":{"tf":1.0},"176":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"181":{"tf":1.0},"214":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"105":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.7320508075688772},"58":{"tf":1.0},"62":{"tf":2.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"142":{"tf":1.7320508075688772},"159":{"tf":2.23606797749979},"163":{"tf":1.0},"164":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"62":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.7320508075688772},"16":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"108":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":3.0},"62":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"102":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":5,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"101":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"135":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"83":{"tf":1.0}}},"3":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"228":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"63":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"161":{"tf":1.0}},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":2.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":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":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{">":{"(":{"0":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":2.0},"117":{"tf":2.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"142":{"tf":2.8284271247461903},"156":{"tf":1.7320508075688772},"158":{"tf":2.6457513110645907},"159":{"tf":3.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.7320508075688772},"173":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":2.6457513110645907},"180":{"tf":2.6457513110645907},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":1.0},"214":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":3.0},"80":{"tf":2.449489742783178},"82":{"tf":3.4641016151377544},"83":{"tf":3.4641016151377544},"85":{"tf":3.7416573867739413},"93":{"tf":2.6457513110645907},"94":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"j":{"df":1,"docs":{"4":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"62":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}},"k":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"r":{"d":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"102":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"104":{"tf":1.0},"53":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"53":{"tf":1.0},"55":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"72":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":8,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"53":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"173":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":2.449489742783178},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"w":{"df":7,"docs":{"121":{"tf":1.0},"139":{"tf":1.4142135623730951},"182":{"tf":1.0},"27":{"tf":1.4142135623730951},"82":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"161":{"tf":1.0},"22":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"82":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"162":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.0},"54":{"tf":1.7320508075688772},"91":{"tf":1.0}},"r":{"df":10,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":2.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.7320508075688772}},"i":{"d":{"df":4,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"97":{"tf":3.3166247903554}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"1":{".":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":2.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"53":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":2.23606797749979},"91":{"tf":3.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"91":{"tf":1.4142135623730951},"93":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"1":{".":{"7":{"3":{".":{"0":{"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":5,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0}}}},"p":{"df":1,"docs":{"18":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}}},"k":{"df":4,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"115":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"91":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"162":{"tf":1.0},"176":{"tf":1.7320508075688772},"82":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":31,"docs":{"11":{"tf":1.0},"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"83":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"y":{".":{".":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.7320508075688772},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":7,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0}}}},"y":{"a":{"a":{"a":{"df":5,"docs":{"129":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":46,"docs":{"11":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.7320508075688772},"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.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"214":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":3.872983346207417},"91":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":7,"docs":{"115":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"214":{"tf":1.4142135623730951},"85":{"tf":2.8284271247461903},"97":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"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":5,"docs":{"210":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":31,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"62":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"58":{"tf":1.0},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"[":{"8":{"3":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"6":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}}},"df":3,"docs":{"137":{"tf":1.4142135623730951},"161":{"tf":1.0},"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"r":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"210":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"73":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"52":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"50":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":72,"docs":{"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"174":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.0},"186":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"62":{"tf":2.8284271247461903},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":4.58257569495584},"83":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"91":{"tf":4.123105625617661},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"[":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"174":{"tf":1.0},"194":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"220":{"tf":1.0},"223":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":9,"docs":{"115":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"186":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"62":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"209":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"174":{"tf":1.0},"19":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"177":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"13":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"94":{"tf":2.0}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"105":{"tf":1.0},"54":{"tf":1.7320508075688772},"88":{"tf":1.0}}}},"df":53,"docs":{"0":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"161":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":2.23606797749979},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"85":{"tf":2.8284271247461903},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},">":{"(":{"0":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"85":{"tf":2.23606797749979}}}}}}}}}}}}}},"df":5,"docs":{"156":{"tf":3.1622776601683795},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"85":{"tf":4.358898943540674}},"i":{"d":{"df":1,"docs":{"85":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":2.23606797749979},"85":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"85":{"tf":2.449489742783178}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"v":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":20,"docs":{"105":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"142":{"tf":1.0},"154":{"tf":1.4142135623730951},"158":{"tf":1.0},"214":{"tf":2.6457513110645907},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"62":{"tf":2.449489742783178},"80":{"tf":2.23606797749979},"82":{"tf":3.7416573867739413},"83":{"tf":2.0},"85":{"tf":4.358898943540674},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},">":{"(":{"0":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"106":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"135":{"tf":2.23606797749979},"136":{"tf":1.0},"154":{"tf":1.7320508075688772},"158":{"tf":1.0},"160":{"tf":3.3166247903554},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"85":{"tf":2.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"55":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.6457513110645907},"83":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"136":{"tf":1.0},"137":{"tf":2.0},"161":{"tf":3.0},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.6457513110645907},"85":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"85":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"162":{"tf":1.0},"167":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":2,"docs":{"68":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"3":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":3.4641016151377544},"91":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.0}}}},"s":{"df":2,"docs":{"53":{"tf":1.0},"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"139":{"tf":1.4142135623730951},"18":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"m":{"3":{"2":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":2.23606797749979},"53":{"tf":3.1622776601683795},"56":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":2.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"139":{"tf":1.0},"15":{"tf":1.0},"53":{"tf":1.7320508075688772},"72":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"58":{"tf":1.4142135623730951},"62":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":1,"docs":{"54":{"tf":1.0}}},"v":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}},"b":{"3":{"df":1,"docs":{"51":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"31":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"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":{"0":{"tf":1.0},"171":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":7,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":2.0},"91":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"77":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"5":{"0":{"0":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"176":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.7320508075688772},"62":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"49":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":96,"docs":{"101":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"l":{"d":{"df":14,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":2.0},"3":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"210":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"x":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"k":{"c":{"d":{"df":1,"docs":{"200":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":4,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":1,"docs":{"61":{"tf":1.0}}},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772}}},"df":6,"docs":{"137":{"tf":2.0},"161":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"129":{"tf":1.0},"16":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"x":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"6":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"1":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"'":{"*":{"'":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":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":{"80":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"134":{"tf":1.0}}},"5":{"df":1,"docs":{"134":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"29":{"tf":1.0}}}},"1":{"0":{"6":{"4":{"3":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"134":{"tf":1.0}}},"4":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"134":{"tf":1.0}}},"7":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"6":{"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":2,"docs":{"144":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"8":{"df":9,"docs":{"111":{"tf":2.449489742783178},"117":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"162":{"tf":1.0},"166":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.4142135623730951}}},"4":{":":{"3":{"5":{":":{"3":{"0":{".":{"4":{"3":{"3":{"5":{"0":{"1":{"9":{"8":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"3":{"4":{".":{"6":{"5":{"2":{"5":{"8":{"7":{"4":{"1":{"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"_":{"1":{"4":{"1":{"_":{"1":{"8":{"3":{"_":{"4":{"6":{"0":{"_":{"4":{"6":{"9":{"_":{"2":{"3":{"1":{"_":{"7":{"3":{"1":{"_":{"6":{"8":{"7":{"_":{"3":{"0":{"3":{"_":{"7":{"1":{"5":{"_":{"8":{"8":{"4":{"_":{"1":{"0":{"5":{"_":{"7":{"2":{"7":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"143":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"27":{"tf":1.4142135623730951}},"t":{"1":{"4":{":":{"3":{"5":{":":{"3":{"1":{".":{"9":{"8":{"3":{"5":{"9":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"1":{":":{"3":{"9":{".":{"1":{"9":{"4":{"3":{"7":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"_":{"4":{"4":{"6":{"_":{"7":{"4":{"4":{"_":{"0":{"7":{"3":{"_":{"7":{"0":{"9":{"_":{"5":{"5":{"1":{"_":{"6":{"1":{"5":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"152":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"161":{"tf":1.7320508075688772},"178":{"tf":1.0},"228":{"tf":2.0},"29":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"2":{".":{"0":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"7":{"1":{"8":{"2":{"8":{"1":{"8":{"2":{"8":{"4":{"5":{"9":{"0":{"4":{"5":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"228":{"tf":1.0}}},"4":{"df":4,"docs":{"0":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"54":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"57":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}},"5":{"4":{"df":1,"docs":{"85":{"tf":1.0}}},"5":{"df":2,"docs":{"149":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"4":{"7":{"_":{"4":{"8":{"3":{"_":{"6":{"4":{"7":{"df":2,"docs":{"146":{"tf":1.7320508075688772},"83":{"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":8,"docs":{"103":{"tf":1.0},"161":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0},"82":{"tf":1.4142135623730951},"88":{"tf":1.0}},"i":{"a":{"a":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"7":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0}}},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"3":{".":{"1":{"4":{"1":{"5":{"9":{"2":{"7":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"7":{"6":{"7":{"df":2,"docs":{"145":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"174":{"tf":1.0},"205":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"3":{"df":1,"docs":{"134":{"tf":1.0}}},"4":{"0":{"_":{"2":{"8":{"2":{"_":{"3":{"6":{"6":{"_":{"9":{"2":{"0":{"_":{"9":{"3":{"8":{"_":{"4":{"6":{"3":{"_":{"4":{"6":{"3":{"_":{"3":{"7":{"4":{"_":{"6":{"0":{"7":{"_":{"4":{"3":{"1":{"_":{"7":{"6":{"8":{"_":{"2":{"1":{"1":{"_":{"4":{"5":{"5":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"6":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":4,"docs":{"161":{"tf":1.7320508075688772},"18":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}},"2":{"df":1,"docs":{"135":{"tf":1.0}}},"_":{"2":{"9":{"4":{"_":{"9":{"6":{"7":{"_":{"2":{"9":{"5":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"83":{"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":5,"docs":{"228":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772}}},"5":{"0":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}},"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":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"a":{"a":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"2":{"6":{"9":{"2":{"3":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"1":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"_":{"5":{"3":{"5":{"df":2,"docs":{"150":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"a":{"a":{"a":{"a":{"df":3,"docs":{"115":{"tf":1.0},"142":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"6":{"c":{"3":{"5":{"5":{"8":{"a":{"a":{"d":{"2":{"4":{"2":{"2":{"4":{"8":{"5":{"2":{"a":{"9":{"5":{"8":{"2":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"1":{"7":{"8":{"4":{"0":{"2":{"c":{"b":{"3":{"6":{"7":{"9":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"27":{"tf":1.0},"94":{"tf":2.0}}},"9":{"0":{"0":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":1,"docs":{"19":{"tf":1.0}}},"6":{"df":3,"docs":{"56":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"_":{"2":{"2":{"3":{"_":{"3":{"7":{"2":{"_":{"0":{"3":{"6":{"_":{"8":{"5":{"4":{"_":{"7":{"7":{"5":{"_":{"8":{"0":{"7":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"147":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}},"_":{"df":1,"docs":{"80":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"17":{"tf":2.0},"27":{"tf":1.4142135623730951}}}}}},"a":{"a":{"a":{"a":{"a":{"df":14,"docs":{"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"68":{"tf":2.0},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"91":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"q":{"df":5,"docs":{"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"b":{"a":{"df":5,"docs":{"129":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{},"q":{"df":3,"docs":{"115":{"tf":1.0},"142":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"158":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"82":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"13":{"tf":1.0},"182":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"}":{"$":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"142":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"28":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"57":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"df":2,"docs":{"77":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":1,"docs":{"83":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"22":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"62":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"210":{"tf":1.0},"53":{"tf":3.7416573867739413},"56":{"tf":1.4142135623730951},"62":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"j":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.0},"182":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"70":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"47":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"115":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"91":{"tf":3.872983346207417}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"212":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":2.8284271247461903}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"59":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"139":{"tf":2.0},"157":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":59,"docs":{"101":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"210":{"tf":1.4142135623730951},"22":{"tf":1.0},"53":{"tf":3.4641016151377544},"54":{"tf":2.0},"56":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"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":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"'":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":8,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"53":{"tf":1.0}},"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":{"3":{"tf":1.0},"53":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":21,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":4.123105625617661},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"75":{"tf":1.0},"85":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"y":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"1":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"2":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"3":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"4":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":27,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"128":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"139":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"2":{"9":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"0":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"(":{"(":{"a":{"c":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"142":{"tf":1.0},"161":{"tf":1.0},"19":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":3.7416573867739413},"31":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"17":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"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":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"175":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"85":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"85":{"tf":2.6457513110645907}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":2.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":1.7320508075688772},"22":{"tf":2.0},"53":{"tf":2.23606797749979}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":2.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"df":8,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":2.449489742783178}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.6457513110645907},"33":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"111":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"53":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":34,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":3.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":2.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"187":{"tf":1.0},"210":{"tf":1.0}}},"y":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":160,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":2.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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":2.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.8284271247461903},"48":{"tf":1.0},"49":{"tf":2.0},"50":{"tf":2.23606797749979},"51":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"53":{"tf":2.0},"54":{"tf":3.1622776601683795},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":3.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":2.0},"85":{"tf":2.8284271247461903},"91":{"tf":3.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"'":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"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":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"188":{"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":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":2.23606797749979},"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"@":{"0":{".":{"2":{"1":{".":{"1":{"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":{}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}}},"df":4,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"59":{"tf":2.6457513110645907},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"32":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"1":{"0":{"0":{"2":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"6":{"4":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"2":{"8":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"5":{"5":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"1":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"6":{"1":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"32":{"tf":1.0},"37":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"32":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"41":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"142":{"tf":1.0},"16":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"d":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"162":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":184,"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.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},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"48":{"tf":2.8284271247461903},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"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},"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},"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},"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}}},"h":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"58":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"54":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"161":{"tf":1.0},"54":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"184":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"85":{"tf":1.0},"91":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"104":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"91":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.7320508075688772},"53":{"tf":2.8284271247461903}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"a":{"df":9,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"100":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"91":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"83":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"228":{"tf":2.449489742783178},"53":{"tf":2.23606797749979},"73":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":13,"docs":{"106":{"tf":1.0},"107":{"tf":2.23606797749979},"108":{"tf":1.0},"109":{"tf":2.6457513110645907},"110":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"53":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"53":{"tf":1.0}},"o":{"b":{"df":31,"docs":{"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"137":{"tf":3.7416573867739413},"139":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"194":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"93":{"tf":2.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"53":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"179":{"tf":2.0},"180":{"tf":2.0},"200":{"tf":1.0},"27":{"tf":1.4142135623730951},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":2.23606797749979},"83":{"tf":1.0}}},"l":{"df":29,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"121":{"tf":2.0},"135":{"tf":2.0},"136":{"tf":1.0},"138":{"tf":3.7416573867739413},"154":{"tf":1.7320508075688772},"158":{"tf":2.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"214":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"52":{"tf":1.0},"54":{"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":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"g":{"df":4,"docs":{"105":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.0},"228":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.0},"77":{"tf":2.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"31":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":3.7416573867739413},"54":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":2.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":2.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"2":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"6":{"9":{"df":0,"docs":{},"f":{"4":{"4":{"2":{"9":{"9":{"8":{"df":0,"docs":{},"e":{"4":{"c":{"d":{"a":{"4":{"6":{"1":{"9":{"1":{"6":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"a":{"9":{"b":{"c":{"9":{"1":{"4":{"1":{"8":{"b":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"\"":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"91":{"tf":2.449489742783178}}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"142":{"tf":1.0},"17":{"tf":1.4142135623730951},"179":{"tf":2.0},"180":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"93":{"tf":2.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":83,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.8284271247461903},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"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},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"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.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":2.0},"17":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"22":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979},"62":{"tf":3.1622776601683795},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":3.3166247903554},"82":{"tf":3.0},"83":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":4.58257569495584},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"111":{"tf":1.0},"120":{"tf":2.0},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":184,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"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},"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},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":2.0},"137":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":2.23606797749979},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":2.0},"160":{"tf":2.0},"161":{"tf":2.0},"162":{"tf":1.7320508075688772},"163":{"tf":2.449489742783178},"164":{"tf":2.449489742783178},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"31":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"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.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":3.872983346207417},"84":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.0},"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}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"103":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":169,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"150":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":2.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":2.449489742783178},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"162":{"tf":2.6457513110645907},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":2.6457513110645907},"166":{"tf":2.6457513110645907},"167":{"tf":2.449489742783178},"168":{"tf":2.449489742783178},"169":{"tf":2.0},"17":{"tf":1.4142135623730951},"170":{"tf":2.0},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":2.0},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"184":{"tf":2.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":2.8284271247461903},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":2.0},"31":{"tf":2.449489742783178},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":3.0},"54":{"tf":2.8284271247461903},"55":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"58":{"tf":2.0},"59":{"tf":1.7320508075688772},"62":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":2.449489742783178},"69":{"tf":1.0},"7":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"8":{"tf":2.6457513110645907},"80":{"tf":3.3166247903554},"82":{"tf":4.0},"83":{"tf":3.0},"85":{"tf":2.6457513110645907},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":2.449489742783178},"91":{"tf":6.48074069840786},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":2.6457513110645907},"96":{"tf":2.8284271247461903},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":10,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.7320508075688772},"31":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"188":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"190":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"47":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"190":{"tf":1.0},"195":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"165":{"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":{"26":{"tf":1.0}}}}}}},"i":{"d":{"df":14,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"97":{"tf":2.23606797749979}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"154":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"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},"228":{"tf":1.0},"53":{"tf":1.0},"86":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"3":{"tf":1.0},"47":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.0}},"k":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"49":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"162":{"tf":1.0},"169":{"tf":2.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"174":{"tf":2.0}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"n":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":15,"docs":{"210":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"62":{"tf":2.449489742783178},"7":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":2.6457513110645907},"85":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"57":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":3,"docs":{"107":{"tf":1.0},"110":{"tf":2.23606797749979},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"210":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"53":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}},"u":{"d":{"df":3,"docs":{"53":{"tf":3.3166247903554},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":19,"docs":{"111":{"tf":1.0},"132":{"tf":1.7320508075688772},"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"210":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"53":{"tf":2.6457513110645907},"56":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"73":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"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":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"3":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}}},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"228":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":2.8284271247461903},"53":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"36":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.449489742783178},"73":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}},"x":{"df":2,"docs":{"53":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"107":{"tf":1.0},"29":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"34":{"tf":1.0},"47":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"62":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"i":{"d":{"df":3,"docs":{"24":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"n":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}}}}},"`":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":23,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}}}}}}}},"df":6,"docs":{"227":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}}}},"df":35,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"179":{"tf":2.8284271247461903},"180":{"tf":2.8284271247461903},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"20":{"tf":2.8284271247461903},"205":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":4.898979485566356},"91":{"tf":4.0},"93":{"tf":2.8284271247461903},"94":{"tf":2.449489742783178},"97":{"tf":3.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"160":{"tf":1.0},"34":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"162":{"tf":1.0},"171":{"tf":2.0},"209":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":2.0},"19":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"11":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"54":{"tf":1.0},"98":{"tf":2.6457513110645907}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"162":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"54":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":2.449489742783178},"90":{"tf":1.0},"91":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"196":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"176":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"158":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":3.605551275463989}}}}},"u":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"47":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"13":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":8,"docs":{"11":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":30,"docs":{"111":{"tf":2.449489742783178},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":2.23606797749979},"125":{"tf":2.23606797749979},"126":{"tf":2.6457513110645907},"127":{"tf":2.6457513110645907},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":2.0},"94":{"tf":1.4142135623730951},"98":{"tf":3.4641016151377544}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979}}}},"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":{"169":{"tf":1.0}}}}}}}},"df":17,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":2.0},"139":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.4142135623730951},"169":{"tf":2.0},"174":{"tf":2.23606797749979},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"82":{"tf":2.449489742783178}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"228":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":31,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.0},"62":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":123,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.8284271247461903},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"62":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"62":{"tf":1.0},"91":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"197":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":2.0},"85":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"26":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"df":0,"docs":{},"y":{"df":36,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":2.6457513110645907},"31":{"tf":2.23606797749979},"44":{"tf":1.0},"5":{"tf":2.6457513110645907},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"6":{"tf":1.0},"65":{"tf":2.23606797749979},"66":{"tf":2.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":2.6457513110645907},"7":{"tf":3.0},"70":{"tf":1.0},"71":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":2.23606797749979},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":2.8284271247461903},"77":{"tf":2.449489742783178},"8":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":2.8284271247461903}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":1.0},"198":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"210":{"tf":1.4142135623730951},"29":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":3.1622776601683795},"69":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":2.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"11":{"tf":2.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"6":{".":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":52,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"2":{"tf":2.0},"3":{"tf":2.0},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"57":{"tf":2.0},"59":{"tf":2.0},"6":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.8284271247461903},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"i":{"a":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"l":{"\\":{"0":{"0":{"\\":{"0":{"0":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"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":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"4":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":1.0}}}},"y":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"176":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"100":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"10":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"54":{"tf":1.0},"62":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":182,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"48":{"tf":2.23606797749979},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.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},"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}}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"52":{"tf":1.7320508075688772},"54":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"28":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"228":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"62":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"54":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"83":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"108":{"tf":1.0},"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}},"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"131":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":3.872983346207417},"62":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"7":{"tf":1.0},"85":{"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":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"154":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"162":{"tf":1.0},"164":{"tf":2.0},"18":{"tf":1.0},"62":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"103":{"tf":2.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"103":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"53":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"10":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"53":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"170":{"tf":1.0},"82":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"188":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":31,"docs":{"102":{"tf":2.0},"106":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"2":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"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},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"54":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"154":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"158":{"tf":1.0},"85":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.7320508075688772},"139":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":3.605551275463989},"27":{"tf":3.4641016151377544},"28":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":2.449489742783178}}}}}},"s":{"2":{"0":{"2":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":9,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}}},"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":{"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"53":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":110,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979},"8":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979},"83":{"tf":1.7320508075688772},"85":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"161":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"170":{"tf":1.0},"176":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":2.0},"62":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979},"91":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"54":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"54":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"210":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772},"88":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"82":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"55":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":120,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":2.0},"91":{"tf":2.8284271247461903},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"210":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"16":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"27":{"tf":2.449489742783178},"4":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"31":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"139":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"121":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"82":{"tf":1.0},"91":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"13":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"78":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":19,"docs":{"0":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"19":{"tf":2.0},"28":{"tf":2.0},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}}}}},"l":{"(":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"193":{"tf":1.0},"85":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"24":{"tf":1.0},"28":{"tf":2.23606797749979},"31":{"tf":1.0},"34":{"tf":1.0}}}},"d":{"df":6,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"160":{"tf":2.23606797749979}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"142":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.4142135623730951},"96":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}},"x":{"df":2,"docs":{"10":{"tf":1.0},"103":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"136":{"tf":1.0},"140":{"tf":4.0},"83":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"105":{"tf":1.7320508075688772},"136":{"tf":1.0},"141":{"tf":4.0},"83":{"tf":2.6457513110645907},"87":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":1,"docs":{"69":{"tf":1.0}}}}},"m":{"a":{"a":{"a":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":27,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"210":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.449489742783178},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"df":6,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"a":{"a":{"a":{"df":5,"docs":{"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"101":{"tf":1.0}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":2.23606797749979}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"4":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":5,"docs":{"110":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"n":{"c":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"115":{"tf":1.0},"181":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":6,"docs":{"136":{"tf":1.0},"142":{"tf":3.605551275463989},"179":{"tf":1.0},"180":{"tf":1.0},"83":{"tf":2.6457513110645907},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"142":{"tf":1.0}}},"df":23,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"85":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"210":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":13,"docs":{"18":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"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":1,"docs":{"191":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"m":{"b":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.4142135623730951},"80":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"i":{"b":{"df":6,"docs":{"19":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"49":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":2.23606797749979},"82":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":8,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":1.0}},"o":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"53":{"tf":3.3166247903554},"55":{"tf":1.0}}}},"w":{"df":4,"docs":{"213":{"tf":1.4142135623730951},"216":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"228":{"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":{"53":{"tf":1.0},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"64":{"tf":1.0}}}}}},"h":{"1":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"28":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":6,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":4.242640687119285},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"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":1,"docs":{"10":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":2.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"48":{"tf":1.0},"55":{"tf":1.0}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"179":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"22":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"29":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.6457513110645907},"204":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"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":6,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"228":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"8":{"tf":1.0}}}},"p":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"228":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":14,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"228":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"91":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":8,"docs":{"139":{"tf":1.4142135623730951},"29":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"135":{"tf":1.0},"29":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"228":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":2.0},"17":{"tf":1.0}}}}}}}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"/":{"?":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"214":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":4,"docs":{"177":{"tf":1.0},"180":{"tf":1.4142135623730951},"22":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":8,"docs":{"177":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":1.4142135623730951},"190":{"tf":1.0},"200":{"tf":1.7320508075688772},"22":{"tf":1.0},"31":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"df":24,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":2.0}}}}}}}}},"s":{":":{"/":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"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":{"/":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"2":{"0":{"6":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"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":{}},"s":{"d":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"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":{},"h":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"k":{"c":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"6":{"4":{"2":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"0":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"c":{"'":{"df":2,"docs":{"54":{"tf":1.0},"80":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"120":{"tf":1.0},"158":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"91":{"tf":2.0},"97":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"118":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"204":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"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":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"135":{"tf":1.0}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"168":{"tf":1.0},"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"121":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.0},"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":2,"docs":{"123":{"tf":1.0},"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"d":{"1":{"2":{"8":{"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":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"158":{"tf":1.0},"91":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"130":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"173":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"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":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.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":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"227":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"97":{"tf":1.0}}}}}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"222":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"218":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"175":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"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":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"0":{"5":{"0":{"6":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":16,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":99,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":5.477225575051661},"54":{"tf":3.0},"55":{"tf":2.6457513110645907},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":2.0},"9":{"tf":1.4142135623730951},"91":{"tf":3.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"p":{"df":12,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"r":{"c":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}}},"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":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"\"":{">":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":2.23606797749979},"162":{"tf":1.0},"168":{"tf":2.23606797749979},"3":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":4.58257569495584},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"104":{"tf":1.0},"53":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":131,"docs":{"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.4142135623730951},"119":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"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.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.7320508075688772},"85":{"tf":2.6457513110645907},"91":{"tf":3.3166247903554},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"228":{"tf":1.0}},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"24":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"101":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.7320508075688772},"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"78":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"19":{"tf":1.0},"228":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"58":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":2,"docs":{"80":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":7,"docs":{"53":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":1,"docs":{"8":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"95":{"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":1,"docs":{"53":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"115":{"tf":2.0},"177":{"tf":1.0},"181":{"tf":2.6457513110645907},"94":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}},"i":{"df":6,"docs":{"181":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"115":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"28":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"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":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"177":{"tf":1.0},"182":{"tf":1.7320508075688772},"28":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"2":{"tf":2.8284271247461903},"201":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":3.0},"57":{"tf":3.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"77":{"tf":1.0},"96":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"201":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"161":{"tf":1.0},"28":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":2.0},"29":{"tf":1.4142135623730951},"36":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"1":{"6":{"df":3,"docs":{"136":{"tf":1.0},"145":{"tf":4.0},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"3":{"2":{"df":4,"docs":{"136":{"tf":1.0},"146":{"tf":4.0},"161":{"tf":3.4641016151377544},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"136":{"tf":1.0},"147":{"tf":4.0},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"136":{"tf":1.0},"144":{"tf":4.0},"83":{"tf":2.6457513110645907},"97":{"tf":1.7320508075688772}}},"df":4,"docs":{"135":{"tf":2.0},"136":{"tf":1.0},"143":{"tf":4.0},"83":{"tf":3.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"107":{"tf":1.0},"109":{"tf":2.0},"53":{"tf":2.6457513110645907}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"n":{"d":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"75":{"tf":1.0},"8":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"f":{"a":{"c":{"df":4,"docs":{"68":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"27":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"107":{"tf":1.0},"20":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"224":{"tf":1.0},"227":{"tf":2.0},"97":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"53":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"56":{"tf":1.0},"80":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"10":{"tf":1.7320508075688772},"101":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"t":{"'":{"df":7,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"75":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"102":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":2.23606797749979},"31":{"tf":1.7320508075688772},"36":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.449489742783178},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}},"s":{"df":5,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"85":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"85":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"16":{"tf":1.4142135623730951},"48":{"tf":1.0},"85":{"tf":1.0}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":2.0}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"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":8,"docs":{"158":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":2.6457513110645907},"53":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"85":{"tf":3.3166247903554}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"6":{"tf":2.0},"70":{"tf":2.0}}}},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"142":{"tf":1.0},"53":{"tf":1.0}},"n":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"51":{"tf":2.0},"85":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}},"m":{"df":0,"docs":{},"j":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"29":{"tf":1.0},"54":{"tf":2.6457513110645907},"56":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"91":{"tf":1.0}},"y":{"=":{"1":{"0":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"114":{"tf":1.0},"217":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"24":{"tf":1.0},"48":{"tf":1.0}}}},"t":{"'":{"df":6,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"25":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":2.23606797749979},"19":{"tf":1.0},"228":{"tf":2.0},"29":{"tf":3.3166247903554},"53":{"tf":2.0},"54":{"tf":2.23606797749979},"80":{"tf":2.449489742783178},"82":{"tf":2.8284271247461903}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":10,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"k":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}}}},"o":{"a":{"d":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.4142135623730951},"43":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178},"7":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"t":{"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"101":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"228":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"57":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":4,"docs":{"135":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"t":{";":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"98":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.7320508075688772},"9":{"tf":2.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":28,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"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":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"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":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0}}}}}}}},"df":5,"docs":{"131":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"31":{"tf":1.0},"89":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"p":{"(":{"(":{"_":{"df":1,"docs":{"85":{"tf":1.0}}},"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":2.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"h":{".":{"df":2,"docs":{"141":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"140":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}},"y":{"b":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"106":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"82":{"tf":2.0},"85":{"tf":3.872983346207417},"89":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"182":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"62":{"tf":2.8284271247461903},"67":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}}},"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"df":42,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":2.0},"142":{"tf":1.0},"158":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":2.23606797749979},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":2.6457513110645907},"73":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":3.3166247903554},"81":{"tf":1.7320508075688772},"82":{"tf":3.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":4.123105625617661},"93":{"tf":1.0},"94":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"b":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"29":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":6,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"102":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"188":{"tf":1.0},"82":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"62":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0}}}}},"s":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}},"g":{"df":7,"docs":{"111":{"tf":2.449489742783178},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.7320508075688772},"82":{"tf":1.0}},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}},"v":{"df":1,"docs":{"47":{"tf":1.0}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":3.0},"74":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"121":{"tf":1.7320508075688772},"142":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"205":{"tf":1.0},"34":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.0}}}},"t":{"1":{"6":{"df":6,"docs":{"136":{"tf":1.0},"150":{"tf":4.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"136":{"tf":1.0},"151":{"tf":4.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":2.6457513110645907},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{">":{"(":{"0":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"115":{"tf":2.23606797749979},"116":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"136":{"tf":1.0},"152":{"tf":4.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"91":{"tf":4.358898943540674}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"149":{"tf":4.0},"214":{"tf":1.4142135623730951},"83":{"tf":3.0},"85":{"tf":2.6457513110645907}}},"df":7,"docs":{"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"136":{"tf":1.0},"148":{"tf":4.0},"166":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":2.6457513110645907},"56":{"tf":1.4142135623730951}},"e":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":5.196152422706632}}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":5.196152422706632}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"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":{"228":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"110":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"31":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"109":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}},"w":{"df":11,"docs":{"134":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":2.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"186":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"216":{"tf":1.0},"220":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":3.4641016151377544}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"n":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":2.449489742783178}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":11,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":2.0},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"2":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":2.6457513110645907},"57":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"154":{"tf":2.0},"169":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":2.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"139":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.0}},"i":{"df":5,"docs":{"111":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"91":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"129":{"tf":1.0},"164":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}},"w":{"df":7,"docs":{"110":{"tf":1.0},"210":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"101":{"tf":2.449489742783178},"19":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"3":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}},"x":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"153":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.0},"153":{"tf":4.123105625617661},"154":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":2.6457513110645907},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"83":{"tf":3.605551275463989},"94":{"tf":1.4142135623730951}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"167":{"tf":1.0},"170":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"103":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"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.7320508075688772},"155":{"tf":1.0},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"161":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":2.23606797749979},"85":{"tf":3.3166247903554},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":2,"docs":{"158":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"l":{"d":{"df":181,"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.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},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.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},"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}}},"df":0,"docs":{}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}},"df":7,"docs":{"15":{"tf":1.0},"160":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"101":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"104":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"154":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"6":{"4":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"154":{"tf":1.0}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":2.0}}}}}}}},"df":11,"docs":{"136":{"tf":1.0},"154":{"tf":3.1622776601683795},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"85":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"228":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"135":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":1,"docs":{"53":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"78":{"tf":1.0},"94":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"200":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"173":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":1,"docs":{"54":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"55":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":2.8284271247461903}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":2.449489742783178},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"62":{"tf":1.0},"80":{"tf":2.23606797749979},"83":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"53":{"tf":1.7320508075688772},"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"139":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{"$":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"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":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":1.0}}}},"y":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"r":{"df":5,"docs":{"178":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"158":{"tf":1.0},"162":{"tf":1.0},"172":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"80":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"181":{"tf":1.0},"214":{"tf":1.0},"53":{"tf":2.6457513110645907},"62":{"tf":2.23606797749979},"80":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}},"n":{"df":1,"docs":{"85":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"53":{"tf":2.6457513110645907},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"210":{"tf":2.6457513110645907},"211":{"tf":2.23606797749979},"212":{"tf":2.23606797749979}}}}}}},"o":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"170":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"53":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"18":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":6,"docs":{"177":{"tf":1.0},"183":{"tf":1.7320508075688772},"3":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"183":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"54":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"177":{"tf":1.0},"184":{"tf":1.7320508075688772},"27":{"tf":1.0},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"228":{"tf":1.0}},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":3,"docs":{"142":{"tf":1.0},"155":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":3,"docs":{"129":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":29,"docs":{"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"129":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"155":{"tf":4.242640687119285},"156":{"tf":2.23606797749979},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"53":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"85":{"tf":3.872983346207417},"91":{"tf":2.8284271247461903},"94":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":2.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"162":{"tf":1.0},"173":{"tf":2.23606797749979},"27":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}},"df":1,"docs":{"143":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":1,"docs":{"148":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.7320508075688772}}},"m":{"b":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"54":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"85":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":2.0},"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"77":{"tf":1.0},"91":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"53":{"tf":1.0}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":87,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{".":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"211":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"54":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"154":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.449489742783178},"20":{"tf":1.7320508075688772},"228":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":1.7320508075688772},"55":{"tf":2.0}}}}},"df":1,"docs":{"47":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":3.7416573867739413},"54":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":1.0},"202":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"203":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"53":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"212":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":2,"docs":{"139":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"q":{"a":{"a":{"a":{"df":0,"docs":{},"q":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":73,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":2.8284271247461903},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.23606797749979},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.6457513110645907},"159":{"tf":2.0},"160":{"tf":2.0},"161":{"tf":2.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.0},"17":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":2.449489742783178},"186":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"200":{"tf":1.0},"214":{"tf":2.449489742783178},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":3.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":5.0},"82":{"tf":3.0},"83":{"tf":2.8284271247461903},"85":{"tf":3.3166247903554},"91":{"tf":4.358898943540674},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"y":{"(":{"[":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"137":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"179":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":1,"docs":{"143":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"151":{"tf":1.0},"217":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"152":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"155":{"tf":1.0},"171":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"159":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.4142135623730951}},"j":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":2.0}},"s":{"_":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"18":{"tf":1.0},"55":{"tf":1.0}}}},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"190":{"tf":1.0},"204":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"111":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"160":{"tf":3.1622776601683795}}}}}}},"d":{"df":9,"docs":{"213":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":2.0},"89":{"tf":1.0}},"i":{"df":3,"docs":{"54":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"101":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"142":{"tf":1.0},"80":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.0},"124":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":2,"docs":{"123":{"tf":1.0},"125":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"129":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"15":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":13,"docs":{"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"156":{"tf":3.3166247903554},"179":{"tf":2.449489742783178},"180":{"tf":2.449489742783178},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"54":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":3.0},"85":{"tf":4.358898943540674},"93":{"tf":2.449489742783178},"97":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"1":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"85":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":1,"docs":{"85":{"tf":2.449489742783178}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":7,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"20":{"tf":1.0},"27":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":149,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.7320508075688772},"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},"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},"5":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"131":{"tf":2.23606797749979},"132":{"tf":2.0},"133":{"tf":2.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"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":{"54":{"tf":1.7320508075688772}}}}}}}}}}},"df":3,"docs":{"228":{"tf":1.0},"29":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"214":{"tf":1.0},"53":{"tf":2.449489742783178},"73":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"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":1,"docs":{"97":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"'":{"df":2,"docs":{"173":{"tf":1.0},"26":{"tf":1.0}}},"df":16,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"5":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":2.6457513110645907},"65":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":1.4142135623730951},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"53":{"tf":2.449489742783178},"55":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":3,"docs":{"111":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":2,"docs":{"211":{"tf":1.0},"49":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"78":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.0},"93":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"108":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"29":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"139":{"tf":1.0},"22":{"tf":1.7320508075688772},"31":{"tf":1.0},"47":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"b":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"d":{"b":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"14":{"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":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"136":{"tf":1.0},"157":{"tf":3.872983346207417},"18":{"tf":1.0},"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"20":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":8,"docs":{"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.0},"29":{"tf":1.0},"91":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":2.0}}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"df":2,"docs":{"48":{"tf":1.0},"62":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":6,"docs":{"17":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"105":{"tf":1.0},"53":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":104,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"17":{"tf":2.6457513110645907},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.23606797749979},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":3.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"62":{"tf":2.23606797749979},"80":{"tf":2.449489742783178},"82":{"tf":2.6457513110645907},"83":{"tf":1.7320508075688772},"85":{"tf":5.196152422706632},"91":{"tf":3.872983346207417},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"v":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}}}},"f":{"df":1,"docs":{"10":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"28":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"53":{"tf":2.0},"54":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"31":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"36":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":27,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"49":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"210":{"tf":1.4142135623730951},"47":{"tf":1.0},"75":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"53":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"54":{"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":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"10":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":1,"docs":{"47":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"142":{"tf":1.0},"178":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"80":{"tf":2.0},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"199":{"tf":1.0},"205":{"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":85,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"100":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":2.23606797749979},"54":{"tf":2.0},"55":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"13":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":1,"docs":{"54":{"tf":1.0}}},"m":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}},"n":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"d":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"127":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"16":{"tf":1.4142135623730951},"53":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"139":{"tf":1.0},"16":{"tf":1.0},"48":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"103":{"tf":1.0},"85":{"tf":3.4641016151377544},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}}}}}}}},"df":10,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":2.449489742783178},"13":{"tf":2.8284271247461903},"14":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":4.242640687119285},"18":{"tf":1.0},"27":{"tf":1.0}}}},"i":{"c":{"df":28,"docs":{"110":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":3.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"83":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":22,"docs":{"14":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":2.0},"18":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"209":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"115":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"0":{".":{"3":{"9":{".":{"7":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"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":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"58":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"98":{"tf":2.449489742783178}},"n":{"df":2,"docs":{"5":{"tf":1.0},"91":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":2.0},"22":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"205":{"tf":1.0}}}}}}}}}}}}},"df":2,"docs":{"205":{"tf":1.0},"53":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"24":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"53":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"210":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":6,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.7320508075688772},"80":{"tf":2.0},"82":{"tf":1.4142135623730951},"97":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"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":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"111":{"tf":1.0},"114":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"228":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"0":{"5":{"0":{"6":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"2":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"154":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"91":{"tf":3.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"55":{"tf":1.0},"91":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":10,"docs":{"10":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"73":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"212":{"tf":1.0},"4":{"tf":1.0}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"228":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"11":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":23,"docs":{"106":{"tf":1.0},"213":{"tf":3.0},"214":{"tf":2.0},"215":{"tf":2.0},"216":{"tf":2.0},"217":{"tf":2.0},"218":{"tf":2.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.7320508075688772},"85":{"tf":3.3166247903554},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"e":{"6":{"4":{"df":5,"docs":{"213":{"tf":2.0},"220":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"223":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"222":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0}}}}}}}},"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":2,"docs":{"214":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":2.0},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}}}},"df":12,"docs":{"103":{"tf":1.0},"105":{"tf":1.7320508075688772},"214":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.0},"85":{"tf":4.795831523312719},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"218":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"28":{"tf":1.0},"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"206":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"6":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.8284271247461903},"77":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"176":{"tf":1.0},"210":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"56":{"tf":3.0},"58":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":2.0},"70":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"18":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"97":{"tf":2.449489742783178}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"47":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"207":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"10":{"tf":1.0},"176":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"181":{"tf":1.0},"214":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"105":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.7320508075688772},"58":{"tf":1.0},"62":{"tf":2.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"142":{"tf":1.7320508075688772},"159":{"tf":2.23606797749979},"163":{"tf":1.0},"164":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"62":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":19,"docs":{"103":{"tf":1.0},"11":{"tf":2.23606797749979},"16":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"108":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":3.0},"62":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"102":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":5,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"101":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"135":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"83":{"tf":1.0}}},"3":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"228":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"63":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"161":{"tf":1.0}},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":2.23606797749979},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":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":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{">":{"(":{"0":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":2.0},"117":{"tf":2.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"142":{"tf":2.8284271247461903},"156":{"tf":1.7320508075688772},"158":{"tf":2.6457513110645907},"159":{"tf":3.3166247903554},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.7320508075688772},"173":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":2.6457513110645907},"180":{"tf":2.6457513110645907},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":1.0},"214":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":3.0},"80":{"tf":2.449489742783178},"82":{"tf":3.4641016151377544},"83":{"tf":3.4641016151377544},"85":{"tf":3.7416573867739413},"93":{"tf":2.6457513110645907},"94":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"j":{"df":1,"docs":{"4":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"62":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}},"k":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"r":{"d":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"102":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"104":{"tf":1.0},"53":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"53":{"tf":1.0},"55":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"72":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":8,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"53":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"173":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":2.449489742783178},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"w":{"df":7,"docs":{"121":{"tf":1.0},"139":{"tf":1.4142135623730951},"182":{"tf":1.0},"27":{"tf":1.4142135623730951},"82":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"161":{"tf":1.0},"22":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"82":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"162":{"tf":1.0},"175":{"tf":2.0},"178":{"tf":1.0},"54":{"tf":1.7320508075688772},"91":{"tf":1.0}},"r":{"df":10,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":2.449489742783178},"225":{"tf":2.23606797749979},"226":{"tf":2.23606797749979},"227":{"tf":2.23606797749979},"78":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":2.23606797749979}},"i":{"d":{"df":4,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"97":{"tf":3.3166247903554}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"1":{".":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":2.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"53":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":2.23606797749979},"91":{"tf":3.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"91":{"tf":1.4142135623730951},"93":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"1":{".":{"7":{"3":{".":{"0":{"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":5,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0}}}},"p":{"df":1,"docs":{"18":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}}},"k":{"df":4,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"115":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"91":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"162":{"tf":1.0},"176":{"tf":2.23606797749979},"82":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":31,"docs":{"11":{"tf":1.0},"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"83":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"y":{".":{".":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.7320508075688772},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":7,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0}}}},"y":{"a":{"a":{"a":{"df":5,"docs":{"129":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":46,"docs":{"11":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.7320508075688772},"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.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"214":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":3.872983346207417},"91":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":7,"docs":{"115":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"214":{"tf":1.4142135623730951},"85":{"tf":2.8284271247461903},"97":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"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":5,"docs":{"210":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":31,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"62":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"58":{"tf":1.0},"68":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"[":{"8":{"3":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"6":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}}},"df":3,"docs":{"137":{"tf":1.4142135623730951},"161":{"tf":1.0},"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"r":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"210":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"73":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"208":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"52":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":72,"docs":{"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"174":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.0},"186":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"62":{"tf":2.8284271247461903},"78":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":4.69041575982343},"83":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"91":{"tf":4.123105625617661},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"[":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"174":{"tf":1.0},"194":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"220":{"tf":1.0},"223":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":9,"docs":{"115":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"186":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"62":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"209":{"tf":1.7320508075688772}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"174":{"tf":1.0},"19":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"177":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"184":{"tf":2.0},"53":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"13":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"94":{"tf":2.0}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"105":{"tf":1.0},"54":{"tf":1.7320508075688772},"88":{"tf":1.0}}}},"df":53,"docs":{"0":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"161":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":2.23606797749979},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"85":{"tf":2.8284271247461903},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},">":{"(":{"0":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"85":{"tf":2.23606797749979}}}}}}}}}}}}}},"df":5,"docs":{"156":{"tf":3.1622776601683795},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"85":{"tf":4.358898943540674}},"i":{"d":{"df":1,"docs":{"85":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":2.23606797749979},"85":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"85":{"tf":2.449489742783178}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"v":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":20,"docs":{"105":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"142":{"tf":1.0},"154":{"tf":1.4142135623730951},"158":{"tf":1.0},"214":{"tf":2.6457513110645907},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"62":{"tf":2.449489742783178},"80":{"tf":2.23606797749979},"82":{"tf":3.7416573867739413},"83":{"tf":2.0},"85":{"tf":4.358898943540674},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},">":{"(":{"0":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"106":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"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},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"135":{"tf":2.23606797749979},"136":{"tf":1.0},"154":{"tf":1.7320508075688772},"158":{"tf":1.0},"160":{"tf":3.605551275463989},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"85":{"tf":2.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"55":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.6457513110645907},"83":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"136":{"tf":1.0},"137":{"tf":2.0},"161":{"tf":3.3166247903554},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.6457513110645907},"85":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"85":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"162":{"tf":1.0},"167":{"tf":2.0},"2":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":2,"docs":{"68":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"3":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":3.4641016151377544},"91":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.0}}}},"s":{"df":2,"docs":{"53":{"tf":1.0},"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"139":{"tf":1.4142135623730951},"18":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"m":{"3":{"2":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":2.6457513110645907},"53":{"tf":3.1622776601683795},"56":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":2.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"139":{"tf":1.0},"15":{"tf":1.0},"53":{"tf":1.7320508075688772},"72":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"58":{"tf":1.4142135623730951},"62":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":1,"docs":{"54":{"tf":1.0}}},"v":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}},"b":{"3":{"df":1,"docs":{"51":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"31":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"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":{"0":{"tf":1.0},"171":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":7,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":2.0},"91":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"77":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"5":{"0":{"0":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"176":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.7320508075688772},"62":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"49":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":96,"docs":{"101":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"l":{"d":{"df":21,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":2.0},"3":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"210":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"223":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"x":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"k":{"c":{"d":{"df":1,"docs":{"200":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":4,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":1,"docs":{"61":{"tf":1.0}}},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}}},"title":{"root":{"1":{"2":{"8":{"df":7,"docs":{"117":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"162":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"49":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"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":{}}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}}}}}}},"t":{"a":{"df":2,"docs":{"0":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"107":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}},"l":{"df":1,"docs":{"138":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"103":{"tf":1.0},"136":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"48":{"tf":1.0},"83":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"26":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"67":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"28":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"170":{"tf":1.0},"172":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":11,"docs":{"10":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"188":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"102":{"tf":1.0},"187":{"tf":1.0},"32":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"216":{"tf":1.0},"220":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"200":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"93":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":1,"docs":{"143":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"67":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}},"v":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"10":{"tf":1.0},"66":{"tf":1.0},"77":{"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":2,"docs":{"102":{"tf":1.0},"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}}}}}}}},"l":{"a":{"b":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"29":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"67":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"211":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"9":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"190":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"112":{"tf":1.0},"133":{"tf":1.0},"182":{"tf":1.0},"27":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"121":{"tf":1.0},"177":{"tf":1.0},"60":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"g":{"df":6,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"101":{"tf":1.0},"212":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"130":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"172":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"184":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"173":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"79":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"217":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.0},"30":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"126":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":4,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"94":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":3,"docs":{"174":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"114":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"84":{"tf":1.0}},"e":{"6":{"4":{"df":4,"docs":{"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"1":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"214":{"tf":1.0},"61":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"175":{"tf":1.0}},"r":{"df":5,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"68":{"tf":1.0},"74":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"186":{"tf":1.0},"81":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"183":{"tf":1.0},"184":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"187":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"68":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"219":{"tf":1.0},"223":{"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":["the_azle_book.html#the-azle-book-beta","get_started.html#get-started","get_started.html#installation","get_started.html#deployment","rest_based_examples.html#examples","deployment.html#deployment","deployment.html#starting-the-local-replica","deployment.html#deploying-to-the-local-replica","deployment.html#interacting-with-your-canister","deployment.html#deploying-to-mainnet","deployment.html#common-deployment-issues","project_structure.html#project-structure-tldr","servers.html#servers-tldr","servers.html#servers","servers.html#nodejs-httpserver","servers.html#express","servers.html#jsonstringify","servers.html#server","servers.html#limitations","assets.html#assets-tldr","authentication.html#authentication-tldr","authentication.html#authentication","authentication.html#under-the-hood","fetch.html#fetch-tldr","fetch.html#fetch","fetch.html#cross-canister-calls-to-a-candid-canister","fetch.html#cross-canister-calls-to-an-http-canister","fetch.html#https-outcalls","debugging.html#debugging-tldr","debugging.html#debugging","debugging.html#consolelog-and-trycatch","debugging.html#canister-did-not-produce-a-response","debugging.html#no-error-message","debugging.html#final-compiled-and-bundled-javascript","limitations.html#limitations-tldr","reference_http/reference.html#reference","reference_http/autoreload.html#autoreload","reference_http/environment_variables.html#environment-variables","reference_http/environment_variables.html#azle_autoreload","reference_http/environment_variables.html#azle_dockerfile_hash","reference_http/environment_variables.html#azle_identity_storage_mode","reference_http/environment_variables.html#azle_instruction_count","reference_http/environment_variables.html#azle_proptest_num_runs","reference_http/environment_variables.html#azle_proptest_path","reference_http/environment_variables.html#azle_proptest_quiet","reference_http/environment_variables.html#azle_proptest_seed","reference_http/environment_variables.html#azle_proptest_verbose","reference_http/environment_variables.html#azle_test_fetch","reference_http/environment_variables.html#azle_use_dockerfile","reference_http/environment_variables.html#azle_verbose","reference_http/environment_variables.html#azle_wasmedge_quickjs_dir","reference_http/native_compilation.html#native-compilation-tldr","reference_http/native_compilation.html#native-compilation","candid_based_documentation.html#old-candid-based-documentation","azle.html#azle-beta","azle.html#disclaimer","azle.html#demergent-labs","azle.html#benefits-and-drawbacks","azle.html#benefits","azle.html#drawbacks","internet_computer_overview.html#internet-computer-overview","canisters_overview.html#canisters-overview","installation.html#installation","hello_world.html#hello-world","hello_world.html#quick-start","hello_world.html#methodical-start","hello_world.html#the-project-directory-and-file-structure","hello_world.html#indexts","hello_world.html#tsconfigjson","hello_world.html#dfxjson","hello_world.html#local-deployment","hello_world.html#common-deployment-issues","hello_world.html#interacting-with-your-canister-from-the-command-line","hello_world.html#interacting-with-your-canister-from-the-web-ui","deployment_candid_based.html#deployment","deployment_candid_based.html#starting-the-local-replica","deployment_candid_based.html#deploying-to-the-local-replica","deployment_candid_based.html#interacting-with-your-canister","deployment_candid_based.html#dfx-command-line","deployment_candid_based.html#dfx-web-ui","deployment_candid_based.html#dfinityagent","deployment_candid_based.html#deploying-to-mainnet","deployment_candid_based.html#common-deployment-issues","examples.html#examples","query_methods.html#query-methods","query_methods.html#tldr","update_methods.html#update-methods","update_methods.html#tldr","candid.html#candid","stable_structures.html#stable-structures","stable_structures.html#tldr","stable_structures.html#caveats","stable_structures.html#float64-values","stable_structures.html#candidtype-performance","stable_structures.html#migrations","stable_structures.html#canister","cross_canister.html#cross-canister","http.html#http","http.html#incoming-http-requests","http.html#outgoing-http-requests","management_canister.html#management-canister","canister_lifecycle.html#canister-lifecycle","timers.html#timers","cycles.html#cycles","caveats.html#caveats","caveats.html#unknown-security-vulnerabilities","caveats.html#npm-packages","caveats.html#javascript-environment-apis","caveats.html#high-candid-encodingdecoding-costs","caveats.html#promises","caveats.html#jsonparse-and-stablebtreemap-float64-values","reference/reference.html#reference","reference/bitcoin.html#bitcoin","reference/bitcoin.html#tecdsa","reference/bitcoin.html#bitcoin-integration","reference/bitcoin.html#ckbtc","reference/call_apis/call_apis.html#call-apis","reference/call_apis/accept_message.html#accept-message","reference/call_apis/arg_data_raw.html#arg-data-raw","reference/call_apis/arg_data_raw_size.html#arg-data-raw-size","reference/call_apis/call.html#call","reference/call_apis/call_raw.html#call-raw","reference/call_apis/call_raw128.html#call-raw-128","reference/call_apis/call_with_payment.html#call-with-payment","reference/call_apis/call_with_payment128.html#call-with-payment-128","reference/call_apis/caller.html#caller","reference/call_apis/method_name.html#method-name","reference/call_apis/msg_cycles_accept.html#msg-cycles-accept","reference/call_apis/msg_cycles_accept128.html#msg-cycles-accept-128","reference/call_apis/msg_cycles_available.html#msg-cycles-available","reference/call_apis/msg_cycles_available128.html#msg-cycles-available-128","reference/call_apis/msg_cycles_refunded.html#msg-cycles-refunded","reference/call_apis/msg_cycles_refunded128.html#msg-cycles-refunded-128","reference/call_apis/notify.html#notify","reference/call_apis/notify_raw.html#notify-raw","reference/call_apis/notify_with_payment_128.html#notify-with-payment-128","reference/call_apis/reject.html#reject","reference/call_apis/reject_code.html#reject-code","reference/call_apis/reject_message.html#reject-message","reference/call_apis/reply.html#reply","reference/call_apis/reply_raw.html#reply-raw","reference/candid/candid.html#candid","reference/candid/blob.html#blob","reference/candid/bool.html#bool","reference/candid/empty.html#empty","reference/candid/float32.html#float32","reference/candid/float64.html#float64","reference/candid/func.html#func","reference/candid/int.html#int","reference/candid/int8.html#int8","reference/candid/int16.html#int16","reference/candid/int32.html#int32","reference/candid/int64.html#int64","reference/candid/nat.html#nat","reference/candid/nat8.html#nat8","reference/candid/nat16.html#nat16","reference/candid/nat32.html#nat32","reference/candid/nat64.html#nat64","reference/candid/null.html#null","reference/candid/opt.html#opt","reference/candid/principal.html#principal","reference/candid/record.html#record","reference/candid/reserved.html#reserved","reference/candid/service.html#service","reference/candid/text.html#text","reference/candid/variant.html#variant","reference/candid/vec.html#vec","reference/canister_apis/canister_apis.html#canister-apis","reference/canister_apis/candid_decode.html#candid-decode","reference/canister_apis/candid_encode.html#candid-encode","reference/canister_apis/canister_balance.html#canister-balance","reference/canister_apis/canister_balance128.html#canister-balance-128","reference/canister_apis/canister_version.html#canister-version","reference/canister_apis/canister_id.html#canister-id","reference/canister_apis/data_certificate.html#data-certificate","reference/canister_apis/instruction_counter.html#instruction-counter","reference/canister_apis/is_controller.html#is-controller","reference/canister_apis/performance_counter.html#performance-counter","reference/canister_apis/print.html#print","reference/canister_apis/set_certified_data.html#set-certified-data","reference/canister_apis/time.html#time","reference/canister_apis/trap.html#trap","reference/canister_methods/canister_methods.html#canister-methods","reference/canister_methods/heartbeat.html#heartbeat","reference/canister_methods/http_request.html#http_request","reference/canister_methods/http_request_update.html#http_request","reference/canister_methods/init.html#init","reference/canister_methods/inspect_message.html#inspect-message","reference/canister_methods/post_upgrade.html#post-upgrade","reference/canister_methods/pre_upgrade.html#pre-upgrade","reference/canister_methods/query.html#query","reference/canister_methods/update.html#update","reference/environment_variables.html#environment-variables","reference/environment_variables.html#dfxjson","reference/environment_variables.html#processenv","reference/management_canister/management_canister.html#management-canister","reference/management_canister/bitcoin_get_balance.html#bitcoin_get_balance","reference/management_canister/bitcoin_get_current_fee_percentiles.html#bitcoin_get_current_fee_percentiles","reference/management_canister/bitcoin_get_utxos.html#bitcoin_get_utxos","reference/management_canister/bitcoin_send_transaction.html#bitcoin_send_transaction","reference/management_canister/canister_status.html#canister_status","reference/management_canister/create_canister.html#create_canister","reference/management_canister/delete_canister.html#delete_canister","reference/management_canister/deposit_cycles.html#deposit_cycles","reference/management_canister/ecdsa_public_key.html#ecdsa_public_key","reference/management_canister/http_request.html#http_request","reference/management_canister/install_code.html#install_code","reference/management_canister/provisional_create_canister_with_cycles.html#provisional_create_canister_with_cycles","reference/management_canister/provisional_top_up_canister.html#provisional_top_up_canister","reference/management_canister/raw_rand.html#raw_rand","reference/management_canister/sign_with_ecdsa.html#sign_with_ecdsa","reference/management_canister/start_canister.html#start_canister","reference/management_canister/stop_canister.html#stop_canister","reference/management_canister/uninstall_code.html#uninstall_code","reference/management_canister/update_settings.html#update_settings","reference/plugins.html#plugins","reference/plugins.html#local-plugin","reference/plugins.html#npm-plugin","reference/stable_memory/stable_memory.html#stable-memory","reference/stable_memory/stable_structures.html#stable-structures","reference/stable_memory/stable_bytes.html#stable-bytes","reference/stable_memory/stable_grow.html#stable-grow","reference/stable_memory/stable_read.html#stable-read","reference/stable_memory/stable_size.html#stable-size","reference/stable_memory/stable_write.html#stable-write","reference/stable_memory/stable64_grow.html#stable64-grow","reference/stable_memory/stable64_read.html#stable64-read","reference/stable_memory/stable64_size.html#stable64-size","reference/stable_memory/stable64_write.html#stable64-write","reference/timers/timers.html#timers","reference/timers/clear_timer.html#clear-timer","reference/timers/set_timer.html#set-timer","reference/timers/set_timer_interval.html#set-timer-interval","reference/wasm_binary_optimization.html#wasm-binary-optimization"],"index":{"documentStore":{"docInfo":{"0":{"body":155,"breadcrumbs":6,"title":3},"1":{"body":48,"breadcrumbs":2,"title":1},"10":{"body":75,"breadcrumbs":4,"title":3},"100":{"body":32,"breadcrumbs":8,"title":2},"101":{"body":29,"breadcrumbs":8,"title":2},"102":{"body":163,"breadcrumbs":6,"title":1},"103":{"body":83,"breadcrumbs":6,"title":1},"104":{"body":0,"breadcrumbs":6,"title":1},"105":{"body":7,"breadcrumbs":8,"title":3},"106":{"body":36,"breadcrumbs":7,"title":2},"107":{"body":12,"breadcrumbs":8,"title":3},"108":{"body":27,"breadcrumbs":9,"title":4},"109":{"body":17,"breadcrumbs":6,"title":1},"11":{"body":63,"breadcrumbs":5,"title":3},"110":{"body":17,"breadcrumbs":9,"title":4},"111":{"body":19,"breadcrumbs":6,"title":1},"112":{"body":15,"breadcrumbs":7,"title":1},"113":{"body":26,"breadcrumbs":7,"title":1},"114":{"body":27,"breadcrumbs":8,"title":2},"115":{"body":30,"breadcrumbs":7,"title":1},"116":{"body":58,"breadcrumbs":9,"title":2},"117":{"body":17,"breadcrumbs":11,"title":2},"118":{"body":34,"breadcrumbs":13,"title":3},"119":{"body":36,"breadcrumbs":15,"title":4},"12":{"body":42,"breadcrumbs":3,"title":2},"120":{"body":68,"breadcrumbs":9,"title":1},"121":{"body":39,"breadcrumbs":11,"title":2},"122":{"body":38,"breadcrumbs":13,"title":3},"123":{"body":47,"breadcrumbs":11,"title":2},"124":{"body":42,"breadcrumbs":13,"title":3},"125":{"body":26,"breadcrumbs":9,"title":1},"126":{"body":46,"breadcrumbs":11,"title":2},"127":{"body":24,"breadcrumbs":13,"title":3},"128":{"body":24,"breadcrumbs":15,"title":4},"129":{"body":24,"breadcrumbs":13,"title":3},"13":{"body":74,"breadcrumbs":2,"title":1},"130":{"body":24,"breadcrumbs":15,"title":4},"131":{"body":33,"breadcrumbs":13,"title":3},"132":{"body":33,"breadcrumbs":15,"title":4},"133":{"body":25,"breadcrumbs":9,"title":1},"134":{"body":28,"breadcrumbs":11,"title":2},"135":{"body":24,"breadcrumbs":13,"title":3},"136":{"body":26,"breadcrumbs":9,"title":1},"137":{"body":25,"breadcrumbs":11,"title":2},"138":{"body":25,"breadcrumbs":11,"title":2},"139":{"body":33,"breadcrumbs":9,"title":1},"14":{"body":47,"breadcrumbs":3,"title":2},"140":{"body":62,"breadcrumbs":11,"title":2},"141":{"body":25,"breadcrumbs":7,"title":1},"142":{"body":78,"breadcrumbs":8,"title":1},"143":{"body":54,"breadcrumbs":8,"title":1},"144":{"body":90,"breadcrumbs":8,"title":1},"145":{"body":56,"breadcrumbs":8,"title":1},"146":{"body":56,"breadcrumbs":8,"title":1},"147":{"body":120,"breadcrumbs":8,"title":1},"148":{"body":56,"breadcrumbs":8,"title":1},"149":{"body":56,"breadcrumbs":8,"title":1},"15":{"body":44,"breadcrumbs":2,"title":1},"150":{"body":56,"breadcrumbs":8,"title":1},"151":{"body":56,"breadcrumbs":8,"title":1},"152":{"body":56,"breadcrumbs":8,"title":1},"153":{"body":56,"breadcrumbs":8,"title":1},"154":{"body":56,"breadcrumbs":8,"title":1},"155":{"body":56,"breadcrumbs":8,"title":1},"156":{"body":56,"breadcrumbs":8,"title":1},"157":{"body":56,"breadcrumbs":8,"title":1},"158":{"body":55,"breadcrumbs":8,"title":1},"159":{"body":79,"breadcrumbs":8,"title":1},"16":{"body":60,"breadcrumbs":2,"title":1},"160":{"body":69,"breadcrumbs":8,"title":1},"161":{"body":95,"breadcrumbs":8,"title":1},"162":{"body":54,"breadcrumbs":8,"title":1},"163":{"body":100,"breadcrumbs":8,"title":1},"164":{"body":57,"breadcrumbs":8,"title":1},"165":{"body":103,"breadcrumbs":8,"title":1},"166":{"body":90,"breadcrumbs":8,"title":1},"167":{"body":26,"breadcrumbs":9,"title":2},"168":{"body":27,"breadcrumbs":11,"title":2},"169":{"body":30,"breadcrumbs":11,"title":2},"17":{"body":146,"breadcrumbs":2,"title":1},"170":{"body":25,"breadcrumbs":11,"title":2},"171":{"body":25,"breadcrumbs":13,"title":3},"172":{"body":23,"breadcrumbs":11,"title":2},"173":{"body":26,"breadcrumbs":11,"title":2},"174":{"body":35,"breadcrumbs":11,"title":2},"175":{"body":27,"breadcrumbs":11,"title":2},"176":{"body":27,"breadcrumbs":9,"title":1},"177":{"body":19,"breadcrumbs":11,"title":2},"178":{"body":29,"breadcrumbs":9,"title":1},"179":{"body":26,"breadcrumbs":13,"title":3},"18":{"body":43,"breadcrumbs":2,"title":1},"180":{"body":23,"breadcrumbs":9,"title":1},"181":{"body":35,"breadcrumbs":9,"title":1},"182":{"body":12,"breadcrumbs":9,"title":2},"183":{"body":21,"breadcrumbs":9,"title":1},"184":{"body":105,"breadcrumbs":9,"title":1},"185":{"body":105,"breadcrumbs":9,"title":1},"186":{"body":26,"breadcrumbs":9,"title":1},"187":{"body":46,"breadcrumbs":11,"title":2},"188":{"body":19,"breadcrumbs":11,"title":2},"189":{"body":19,"breadcrumbs":11,"title":2},"19":{"body":180,"breadcrumbs":3,"title":2},"190":{"body":17,"breadcrumbs":9,"title":1},"191":{"body":25,"breadcrumbs":9,"title":1},"192":{"body":25,"breadcrumbs":9,"title":2},"193":{"body":40,"breadcrumbs":8,"title":1},"194":{"body":27,"breadcrumbs":8,"title":1},"195":{"body":20,"breadcrumbs":9,"title":2},"196":{"body":39,"breadcrumbs":9,"title":1},"197":{"body":35,"breadcrumbs":9,"title":1},"198":{"body":39,"breadcrumbs":9,"title":1},"199":{"body":44,"breadcrumbs":9,"title":1},"2":{"body":93,"breadcrumbs":2,"title":1},"20":{"body":221,"breadcrumbs":3,"title":2},"200":{"body":29,"breadcrumbs":9,"title":1},"201":{"body":30,"breadcrumbs":9,"title":1},"202":{"body":30,"breadcrumbs":9,"title":1},"203":{"body":32,"breadcrumbs":9,"title":1},"204":{"body":50,"breadcrumbs":9,"title":1},"205":{"body":56,"breadcrumbs":9,"title":1},"206":{"body":43,"breadcrumbs":9,"title":1},"207":{"body":31,"breadcrumbs":9,"title":1},"208":{"body":35,"breadcrumbs":9,"title":1},"209":{"body":27,"breadcrumbs":9,"title":1},"21":{"body":4,"breadcrumbs":2,"title":1},"210":{"body":57,"breadcrumbs":9,"title":1},"211":{"body":30,"breadcrumbs":9,"title":1},"212":{"body":30,"breadcrumbs":9,"title":1},"213":{"body":30,"breadcrumbs":9,"title":1},"214":{"body":40,"breadcrumbs":9,"title":1},"215":{"body":40,"breadcrumbs":7,"title":1},"216":{"body":9,"breadcrumbs":8,"title":2},"217":{"body":12,"breadcrumbs":8,"title":2},"218":{"body":20,"breadcrumbs":9,"title":2},"219":{"body":98,"breadcrumbs":11,"title":2},"22":{"body":91,"breadcrumbs":3,"title":2},"220":{"body":19,"breadcrumbs":11,"title":2},"221":{"body":20,"breadcrumbs":11,"title":2},"222":{"body":24,"breadcrumbs":11,"title":2},"223":{"body":19,"breadcrumbs":11,"title":2},"224":{"body":24,"breadcrumbs":11,"title":2},"225":{"body":20,"breadcrumbs":11,"title":2},"226":{"body":24,"breadcrumbs":11,"title":2},"227":{"body":19,"breadcrumbs":11,"title":2},"228":{"body":24,"breadcrumbs":11,"title":2},"229":{"body":7,"breadcrumbs":7,"title":1},"23":{"body":179,"breadcrumbs":3,"title":2},"230":{"body":20,"breadcrumbs":10,"title":2},"231":{"body":42,"breadcrumbs":10,"title":2},"232":{"body":44,"breadcrumbs":12,"title":3},"233":{"body":94,"breadcrumbs":11,"title":3},"24":{"body":42,"breadcrumbs":2,"title":1},"25":{"body":19,"breadcrumbs":6,"title":5},"26":{"body":17,"breadcrumbs":6,"title":5},"27":{"body":4,"breadcrumbs":3,"title":2},"28":{"body":42,"breadcrumbs":3,"title":2},"29":{"body":28,"breadcrumbs":2,"title":1},"3":{"body":74,"breadcrumbs":2,"title":1},"30":{"body":14,"breadcrumbs":3,"title":2},"31":{"body":99,"breadcrumbs":4,"title":3},"32":{"body":340,"breadcrumbs":3,"title":2},"33":{"body":54,"breadcrumbs":5,"title":4},"34":{"body":74,"breadcrumbs":3,"title":2},"35":{"body":5,"breadcrumbs":2,"title":1},"36":{"body":106,"breadcrumbs":3,"title":1},"37":{"body":13,"breadcrumbs":5,"title":2},"38":{"body":12,"breadcrumbs":4,"title":1},"39":{"body":26,"breadcrumbs":4,"title":1},"4":{"body":26,"breadcrumbs":2,"title":1},"40":{"body":3,"breadcrumbs":4,"title":1},"41":{"body":11,"breadcrumbs":4,"title":1},"42":{"body":3,"breadcrumbs":4,"title":1},"43":{"body":3,"breadcrumbs":4,"title":1},"44":{"body":3,"breadcrumbs":4,"title":1},"45":{"body":3,"breadcrumbs":4,"title":1},"46":{"body":3,"breadcrumbs":4,"title":1},"47":{"body":3,"breadcrumbs":4,"title":1},"48":{"body":15,"breadcrumbs":4,"title":1},"49":{"body":9,"breadcrumbs":4,"title":1},"5":{"body":42,"breadcrumbs":2,"title":1},"50":{"body":13,"breadcrumbs":4,"title":1},"51":{"body":19,"breadcrumbs":6,"title":3},"52":{"body":174,"breadcrumbs":5,"title":2},"53":{"body":66,"breadcrumbs":8,"title":4},"54":{"body":24,"breadcrumbs":8,"title":2},"55":{"body":31,"breadcrumbs":7,"title":1},"56":{"body":20,"breadcrumbs":8,"title":2},"57":{"body":21,"breadcrumbs":8,"title":2},"58":{"body":866,"breadcrumbs":7,"title":1},"59":{"body":361,"breadcrumbs":7,"title":1},"6":{"body":73,"breadcrumbs":4,"title":3},"60":{"body":137,"breadcrumbs":10,"title":3},"61":{"body":104,"breadcrumbs":8,"title":2},"62":{"body":93,"breadcrumbs":6,"title":1},"63":{"body":68,"breadcrumbs":8,"title":2},"64":{"body":80,"breadcrumbs":8,"title":2},"65":{"body":0,"breadcrumbs":8,"title":2},"66":{"body":43,"breadcrumbs":10,"title":4},"67":{"body":271,"breadcrumbs":7,"title":1},"68":{"body":14,"breadcrumbs":7,"title":1},"69":{"body":19,"breadcrumbs":7,"title":1},"7":{"body":27,"breadcrumbs":4,"title":3},"70":{"body":14,"breadcrumbs":8,"title":2},"71":{"body":9,"breadcrumbs":9,"title":3},"72":{"body":36,"breadcrumbs":10,"title":4},"73":{"body":44,"breadcrumbs":10,"title":4},"74":{"body":39,"breadcrumbs":6,"title":1},"75":{"body":65,"breadcrumbs":8,"title":3},"76":{"body":12,"breadcrumbs":8,"title":3},"77":{"body":13,"breadcrumbs":7,"title":2},"78":{"body":59,"breadcrumbs":8,"title":3},"79":{"body":39,"breadcrumbs":8,"title":3},"8":{"body":65,"breadcrumbs":3,"title":2},"80":{"body":21,"breadcrumbs":6,"title":1},"81":{"body":22,"breadcrumbs":7,"title":2},"82":{"body":64,"breadcrumbs":8,"title":3},"83":{"body":51,"breadcrumbs":6,"title":1},"84":{"body":0,"breadcrumbs":8,"title":2},"85":{"body":304,"breadcrumbs":7,"title":1},"86":{"body":0,"breadcrumbs":8,"title":2},"87":{"body":483,"breadcrumbs":7,"title":1},"88":{"body":421,"breadcrumbs":6,"title":1},"89":{"body":0,"breadcrumbs":8,"title":2},"9":{"body":28,"breadcrumbs":3,"title":2},"90":{"body":794,"breadcrumbs":7,"title":1},"91":{"body":0,"breadcrumbs":7,"title":1},"92":{"body":12,"breadcrumbs":8,"title":2},"93":{"body":50,"breadcrumbs":8,"title":2},"94":{"body":25,"breadcrumbs":7,"title":1},"95":{"body":24,"breadcrumbs":7,"title":1},"96":{"body":538,"breadcrumbs":8,"title":2},"97":{"body":3,"breadcrumbs":6,"title":1},"98":{"body":102,"breadcrumbs":8,"title":3},"99":{"body":149,"breadcrumbs":8,"title":3}},"docs":{"0":{"body":"Welcome to The Azle Book! This is a guide for building secure decentralized/replicated servers in TypeScript or JavaScript on ICP . The current replication factor is 13-40 times . Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP The Azle Book is subject to the following license and Azle's License Extension : MIT License Copyright (c) 2024 AZLE token holders (nlhft-2iaaa-aaaae-qaaua-cai) Permission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.","breadcrumbs":"The Azle Book (Beta) » The Azle Book (Beta)","id":"0","title":"The Azle Book (Beta)"},"1":{"body":"Installation Deployment Azle helps you to build secure decentralized/replicated servers in TypeScript or JavaScript on ICP . The current replication factor is 13-40 times . Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP","breadcrumbs":"Get Started » Get Started","id":"1","title":"Get Started"},"10":{"body":"If you run into an error during deployment, try the following: Ensure that you have followed the installation instructions exactly as specified in the Get Started chapter Start the whole deployment process from scratch and look for more error output by doing the following: In your replica terminal: Terminate the replica in your terminal or run dfx stop if your replica is running in the background dfx start --clean --host 127.0.0.1:8000 In your project terminal at the root directory of your project: rm -rf node_modules npm install npx azle clean AZLE_VERBOSE=true dfx deploy If the build process hangs on Waiting for VM ..., see this issue for possible fixes If the problem is still not resolved, reach out with the error output in the Discord channel","breadcrumbs":"Deployment » Common deployment issues","id":"10","title":"Common deployment issues"},"100":{"body":"This chapter is a work in progress. You can access the management canister like this: import { blob, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ randomBytes: update([], blob, async () => { return await ic.call(managementCanister.raw_rand); })\n}); See the management canister reference section for more information.","breadcrumbs":"Old Candid-based Documentation » Management Canister » Management Canister","id":"100","title":"Management Canister"},"101":{"body":"This chapter is a work in progress. import { Canister, init, postUpgrade, preUpgrade } from 'azle'; export default Canister({ init: init([], () => { console.log('runs on first canister install'); }), preUpgrade: preUpgrade(() => { console.log('runs before canister upgrade'); }), postUpgrade: postUpgrade([], () => { console.log('runs after canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Canister Lifecycle » Canister Lifecycle","id":"101","title":"Canister Lifecycle"},"102":{"body":"This chapter is a work in progress. import { blob, bool, Canister, Duration, ic, int8, query, Record, text, TimerId, update, Void\n} from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const StatusReport = Record({ single: bool, inline: int8, capture: text, repeat: int8, singleCrossCanister: blob, repeatCrossCanister: blob\n}); const TimerIds = Record({ single: TimerId, inline: TimerId, capture: TimerId, repeat: TimerId, singleCrossCanister: TimerId, repeatCrossCanister: TimerId\n}); let statusReport: typeof StatusReport = { single: false, inline: 0, capture: '', repeat: 0, singleCrossCanister: Uint8Array.from([]), repeatCrossCanister: Uint8Array.from([])\n}; export default Canister({ clearTimer: update([TimerId], Void, (timerId) => { ic.clearTimer(timerId); console.log(`timer ${timerId} cancelled`); }), setTimers: update([Duration, Duration], TimerIds, (delay, interval) => { const capturedValue = '🚩'; const singleId = ic.setTimer(delay, oneTimeTimerCallback); const inlineId = ic.setTimer(delay, () => { statusReport.inline = 1; console.log('Inline timer called'); }); const captureId = ic.setTimer(delay, () => { statusReport.capture = capturedValue; console.log(`Timer captured value ${capturedValue}`); }); const repeatId = ic.setTimerInterval(interval, () => { statusReport.repeat++; console.log(`Repeating timer. Call ${statusReport.repeat}`); }); const singleCrossCanisterId = ic.setTimer( delay, singleCrossCanisterTimerCallback ); const repeatCrossCanisterId = ic.setTimerInterval( interval, repeatCrossCanisterTimerCallback ); return { single: singleId, inline: inlineId, capture: captureId, repeat: repeatId, singleCrossCanister: singleCrossCanisterId, repeatCrossCanister: repeatCrossCanisterId }; }), statusReport: query([], StatusReport, () => { return statusReport; })\n}); function oneTimeTimerCallback() { statusReport.single = true; console.log('oneTimeTimerCallback called');\n} async function singleCrossCanisterTimerCallback() { console.log('singleCrossCanisterTimerCallback'); statusReport.singleCrossCanister = await ic.call( managementCanister.raw_rand );\n} async function repeatCrossCanisterTimerCallback() { console.log('repeatCrossCanisterTimerCallback'); statusReport.repeatCrossCanister = Uint8Array.from([ ...statusReport.repeatCrossCanister, ...(await ic.call(managementCanister.raw_rand)) ]);\n}","breadcrumbs":"Old Candid-based Documentation » Timers » Timers","id":"102","title":"Timers"},"103":{"body":"This chapter is a work in progress. Cycles are essentially units of computational resources such as bandwidth, memory, and CPU instructions. Costs are generally metered on the Internet Computer (IC) by cycles. You can see a breakdown of all cycle costs here . Currently queries do not have any cycle costs. Most important to you will probably be update costs. TODO break down some cycle scenarios maybe? Perhaps we should show some of our analyses for different types of applications. Maybe show how to send and receive cycles, exactly how to do it. Show all of the APIs for sending or receiving cycles? Perhaps we don't need to do that here, since each API will show this information. Maybe here we just show the basic concept of cycles, link to the main cycles cost page, and show a few examples of how to break down these costs or estimate these costs.","breadcrumbs":"Old Candid-based Documentation » Cycles » Cycles","id":"103","title":"Cycles"},"104":{"body":"","breadcrumbs":"Old Candid-based Documentation » Caveats » Caveats","id":"104","title":"Caveats"},"105":{"body":"Azle is a beta project. See the disclaimer for more information.","breadcrumbs":"Old Candid-based Documentation » Caveats » Unknown security vulnerabilities","id":"105","title":"Unknown security vulnerabilities"},"106":{"body":"Some npm packages will work and some will not work. It is our long-term goal to support as many npm packages as possible. There are various reasons why an npm package may not currently work, including the small Wasm binary limit of the IC and unimplemented web or Node.js APIs. Feel free to open issues if your npm package does not work in Azle.","breadcrumbs":"Old Candid-based Documentation » Caveats » npm packages","id":"106","title":"npm packages"},"107":{"body":"You may encounter various missing JavaScript environment APIs, such as those you would expect in the web or Node.js environments.","breadcrumbs":"Old Candid-based Documentation » Caveats » JavaScript environment APIs","id":"107","title":"JavaScript environment APIs"},"108":{"body":"Candid encoding/decoding is currently very unoptimized. This will most likely lead to a ~1-2 million extra fixed instruction cost for all calls. Be careful using CandidType Serializable objects with StableBTreeMap, or using any other API or data structure that engages in Candid encoding/decoding.","breadcrumbs":"Old Candid-based Documentation » Caveats » High Candid encoding/decoding costs","id":"108","title":"High Candid encoding/decoding costs"},"109":{"body":"Though promises are implemented, the underlying queue that handles asynchronous operations is very simple. This queue will not behave exactly as queues from the major JS engines.","breadcrumbs":"Old Candid-based Documentation » Caveats » Promises","id":"109","title":"Promises"},"11":{"body":"Your project is just a directory with a dfx.json file that points to your .ts or .js entrypoint. Here's what your directory structure might look like: hello_world/\n|\n├── dfx.json\n|\n└── src/ └── api.ts And the corresponding dfx.json file: { \"canisters\": { \"api\": { \"type\": \"custom\", \"main\": \"src/api.ts\", \"candid\": \"src/api.did\", \"candid_gen\": \"http\", \"build\": \"npx azle api\", \"wasm\": \".azle/api/api.wasm\", \"gzip\": true, \"metadata\": [ { \"name\": \"candid:service\", \"path\": \"src/api.did\" }, { \"name\": \"cdk:name\", \"content\": \"azle\" } ] } }\n} Once you have created this directory structure you can deploy to mainnet or a locally running replica by running the dfx deploy command in the same directory as your dfx.json file.","breadcrumbs":"Project Structure » Project Structure TL;DR","id":"11","title":"Project Structure TL;DR"},"110":{"body":"It seems to be only some float64 values cannot be successfully stored and retrieved with a StableBTreeMap using stableJson because of this bug with JSON.parse: https://github.com/bellard/quickjs/issues/206 This will also affect stand-alone usage of JSON.parse.","breadcrumbs":"Old Candid-based Documentation » Caveats » JSON.parse and StableBTreeMap float64 values","id":"110","title":"JSON.parse and StableBTreeMap float64 values"},"111":{"body":"Bitcoin Call APIs Candid Canister APIs Canister Methods Environment Variables Management Canister Plugins Stable Memory Timers Wasm Binary Optimization","breadcrumbs":"Old Candid-based Documentation » Reference » Reference","id":"111","title":"Reference"},"112":{"body":"The Internet Computer (IC) interacts with the Bitcoin blockchain through the use of tECDSA, the Bitcoin integration, and a ledger canister called ckBTC.","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » Bitcoin","id":"112","title":"Bitcoin"},"113":{"body":"tECDSA on the IC allows canisters to request access to threshold ECDSA keypairs on the tECDSA subnet. This functionality is exposed through two management canister methods: ecdsa_public_key sign_with_ecdsa The following are examples using tECDSA: basic_bitcoin threshold_ecdsa","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » tECDSA","id":"113","title":"tECDSA"},"114":{"body":"The Bitcoin integration allows canisters on the IC to interact directly with the Bitcoin network. This functionality is exposed through the following management canister methods: bitcoin_get_balance bitcoin_get_current_fee_percentiles bitcoin_get_utxos bitcoin_send_transaction The following are examples using the Bitcoin integration: basic_bitcoin bitcoin","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » Bitcoin integration","id":"114","title":"Bitcoin integration"},"115":{"body":"ckBTC is a ledger canister deployed to the IC. It follows the ICRC standard, and can be accessed easily from an Azle canister using azle/canisters/ICRC if you only need the ICRC methods. For access to the full ledger methods you will need to create your own Service for now. The following are examples using ckBTC: ckBTC","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » ckBTC","id":"115","title":"ckBTC"},"116":{"body":"accept message arg data raw arg data raw size call call raw call raw 128 call with payment call with payment 128 caller method name msg cycles accept msg cycles accept 128 msg cycles available msg cycles available 128 msg cycles refunded msg cycles refunded 128 notify notify raw notify with payment 128 reject reject code reject message reply reply raw","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » Call APIs","id":"116","title":"Call APIs"},"117":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { Canister, ic, inspectMessage } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { ic.acceptMessage(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » accept message » accept message","id":"117","title":"accept message"},"118":{"body":"This section is a work in progress. Examples: ic_api import { blob, bool, Canister, ic, int8, query, text } from 'azle'; export default Canister({ // returns the argument data as bytes. argDataRaw: query( [blob, int8, bool, text], blob, (arg1, arg2, arg3, arg4) => { return ic.argDataRaw(); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » arg data raw » arg data raw","id":"118","title":"arg data raw"},"119":{"body":"This section is a work in progress. Examples: ic_api import { blob, bool, Canister, ic, int8, nat, query, text } from 'azle'; export default Canister({ // returns the length of the argument data in bytes argDataRawSize: query( [blob, int8, bool, text], nat, (arg1, arg2, arg3, arg4) => { return ic.argDataRawSize(); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » arg data raw size » arg data raw size","id":"119","title":"arg data raw size"},"12":{"body":"Just write Node.js servers like this: import { createServer } from 'http'; const server = createServer((req, res) => { res.write('Hello World!'); res.end();\n}); server.listen(); or write Express servers like this: import express, { Request } from 'express'; let db = { hello: ''\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.json(db);\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.json(db);\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » Servers TL;DR","id":"12","title":"Servers TL;DR"},"120":{"body":"This section is a work in progress. Examples: async_await bitcoin composite_queries cross_canister_calls cycles ethereum_json_rpc func_types heartbeat inline_types ledger_canister management_canister outgoing_http_requests threshold_ecdsa rejections timers tuple_types whoami import { Canister, ic, init, nat64, Principal, update } from 'azle'; const TokenCanister = Canister({ transfer: update([Principal, nat64], nat64)\n}); let tokenCanister: typeof TokenCanister; export default Canister({ init: init([], setup), postDeploy: init([], setup), payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); function setup() { tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai') );\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call » call","id":"120","title":"call"},"121":{"body":"This section is a work in progress. Examples: call_raw outgoing_http_requests import { Canister, ic, nat64, Principal, text, update } from 'azle'; export default Canister({ executeCallRaw: update( [Principal, text, text, nat64], text, async (canisterId, method, candidArgs, payment) => { const candidBytes = await ic.callRaw( canisterId, method, ic.candidEncode(candidArgs), payment ); return ic.candidDecode(candidBytes); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call raw » call raw","id":"121","title":"call raw"},"122":{"body":"This section is a work in progress. Examples: call_raw import { Canister, ic, nat, Principal, text, update } from 'azle'; export default Canister({ executeCallRaw128: update( [Principal, text, text, nat], text, async (canisterId, method, candidArgs, payment) => { const candidBytes = await ic.callRaw128( canisterId, method, ic.candidEncode(candidArgs), payment ); return ic.candidDecode(candidBytes); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call raw 128 » call raw 128","id":"122","title":"call raw 128"},"123":{"body":"This section is a work in progress. Examples: bitcoin cycles ethereum_json_rpc management_canister outgoing_http_requests threshold_ecdsa import { blob, Canister, ic, Principal, update, Void } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], Void, async (canisterId, wasmModule) => { return await ic.call(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call with payment » call with payment","id":"123","title":"call with payment"},"124":{"body":"This section is a work in progress. Examples: cycles import { blob, Canister, ic, Principal, update, Void } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], Void, async (canisterId, wasmModule) => { return await ic.call128(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call with payment 128 » call with payment 128","id":"124","title":"call with payment 128"},"125":{"body":"This section is a work in progress. Examples: ic_api threshold_ecdsa whoami import { Canister, ic, Principal, update } from 'azle'; export default Canister({ // returns the principal of the identity that called this function caller: update([], Principal, () => { return ic.caller(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » caller » caller","id":"125","title":"caller"},"126":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { bool, Canister, ic, inspectMessage, update } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { console.log('inspectMessage called'); if (ic.methodName() === 'accessible') { ic.acceptMessage(); return; } if (ic.methodName() === 'inaccessible') { return; } throw `Method \"${ic.methodName()}\" not allowed`; }), accessible: update([], bool, () => { return true; }), inaccessible: update([], bool, () => { return false; }), alsoInaccessible: update([], bool, () => { return false; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » method name » method name","id":"126","title":"method name"},"127":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles: update([], nat64, () => { return ic.msgCyclesAccept(ic.msgCyclesAvailable() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles accept » msg cycles accept","id":"127","title":"msg cycles accept"},"128":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles128: update([], nat64, () => { return ic.msgCyclesAccept128(ic.msgCyclesAvailable128() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles accept 128 » msg cycles accept 128","id":"128","title":"msg cycles accept 128"},"129":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles: update([], nat64, () => { return ic.msgCyclesAccept(ic.msgCyclesAvailable() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles available » msg cycles available","id":"129","title":"msg cycles available"},"13":{"body":"Node.js http.server Express Server Limitations Azle supports building HTTP servers on ICP using the Node.js http.Server class as the foundation. These servers can serve static files or act as API backends, or both. Azle currently has good but not comprehensive support for Node.js http.Server and Express . Support for other libraries like Nest are works-in-progress. Once deployed you can access your server at a URL like this locally http://bkyz2-fmaaa-aaaaa-qaaaq-cai.localhost:8000 or like this on mainnet https://bkyz2-fmaaa-aaaaa-qaaaq-cai.raw.icp0.io. You can use any HTTP client to interact with your server, such as curl, fetch, or a web browser. See the Interacting with your canister section of the deployment chapter for help in constructing your canister URL.","breadcrumbs":"Servers » Servers","id":"13","title":"Servers"},"130":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles128: update([], nat64, () => { return ic.msgCyclesAccept128(ic.msgCyclesAvailable128() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles available 128 » msg cycles available 128","id":"130","title":"msg cycles available 128"},"131":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ // Reports the number of cycles returned from the Cycles canister sendCycles: update([], nat64, async () => { await ic.call(otherCanister.receiveCycles, { cycles: 1_000_000n }); return ic.msgCyclesRefunded(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles refunded » msg cycles refunded","id":"131","title":"msg cycles refunded"},"132":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ // Reports the number of cycles returned from the Cycles canister sendCycles128: update([], nat64, async () => { await ic.call128(otherCanister.receiveCycles128, { cycles: 1_000_000n }); return ic.msgCyclesRefunded128(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles refunded 128 » msg cycles refunded 128","id":"132","title":"msg cycles refunded 128"},"133":{"body":"This section is a work in progress. Examples: cross_canister_calls cycles import { Canister, ic, update, Void } from 'azle';\nimport { otherCanister } from './otherCanister'; export default Canister({ sendNotification: update([], Void, () => { return ic.notify(otherCanister.receiveNotification, { args: ['This is the notification'] }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify » notify","id":"133","title":"notify"},"134":{"body":"This section is a work in progress. Examples: notify_raw import { Canister, ic, Principal, update, Void } from 'azle'; export default Canister({ sendNotification: update([], Void, () => { return ic.notifyRaw( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai'), 'receiveNotification', Uint8Array.from(ic.candidEncode('()')), 0n ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify raw » notify raw","id":"134","title":"notify raw"},"135":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, update, Void } from 'azle';\nimport { otherCanister } from './otherCanister'; export default Canister({ sendCycles128Notify: update([], Void, () => { return ic.notify(otherCanister.receiveCycles128, { cycles: 1_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify with payment 128 » notify with payment 128","id":"135","title":"notify with payment 128"},"136":{"body":"This section is a work in progress. Examples: ic_api manual_reply rejections import { Canister, empty, ic, Manual, query, text } from 'azle'; export default Canister({ reject: query( [text], Manual(empty), (message) => { ic.reject(message); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject » reject","id":"136","title":"reject"},"137":{"body":"This section is a work in progress. Examples: rejections import { Canister, ic, RejectionCode, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ getRejectionCodeDestinationInvalid: update([], RejectionCode, async () => { await ic.call(otherCanister.method); return ic.rejectCode(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject code » reject code","id":"137","title":"reject code"},"138":{"body":"This section is a work in progress. Examples: rejections import { Canister, ic, text, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ getRejectionMessage: update([], text, async () => { await ic.call(otherCanister.method); return ic.rejectMessage(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject message » reject message","id":"138","title":"reject message"},"139":{"body":"This section is a work in progress. Examples: composite_queries manual_reply import { blob, Canister, ic, Manual, update } from 'azle'; export default Canister({ updateBlob: update( [], Manual(blob), () => { ic.reply( new Uint8Array([83, 117, 114, 112, 114, 105, 115, 101, 33]), blob ); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reply » reply","id":"139","title":"reply"},"14":{"body":"Azle supports instances of Node.js http.Server . listen() must be called on the server instance for Azle to use it to handle HTTP requests. Azle does not respect a port being passed into listen(). The port is set by the ICP replica (e.g. dfx start --host 127.0.0.1:8000), not by Azle. Here's an example of a very simple Node.js http.Server : import { createServer } from 'http'; const server = createServer((req, res) => { res.write('Hello World!'); res.end();\n}); server.listen();","breadcrumbs":"Servers » Node.js http.server","id":"14","title":"Node.js http.server"},"140":{"body":"This section is a work in progress. Examples: manual_reply outgoing_http_requests import { blob, bool, Canister, ic, int, Manual, Null, Record, text, update, Variant\n} from 'azle'; const Options = Variant({ High: Null, Medium: Null, Low: Null\n}); export default Canister({ replyRaw: update( [], Manual( Record({ int: int, text: text, bool: bool, blob: blob, variant: Options }) ), () => { ic.replyRaw( ic.candidEncode( '(record { \"int\" = 42; \"text\" = \"text\"; \"bool\" = true; \"blob\" = blob \"Surprise!\"; \"variant\" = variant { Medium } })' ) ); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reply raw » reply raw","id":"140","title":"reply raw"},"141":{"body":"blob bool empty float32 float64 func int int8 int16 int32 int64 nat nat8 nat16 nat32 nat64 null opt principal record reserved service text variant vec","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » Candid","id":"141","title":"Candid"},"142":{"body":"The CandidType object blob corresponds to the Candid type blob , is inferred to be a TypeScript Uint8Array and will be decoded into a JavaScript Uint8Array at runtime. TypeScript or JavaScript: import { blob, Canister, query } from 'azle'; export default Canister({ getBlob: query([], blob, () => { return Uint8Array.from([68, 73, 68, 76, 0, 0]); }), printBlob: query([blob], blob, (blob) => { console.log(typeof blob); return blob; })\n}); Candid: service : () -> { getBlob : () -> (vec nat8) query; printBlob : (vec nat8) -> (vec nat8) query;\n} dfx: dfx canister call candid_canister printBlob '(vec { 68; 73; 68; 76; 0; 0; })'\n(blob \"DIDL\\00\\00\") dfx canister call candid_canister printBlob '(blob \"DIDL\\00\\00\")'\n(blob \"DIDL\\00\\00\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » blob » blob","id":"142","title":"blob"},"143":{"body":"The CandidType object bool corresponds to the Candid type bool , is inferred to be a TypeScript boolean, and will be decoded into a JavaScript Boolean at runtime. TypeScript or JavaScript: import { bool, Canister, query } from 'azle'; export default Canister({ getBool: query([], bool, () => { return true; }), printBool: query([bool], bool, (bool) => { console.log(typeof bool); return bool; })\n}); Candid: service : () -> { getBool : () -> (bool) query; printBool : (bool) -> (bool) query;\n} dfx: dfx canister call candid_canister printBool '(true)'\n(true)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » bool » bool","id":"143","title":"bool"},"144":{"body":"The CandidType object empty corresponds to the Candid type empty , is inferred to be a TypeScript never, and has no JavaScript value at runtime. TypeScript or JavaScript: import { Canister, empty, query } from 'azle'; export default Canister({ getEmpty: query([], empty, () => { throw 'Anything you want'; }), // Note: It is impossible to call this function because it requires an argument // but there is no way to pass an \"empty\" value as an argument. printEmpty: query([empty], empty, (empty) => { console.log(typeof empty); throw 'Anything you want'; })\n}); Candid: service : () -> { getEmpty : () -> (empty) query; printEmpty : (empty) -> (empty) query;\n} dfx: dfx canister call candid_canister printEmpty '(\"You can put anything here\")'\nError: Failed to create argument blob.\nCaused by: Failed to create argument blob. Invalid data: Unable to serialize Candid values: type mismatch: \"You can put anything here\" cannot be of type empty","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » empty » empty","id":"144","title":"empty"},"145":{"body":"The CandidType object float32 corresponds to the Candid type float32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, float32, query } from 'azle'; export default Canister({ getFloat32: query([], float32, () => { return Math.PI; }), printFloat32: query([float32], float32, (float32) => { console.log(typeof float32); return float32; })\n}); Candid: service : () -> { getFloat32 : () -> (float32) query; printFloat32 : (float32) -> (float32) query;\n} dfx: dfx canister call candid_canister printFloat32 '(3.1415927 : float32)'\n(3.1415927 : float32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » float32 » float32","id":"145","title":"float32"},"146":{"body":"The CandidType object float64 corresponds to the Candid type float64 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, float64, query } from 'azle'; export default Canister({ getFloat64: query([], float64, () => { return Math.E; }), printFloat64: query([float64], float64, (float64) => { console.log(typeof float64); return float64; })\n}); Candid: service : () -> { getFloat64 : () -> (float64) query; printFloat64 : (float64) -> (float64) query;\n} dfx: dfx canister call candid_canister printFloat64 '(2.718281828459045 : float64)'\n(2.718281828459045 : float64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » float64 » float64","id":"146","title":"float64"},"147":{"body":"Values created by the CandidType function Func correspond to the Candid type func , are inferred to be TypeScript [Principal, string] tuples, and will be decoded into JavaScript array with two elements at runtime. The first element is an @dfinity/principal and the second is a JavaScript string . The @dfinity/principal represents the principal of the canister/service where the function exists, and the string represents the function's name. A func acts as a callback, allowing the func receiver to know which canister instance and method must be used to call back. TypeScript or JavaScript: import { Canister, Func, Principal, query, text } from 'azle'; const BasicFunc = Func([text], text, 'query'); export default Canister({ getBasicFunc: query([], BasicFunc, () => { return [ Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'), 'getBasicFunc' ]; }), printBasicFunc: query([BasicFunc], BasicFunc, (basicFunc) => { console.log(typeof basicFunc); return basicFunc; })\n}); Candid: service : () -> { getBasicFunc : () -> (func (text) -> (text) query) query; printBasicFunc : (func (text) -> (text) query) -> ( func (text) -> (text) query, ) query;\n} dfx: dfx canister call candid_canister printBasicFunc '(func \"r7inp-6aaaa-aaaaa-aaabq-cai\".getBasicFunc)'\n(func \"r7inp-6aaaa-aaaaa-aaabq-cai\".getBasicFunc)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » func » func","id":"147","title":"func"},"148":{"body":"The CandidType object int corresponds to the Candid type int , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, int, query } from 'azle'; export default Canister({ getInt: query([], int, () => { return 170_141_183_460_469_231_731_687_303_715_884_105_727n; }), printInt: query([int], int, (int) => { console.log(typeof int); return int; })\n}); Candid: service : () -> { getInt : () -> (int) query; printInt : (int) -> (int) query;\n} dfx: dfx canister call candid_canister printInt '(170_141_183_460_469_231_731_687_303_715_884_105_727 : int)'\n(170_141_183_460_469_231_731_687_303_715_884_105_727 : int)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int » int","id":"148","title":"int"},"149":{"body":"The CandidType object int8 corresponds to the Candid type int8 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int8, query } from 'azle'; export default Canister({ getInt8: query([], int8, () => { return 127; }), printInt8: query([int8], int8, (int8) => { console.log(typeof int8); return int8; })\n}); Candid: service : () -> { getInt8 : () -> (int8) query; printInt8 : (int8) -> (int8) query;\n} dfx: dfx canister call candid_canister printInt8 '(127 : int8)'\n(127 : int8)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int8 » int8","id":"149","title":"int8"},"15":{"body":"Express is one of the most popular backend JavaScript web frameworks, and it's the recommended way to get started building servers in Azle. Here's the main code from the hello_world example : import express, { Request } from 'express'; let db = { hello: ''\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.json(db);\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.json(db);\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » Express","id":"15","title":"Express"},"150":{"body":"The CandidType object int16 corresponds to the Candid type int16 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int16, query } from 'azle'; export default Canister({ getInt16: query([], int16, () => { return 32_767; }), printInt16: query([int16], int16, (int16) => { console.log(typeof int16); return int16; })\n}); Candid: service : () -> { getInt16 : () -> (int16) query; printInt16 : (int16) -> (int16) query;\n} dfx: dfx canister call candid_canister printInt16 '(32_767 : int16)'\n(32_767 : int16)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int16 » int16","id":"150","title":"int16"},"151":{"body":"The CandidType object int32 corresponds to the Candid type int32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int32, query } from 'azle'; export default Canister({ getInt32: query([], int32, () => { return 2_147_483_647; }), printInt32: query([int32], int32, (int32) => { console.log(typeof int32); return int32; })\n}); Candid: service : () -> { getInt32 : () -> (int32) query; printInt32 : (int32) -> (int32) query;\n} dfx: dfx canister call candid_canister printInt32 '(2_147_483_647 : int32)'\n(2_147_483_647 : int32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int32 » int32","id":"151","title":"int32"},"152":{"body":"The CandidType object int64 corresponds to the Candid type int64 , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, int64, query } from 'azle'; export default Canister({ getInt64: query([], int64, () => { return 9_223_372_036_854_775_807n; }), printInt64: query([int64], int64, (int64) => { console.log(typeof int64); return int64; })\n}); Candid: service : () -> { getInt64 : () -> (int64) query; printInt64 : (int64) -> (int64) query;\n} dfx: dfx canister call candid_canister printInt64 '(9_223_372_036_854_775_807 : int64)'\n(9_223_372_036_854_775_807 : int64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int64 » int64","id":"152","title":"int64"},"153":{"body":"The CandidType object nat corresponds to the Candid type nat , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, nat, query } from 'azle'; export default Canister({ getNat: query([], nat, () => { return 340_282_366_920_938_463_463_374_607_431_768_211_455n; }), printNat: query([nat], nat, (nat) => { console.log(typeof nat); return nat; })\n}); Candid: service : () -> { getNat : () -> (nat) query; printNat : (nat) -> (nat) query;\n} dfx: dfx canister call candid_canister printNat '(340_282_366_920_938_463_463_374_607_431_768_211_455 : nat)'\n(340_282_366_920_938_463_463_374_607_431_768_211_455 : nat)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat » nat","id":"153","title":"nat"},"154":{"body":"The CandidType object nat8 corresponds to the Candid type nat8 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat8, query } from 'azle'; export default Canister({ getNat8: query([], nat8, () => { return 255; }), printNat8: query([nat8], nat8, (nat8) => { console.log(typeof nat8); return nat8; })\n}); Candid: service : () -> { getNat8 : () -> (nat8) query; printNat8 : (nat8) -> (nat8) query;\n} dfx: dfx canister call candid_canister printNat8 '(255 : nat8)'\n(255 : nat8)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat8 » nat8","id":"154","title":"nat8"},"155":{"body":"The CandidType object nat16 corresponds to the Candid type nat16 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat16, query } from 'azle'; export default Canister({ getNat16: query([], nat16, () => { return 65_535; }), printNat16: query([nat16], nat16, (nat16) => { console.log(typeof nat16); return nat16; })\n}); Candid: service : () -> { getNat16 : () -> (nat16) query; printNat16 : (nat16) -> (nat16) query;\n} dfx: dfx canister call candid_canister printNat16 '(65_535 : nat16)'\n(65_535 : nat16)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat16 » nat16","id":"155","title":"nat16"},"156":{"body":"The CandidType object nat32 corresponds to the Candid type nat32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat32, query } from 'azle'; export default Canister({ getNat32: query([], nat32, () => { return 4_294_967_295; }), printNat32: query([nat32], nat32, (nat32) => { console.log(typeof nat32); return nat32; })\n}); Candid: service : () -> { getNat32 : () -> (nat32) query; printNat32 : (nat32) -> (nat32) query;\n} dfx: dfx canister call candid_canister printNat32 '(4_294_967_295 : nat32)'\n(4_294_967_295 : nat32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat32 » nat32","id":"156","title":"nat32"},"157":{"body":"The CandidType object nat64 corresponds to the Candid type nat64 , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, nat64, query } from 'azle'; export default Canister({ getNat64: query([], nat64, () => { return 18_446_744_073_709_551_615n; }), printNat64: query([nat64], nat64, (nat64) => { console.log(typeof nat64); return nat64; })\n}); Candid: service : () -> { getNat64 : () -> (nat64) query; printNat64 : (nat64) -> (nat64) query;\n} dfx: dfx canister call candid_canister printNat64 '(18_446_744_073_709_551_615 : nat64)'\n(18_446_744_073_709_551_615 : nat64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat64 » nat64","id":"157","title":"nat64"},"158":{"body":"The CandidType object null corresponds to the Candid type null , is inferred to be a TypeScript null, and will be decoded into a JavaScript null at runtime. TypeScript or JavaScript: import { Canister, Null, query } from 'azle'; export default Canister({ getNull: query([], Null, () => { return null; }), printNull: query([Null], Null, (null_) => { console.log(typeof null_); return null_; })\n}); Candid: service : () -> { getNull : () -> (null) query; printNull : (null) -> (null) query;\n} dfx: dfx canister call candid_canister printNull '(null)'\n(null : null)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » null » null","id":"158","title":"null"},"159":{"body":"The CandidType object Opt corresponds to the Candid type opt , is inferred to be a TypeScript Opt, and will be decoded into a JavaScript Object at runtime. It is a variant with Some and None cases. At runtime if the value of the variant is Some, the Some property of the variant object will have a value of the enclosed Opt type at runtime. TypeScript or JavaScript: import { bool, Canister, None, Opt, query, Some } from 'azle'; export default Canister({ getOptSome: query([], Opt(bool), () => { return Some(true); // equivalent to { Some: true } }), getOptNone: query([], Opt(bool), () => { return None; //equivalent to { None: null} })\n}); Candid: service : () -> { getOptNone : () -> (opt bool) query; getOptSome : () -> (opt bool) query;\n} dfx: dfx canister call candid_canister getOptSome\n(opt true) dfx canister call candid_canister getOptNone\n(null)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » opt » opt","id":"159","title":"opt"},"16":{"body":"When working with res.json you may run into errors because of attempting to send back JavaScript objects that are not strictly JSON. This can happen when trying to send back an object with a BigInt for example. Azle has created a special function called jsonStringify that will serialize many ICP-specific data structures to JSON for you: import { jsonStringify } from 'azle';\nimport express, { Request } from 'express'; let db = { bigInt: 0n\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.send(jsonStringify(db));\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.send(jsonStringify(db));\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » jsonStringify","id":"16","title":"jsonStringify"},"160":{"body":"The CandidType object Principal corresponds to the Candid type principal , is inferred to be a TypeScript @dfinity/principal Principal, and will be decoded into an @dfinity/principal Principal at runtime. TypeScript or JavaScript: import { Canister, Principal, query } from 'azle'; export default Canister({ getPrincipal: query([], Principal, () => { return Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'); }), printPrincipal: query([Principal], Principal, (principal) => { console.log(typeof principal); return principal; })\n}); Candid: service : () -> { getPrincipal : () -> (principal) query; printPrincipal : (principal) -> (principal) query;\n} dfx: dfx canister call candid_canister printPrincipal '(principal \"rrkah-fqaaa-aaaaa-aaaaq-cai\")'\n(principal \"rrkah-fqaaa-aaaaa-aaaaq-cai\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » principal » principal","id":"160","title":"principal"},"161":{"body":"Objects created by the CandidType function Record correspond to the Candid record type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The shape of the object will match the object literal passed to the Record function. TypeScript or JavaScript: import { Canister, Principal, query, Record, text } from 'azle'; const User = Record({ id: Principal, username: text\n}); export default Canister({ getUser: query([], User, () => { return { id: Principal.fromUint8Array(Uint8Array.from([0])), username: 'lastmjs' }; }), printUser: query([User], User, (user) => { console.log(typeof user); return user; })\n}); Candid: type User = record { id : principal; username : text };\nservice : () -> { getUser : () -> (User) query; printUser : (User) -> (User) query;\n} dfx: dfx canister call candid_canister printUser '(record { id = principal \"2ibo7-dia\"; username = \"lastmjs\" })'\n(record { id = principal \"2ibo7-dia\"; username = \"lastmjs\" })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » record » record","id":"161","title":"record"},"162":{"body":"The CandidType object reserved corresponds to the Candid type reserved , is inferred to be a TypeScript any, and will be decoded into a JavaScript null at runtime. TypeScript or JavaScript: import { Canister, query, reserved } from 'azle'; export default Canister({ getReserved: query([], reserved, () => { return 'anything'; }), printReserved: query([reserved], reserved, (reserved) => { console.log(typeof reserved); return reserved; })\n}); Candid: service : () -> { getReserved : () -> (reserved) query; printReserved : (reserved) -> (reserved) query;\n} dfx: dfx canister call candid_canister printReserved '(null)'\n(null : reserved)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » reserved » reserved","id":"162","title":"reserved"},"163":{"body":"Values created by the CandidType function Canister correspond to the Candid service type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The properties of this object that match the keys of the service's query and update methods can be passed into ic.call and ic.notify to perform cross-canister calls. TypeScript or JavaScript: import { bool, Canister, ic, Principal, query, text, update } from 'azle'; const SomeCanister = Canister({ query1: query([], bool), update1: update([], text)\n}); export default Canister({ getService: query([], SomeCanister, () => { return SomeCanister(Principal.fromText('aaaaa-aa')); }), callService: update([SomeCanister], text, (service) => { return ic.call(service.update1); })\n}); Candid: type ManualReply = variant { Ok : text; Err : text };\nservice : () -> { callService : ( service { query1 : () -> (bool) query; update1 : () -> (text) }, ) -> (ManualReply); getService : () -> ( service { query1 : () -> (bool) query; update1 : () -> (text) }, ) query;\n} dfx: dfx canister call candid_canister getService\n(service \"aaaaa-aa\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » service » service","id":"163","title":"service"},"164":{"body":"The CandidType object text corresponds to the Candid type text , is inferred to be a TypeScript string, and will be decoded into a JavaScript String at runtime. TypeScript or JavaScript: import { Canister, query, text } from 'azle'; export default Canister({ getString: query([], text, () => { return 'Hello world!'; }), printString: query([text], text, (string) => { console.log(typeof string); return string; })\n}); Candid: service : () -> { getString : () -> (text) query; printString : (text) -> (text) query;\n} dfx: dfx canister call candid_canister printString '(\"Hello world!\")'\n(\"Hello world!\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » text » text","id":"164","title":"text"},"165":{"body":"Objects created by the CandidType function Variant correspond to the Candid variant type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The shape of the object will match the object literal passed to the Variant function, however it will contain only one of the enumerated properties. TypeScript or JavaScript: import { Canister, Null, query, Variant } from 'azle'; const Emotion = Variant({ Happy: Null, Indifferent: Null, Sad: Null\n}); const Reaction = Variant({ Fire: Null, ThumbsUp: Null, Emotion: Emotion\n}); export default Canister({ getReaction: query([], Reaction, () => { return { Fire: null }; }), printReaction: query([Reaction], Reaction, (reaction) => { console.log(typeof reaction); return reaction; })\n}); Candid: type Emotion = variant { Sad; Indifferent; Happy };\ntype Reaction = variant { Emotion : Emotion; Fire; ThumbsUp };\nservice : () -> { getReaction : () -> (Reaction) query; printReaction : (Reaction) -> (Reaction) query;\n} dfx: dfx canister call candid_canister printReaction '(variant { Fire })'\n(variant { Fire })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » variant » variant","id":"165","title":"variant"},"166":{"body":"The CandidType object Vec corresponds to the Candid type vec , is inferred to be a TypeScript T[], and will be decoded into a JavaScript array of the specified type at runtime (except for Vec which will become a Uint8Array, thus it is recommended to use the blob type instead of Vec). TypeScript or JavaScript: import { Canister, int32, Vec, query } from 'azle'; export default Canister({ getNumbers: query([], Vec(int32), () => { return [0, 1, 2, 3]; }), printNumbers: query([Vec(int32)], Vec(int32), (numbers) => { console.log(typeof numbers); return numbers; })\n}); Candid: service : () -> { getNumbers : () -> (vec int32) query; printNumbers : (vec int32) -> (vec int32) query;\n} dfx: dfx canister call candid_canister printNumbers '(vec { 0 : int32; 1 : int32; 2 : int32; 3 : int32 })'\n(vec { 0 : int32; 1 : int32; 2 : int32; 3 : int32 })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » vec » vec","id":"166","title":"vec"},"167":{"body":"candid decode candid encode canister balance canister balance 128 canister version canister id data certificate instruction counter is controller performance counter print set certified data time trap","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » Canister APIs","id":"167","title":"Canister APIs"},"168":{"body":"This section is a work in progress. Examples: call_raw candid_encoding import { blob, Canister, ic, query, text } from 'azle'; export default Canister({ // decodes Candid bytes to a Candid string candidDecode: query([blob], text, (candidEncoded) => { return ic.candidDecode(candidEncoded); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » candid decode » candid decode","id":"168","title":"candid decode"},"169":{"body":"This section is a work in progress. Examples: call_raw candid_encoding manual_reply notify_raw outgoing_http_requests import { blob, Canister, ic, query, text } from 'azle'; export default Canister({ // encodes a Candid string to Candid bytes candidEncode: query([text], blob, (candidString) => { return ic.candidEncode(candidString); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » candid encode » candid encode","id":"169","title":"candid encode"},"17":{"body":"If you need to add canister methods to your HTTP server, the Server function imported from azle allows you to do so. Here's an example of a very simple HTTP server: import { Server } from 'azle';\nimport express from 'express'; export default Server(() => { const app = express(); app.get('/http-query', (_req, res) => { res.send('http-query-server'); }); app.post('/http-update', (_req, res) => { res.send('http-update-server'); }); return app.listen();\n}); You can add canister methods like this: import { query, Server, text, update } from 'azle';\nimport express from 'express'; export default Server( () => { const app = express(); app.get('/http-query', (_req, res) => { res.send('http-query-server'); }); app.post('/http-update', (_req, res) => { res.send('http-update-server'); }); return app.listen(); }, { candidQuery: query([], text, () => { return 'candidQueryServer'; }), candidUpdate: update([], text, () => { return 'candidUpdateServer'; }) }\n); The default export of your main module must be the result of calling Server, and the callback argument to Server must return a Node.js http.Server . The main module is specified by the main property of your project's dfx.json file . The dfx.json file must be at the root directory of your project. The callback argument to Server can be asynchronous: import { Server } from 'azle';\nimport { createServer } from 'http'; export default Server(async () => { const message = await asynchronousHelloWorld(); return createServer((req, res) => { res.write(message); res.end(); });\n}); async function asynchronousHelloWorld() { // do some asynchronous task return 'Hello World Asynchronous!';\n}","breadcrumbs":"Servers » Server","id":"17","title":"Server"},"170":{"body":"This section is a work in progress. Examples: cycles ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the amount of cycles available in the canister canisterBalance: query([], nat64, () => { return ic.canisterBalance(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister balance » canister balance","id":"170","title":"canister balance"},"171":{"body":"This section is a work in progress. Examples: cycles ic_api import { Canister, ic, nat, query } from 'azle'; export default Canister({ // returns the amount of cycles available in the canister canisterBalance128: query([], nat, () => { return ic.canisterBalance128(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister balance 128 » canister balance 128","id":"171","title":"canister balance 128"},"172":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the canister's version number canisterVersion: query([], nat64, () => { return ic.canisterVersion(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister version » canister version","id":"172","title":"canister version"},"173":{"body":"This section is a work in progress. Examples: ethereum_json_rpc ic_api http_counter outgoing_http_requests whoami import { Canister, ic, Principal, query } from 'azle'; export default Canister({ // returns this canister's id id: query([], Principal, () => { return ic.id(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister id » canister id","id":"173","title":"canister id"},"174":{"body":"This section is a work in progress. Examples: ic_api import { blob, Canister, ic, Opt, query } from 'azle'; export default Canister({ // When called from a query call, returns the data certificate // authenticating certified_data set by this canister. Returns None if not // called from a query call. dataCertificate: query([], Opt(blob), () => { return ic.dataCertificate(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » data certificate » data certificate","id":"174","title":"data certificate"},"175":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // Returns the number of instructions that the canister executed since the // last entry point. instructionCounter: query([], nat64, () => { return ic.instructionCounter(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » instruction counter » instruction counter","id":"175","title":"instruction counter"},"176":{"body":"This section is a work in progress. Examples: ic_api import { bool, Canister, ic, Principal, query } from 'azle'; export default Canister({ // determines whether the given principal is a controller of the canister isController: query([Principal], bool, (principal) => { return ic.isController(principal); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » is controller » is controller","id":"176","title":"is controller"},"177":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ performanceCounter: query([], nat64, () => { return ic.performanceCounter(0); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » performance counter » performance counter","id":"177","title":"performance counter"},"178":{"body":"This section is a work in progress. Examples: ic_api null_example import { bool, Canister, ic, query, text } from 'azle'; export default Canister({ // prints a message through the local replica's output print: query([text], bool, (message) => { ic.print(message); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » print » print","id":"178","title":"print"},"179":{"body":"This section is a work in progress. Examples: ic_api import { blob, Canister, ic, update, Void } from 'azle'; export default Canister({ // sets up to 32 bytes of certified data setCertifiedData: update([blob], Void, (data) => { ic.setCertifiedData(data); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » set certified data » set certified data","id":"179","title":"set certified data"},"18":{"body":"For a deeper understanding of possible limitations you may want to refer to The HTTP Gateway Protocol Specification . The top-level route /api is currently reserved by the replica locally The Transfer-Encoding header is not supported gzip responses most likely do not work HTTP requests are generally limited to ~2 MiB HTTP responses are generally limited to ~3 MiB You cannot set HTTP status codes in the 1xx range","breadcrumbs":"Servers » Limitations","id":"18","title":"Limitations"},"180":{"body":"This section is a work in progress. Examples: audio_recorder ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the current timestamp time: query([], nat64, () => { return ic.time(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » time » time","id":"180","title":"time"},"181":{"body":"This section is a work in progress. Examples: cross_canister_calls ethereum_json_rpc http_counter ic_api outgoing_http_requests threshold_ecdsa import { bool, Canister, ic, query, text } from 'azle'; export default Canister({ // traps with a message, stopping execution and discarding all state within the call trap: query([text], bool, (message) => { ic.trap(message); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » trap » trap","id":"181","title":"trap"},"182":{"body":"heartbeat http_request http_request_update init inspect message post upgrade pre upgrade query update","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » Canister Methods","id":"182","title":"Canister Methods"},"183":{"body":"This section is a work in progress. Examples: heartbeat run_time_errors import { Canister, heartbeat } from 'azle'; export default Canister({ heartbeat: heartbeat(() => { console.log('this runs ~1 time per second'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » heartbeat » heartbeat","id":"183","title":"heartbeat"},"184":{"body":"This section is a work in progress. Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, query, Record, text, Tuple, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request: query([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » http_request » http_request","id":"184","title":"http_request"},"185":{"body":"This section is a work in progress. Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, Record, text, Tuple, update, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request_update: update([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » http_request_update » http_request","id":"185","title":"http_request"},"186":{"body":"This section is a work in progress. Examples: ethereum_json_rpc func_types init persistent-storage pre_and_post_upgrade whoami import { Canister, init } from 'azle'; export default Canister({ init: init([], () => { console.log('This runs once when the canister is first initialized'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » init » init","id":"186","title":"init"},"187":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { bool, Canister, ic, inspectMessage, update } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { console.log('inspectMessage called'); if (ic.methodName() === 'accessible') { ic.acceptMessage(); return; } if (ic.methodName() === 'inaccessible') { return; } throw `Method \"${ic.methodName()}\" not allowed`; }), accessible: update([], bool, () => { return true; }), inaccessible: update([], bool, () => { return false; }), alsoInaccessible: update([], bool, () => { return false; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » inspect message » inspect message","id":"187","title":"inspect message"},"188":{"body":"This section is a work in progress. Examples: pre_and_post_upgrade whoami import { Canister, postUpgrade } from 'azle'; export default Canister({ postUpgrade: postUpgrade([], () => { console.log('This runs after every canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » post upgrade » post upgrade","id":"188","title":"post upgrade"},"189":{"body":"This section is a work in progress. Examples: pre_and_post_upgrade import { Canister, preUpgrade } from 'azle'; export default Canister({ preUpgrade: preUpgrade(() => { console.log('This runs before every canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » pre upgrade » pre upgrade","id":"189","title":"pre upgrade"},"19":{"body":"You can automatically copy static assets (essentially files and folders) into your canister's filesystem during deploy by using the assets, assets_large and build_assets properties of the canister object in your project's dfx.json file. Here's an example that copies the src/frontend/dist directory on the deploying machine into the dist directory of the canister, using the assets and build_assets properties: { \"canisters\": { \"backend\": { \"type\": \"custom\", \"main\": \"src/backend/index.ts\", \"candid\": \"src/backend/index.did\", \"candid_gen\": \"http\", \"build\": \"npx azle backend\", \"wasm\": \".azle/backend/backend.wasm\", \"gzip\": true, \"assets\": [[\"src/frontend/dist\", \"dist\"]], \"build_assets\": \"npm run build\", \"metadata\": [ { \"name\": \"candid:service\", \"path\": \"src/backend/index.did\" }, { \"name\": \"cdk:name\", \"content\": \"azle\" } ] } }\n} The assets property is an array of tuples, where the first element of the tuple is the source directory on the deploying machine, and the second element of the tuple is the destination directory in the canister. Use assets for total assets under ~90 MiB in size. The build_assets property allows you to specify custom terminal commands that will run before Azle copies the assets into the canister. You can use build_assets to build your frontend code for example. In this case we are running npm run build, which refers to an npm script that we have specified in our package.json file. There is also an assets_large property that works similarly to the assets property, but allows for total assets up to ~2 GiB in size. We are working on increasing this limit further. Once you have loaded assets into your canister, they are accessible from that canister's filesystem. Here's an example of using the Express static middleware to serve a frontend from the canister's filesystem: import express from 'express'; const app = express(); app.use(express.static('/dist')); app.listen(); Assuming the /dist directory in the canister has an appropriate index.html file, this canister would serve a frontend at its URL when loaded in a web browser.","breadcrumbs":"Assets » Assets TL;DR","id":"19","title":"Assets TL;DR"},"190":{"body":"This section is a work in progress. import { Canister, query, text } from 'azle'; export default Canister({ simpleQuery: query([], text, () => { return 'This is a query method'; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » query » query","id":"190","title":"query"},"191":{"body":"This section is a work in progress. import { Canister, query, text, update, Void } from 'azle'; let message = ''; export default Canister({ getMessage: query([], text, () => { return message; }), setMessage: update([text], Void, (newMessage) => { message = newMessage; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » update » update","id":"191","title":"update"},"192":{"body":"You can provide environment variables to Azle canisters by specifying their names in your dfx.json file and then using the process.env object in Azle. Be aware that the environment variables that you specify in your dfx.json file will be included in plain text in your canister's Wasm binary.","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » Environment Variables","id":"192","title":"Environment Variables"},"193":{"body":"Modify your dfx.json file with the env property to specify which environment variables you would like included in your Azle canister's binary. In this case, CANISTER1_PRINCIPAL and CANISTER2_PRINCIPAL will be included: { \"canisters\": { \"canister1\": { \"type\": \"custom\", \"main\": \"src/canister1/index.ts\", \"build\": \"npx azle canister1\", \"candid\": \"src/canister1/index.did\", \"wasm\": \".azle/canister1/canister1.wasm\", \"gzip\": true, \"declarations\": { \"output\": \"test/dfx_generated/canister1\", \"node_compatibility\": true }, \"env\": [\"CANISTER1_PRINCIPAL\", \"CANISTER2_PRINCIPAL\"] } }\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » dfx.json","id":"193","title":"dfx.json"},"194":{"body":"You can access the specified environment variables in Azle like so: import { Canister, query, text } from 'azle'; export default Canister({ canister1PrincipalEnvVar: query([], text, () => { return ( process.env.CANISTER1_PRINCIPAL ?? 'process.env.CANISTER1_PRINCIPAL is undefined' ); }), canister2PrincipalEnvVar: query([], text, () => { return ( process.env.CANISTER2_PRINCIPAL ?? 'process.env.CANISTER2_PRINCIPAL is undefined' ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » process.env","id":"194","title":"process.env"},"195":{"body":"bitcoin_get_balance bitcoin_get_current_fee_percentiles bitcoin_get_utxos bitcoin_send_transaction canister_info canister_status create_canister delete_canister deposit_cycles ecdsa_public_key http_request install_code provisional_create_canister_with_cycles provisional_top_up_canister raw_rand sign_with_ecdsa start_canister stop_canister uninstall_code update_settings","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » Management Canister","id":"195","title":"Management Canister"},"196":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, None, text, update } from 'azle';\nimport { managementCanister, Satoshi } from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getBalance: update([text], Satoshi, async (address) => { return await ic.call(managementCanister.bitcoin_get_balance, { args: [ { address, min_confirmations: None, network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_balance » bitcoin_get_balance","id":"196","title":"bitcoin_get_balance"},"197":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, update, Vec } from 'azle';\nimport { managementCanister, MillisatoshiPerByte\n} from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getCurrentFeePercentiles: update([], Vec(MillisatoshiPerByte), async () => { return await ic.call( managementCanister.bitcoin_get_current_fee_percentiles, { args: [ { network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST } ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_current_fee_percentiles » bitcoin_get_current_fee_percentiles","id":"197","title":"bitcoin_get_current_fee_percentiles"},"198":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, None, text, update } from 'azle';\nimport { GetUtxosResult, managementCanister } from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getUtxos: update([text], GetUtxosResult, async (address) => { return await ic.call(managementCanister.bitcoin_get_utxos, { args: [ { address, filter: None, network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_utxos » bitcoin_get_utxos","id":"198","title":"bitcoin_get_utxos"},"199":{"body":"This section is a work in progress. Examples: import { blob, bool, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const BITCOIN_BASE_TRANSACTION_COST = 5_000_000_000n;\nconst BITCOIN_CYCLE_COST_PER_TRANSACTION_BYTE = 20_000_000n; export default Canister({ sendTransaction: update([blob], bool, async (transaction) => { const transactionFee = BITCOIN_BASE_TRANSACTION_COST + BigInt(transaction.length) * BITCOIN_CYCLE_COST_PER_TRANSACTION_BYTE; await ic.call(managementCanister.bitcoin_send_transaction, { args: [ { transaction, network: { Regtest: null } } ], cycles: transactionFee }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_send_transaction » bitcoin_send_transaction","id":"199","title":"bitcoin_send_transaction"},"2":{"body":"Windows is only supported through a Linux virtual environment of some kind, such as WSL On Ubuntu/WSL: sudo apt-get install podman On Mac: brew install podman It's recommended to use nvm and Node.js 20: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash Restart your terminal and then run: nvm install 20 Check that the installation went smoothly by looking for clean output from the following command: node --version Install the dfx command line tools for managing ICP applications: DFX_VERSION=0.19.0 sh -ci \"$(curl -fsSL https://sdk.dfinity.org/install.sh)\" Check that the installation went smoothly by looking for clean output from the following command: dfx --version If after trying to run dfx --version you encounter an error such as dfx: command not found, you might need to add $HOME/bin to your path. Here's an example of doing this in your .bashrc: echo 'export PATH=\"$PATH:$HOME/bin\"' >> \"$HOME/.bashrc\"","breadcrumbs":"Get Started » Installation","id":"2","title":"Installation"},"20":{"body":"Azle canisters can import ic from azle and use ic.caller() to get the principal (public-key linked identifier) of the initiator of an HTTP request. HTTP requests are anonymous (principal 2vxsx-fae) by default, but authentication with web browsers (and maybe Node.js) can be done using a JWT-like API from azle/http_client. First you import toJwt from azle/http_client: import { toJwt } from 'azle/http_client'; Then you use fetch and construct an Authorization header using an @dfinity/agent Identity: const response = await fetch( `http://bkyz2-fmaaa-aaaaa-qaaaq-cai.localhost:8000/whoami`, { method: 'GET', headers: [['Authorization', toJwt(this.identity)]] }\n); Here's an example of the frontend of a simple web application using azle/http_client and Internet Identity : import { Identity } from '@dfinity/agent';\nimport { AuthClient } from '@dfinity/auth-client';\nimport { toJwt } from 'azle/http_client';\nimport { html, LitElement } from 'lit';\nimport { customElement, property } from 'lit/decorators.js'; @customElement('azle-app')\nexport class AzleApp extends LitElement { @property() identity: Identity | null = null; @property() whoami: string = ''; connectedCallback() { super.connectedCallback(); this.authenticate(); } async authenticate() { const authClient = await AuthClient.create(); const isAuthenticated = await authClient.isAuthenticated(); if (isAuthenticated === true) { this.handleIsAuthenticated(authClient); } else { await this.handleIsNotAuthenticated(authClient); } } handleIsAuthenticated(authClient: AuthClient) { this.identity = authClient.getIdentity(); } async handleIsNotAuthenticated(authClient: AuthClient) { await new Promise((resolve, reject) => { authClient.login({ identityProvider: import.meta.env.VITE_IDENTITY_PROVIDER, onSuccess: resolve as () => void, onError: reject, windowOpenerFeatures: `width=500,height=500` }); }); this.identity = authClient.getIdentity(); } async whoamiUnauthenticated() { const response = await fetch( `${import.meta.env.VITE_CANISTER_ORIGIN}/whoami` ); const responseText = await response.text(); this.whoami = responseText; } async whoamiAuthenticated() { const response = await fetch( `${import.meta.env.VITE_CANISTER_ORIGIN}/whoami`, { method: 'GET', headers: [['Authorization', toJwt(this.identity)]] } ); const responseText = await response.text(); this.whoami = responseText; } render() { return html`

Internet Identity

Whoami principal: ${this.whoami}

`; }\n} Here's an example of the backend of that same simple web application: import { ic } from 'azle';\nimport express from 'express'; const app = express(); app.get('/whoami', (req, res) => { res.send(ic.caller().toString());\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Authentication » Authentication TL;DR","id":"20","title":"Authentication TL;DR"},"200":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, update } from 'azle';\nimport { CanisterStatusArgs, CanisterStatusResult, managementCanister\n} from 'azle/canisters/management'; export default Canister({ getCanisterStatus: update( [CanisterStatusArgs], CanisterStatusResult, async (args) => { return await ic.call(managementCanister.canister_status, { args: [args] }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » canister_status » canister_status","id":"200","title":"canister_status"},"201":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, None, update } from 'azle';\nimport { CreateCanisterResult, managementCanister\n} from 'azle/canisters/management'; export default Canister({ executeCreateCanister: update([], CreateCanisterResult, async () => { return await ic.call(managementCanister.create_canister, { args: [{ settings: None }], cycles: 50_000_000_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » create_canister » create_canister","id":"201","title":"create_canister"},"202":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeDeleteCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.delete_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » delete_canister » delete_canister","id":"202","title":"delete_canister"},"203":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeDepositCycles: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.deposit_cycles, { args: [ { canister_id: canisterId } ], cycles: 10_000_000n }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » deposit_cycles » deposit_cycles","id":"203","title":"deposit_cycles"},"204":{"body":"This section is a work in progress. Examples: threshold_ecdsa import { blob, Canister, ic, None, Record, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const PublicKey = Record({ publicKey: blob\n}); export default Canister({ publicKey: update([], PublicKey, async () => { const caller = ic.caller().toUint8Array(); const publicKeyResult = await ic.call( managementCanister.ecdsa_public_key, { args: [ { canister_id: None, derivation_path: [caller], key_id: { curve: { secp256k1: null }, name: 'dfx_test_key' } } ] } ); return { publicKey: publicKeyResult.public_key }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » ecdsa_public_key » ecdsa_public_key","id":"204","title":"ecdsa_public_key"},"205":{"body":"This section is a work in progress. Examples: ethereum_json_rpc outgoing_http_requests import { Canister, ic, None, Principal, query, Some, update } from 'azle';\nimport { HttpResponse, HttpTransformArgs, managementCanister\n} from 'azle/canisters/management'; export default Canister({ xkcd: update([], HttpResponse, async () => { return await ic.call(managementCanister.http_request, { args: [ { url: `https://xkcd.com/642/info.0.json`, max_response_bytes: Some(2_000n), method: { get: null }, headers: [], body: None, transform: Some({ function: [ic.id(), 'xkcdTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); }), xkcdTransform: query([HttpTransformArgs], HttpResponse, (args) => { return { ...args.response, headers: [] }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » http_request » http_request","id":"205","title":"http_request"},"206":{"body":"This section is a work in progress. Examples: management_canister import { blob, bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], bool, async (canisterId, wasmModule) => { await ic.call(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); return true; } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » install_code » install_code","id":"206","title":"install_code"},"207":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, None, update } from 'azle';\nimport { managementCanister, ProvisionalCreateCanisterWithCyclesResult\n} from 'azle/canisters/management'; export default Canister({ provisionalCreateCanisterWithCycles: update( [], ProvisionalCreateCanisterWithCyclesResult, async () => { return await ic.call( managementCanister.provisional_create_canister_with_cycles, { args: [ { amount: None, settings: None } ] } ); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » provisional_create_canister_with_cycles » provisional_create_canister_with_cycles","id":"207","title":"provisional_create_canister_with_cycles"},"208":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, nat, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ provisionalTopUpCanister: update( [Principal, nat], bool, async (canisterId, amount) => { await ic.call(managementCanister.provisional_top_up_canister, { args: [ { canister_id: canisterId, amount } ] }); return true; } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » provisional_top_up_canister » provisional_top_up_canister","id":"208","title":"provisional_top_up_canister"},"209":{"body":"This section is a work in progress. Examples: async/await heartbeat management_canister timers import { blob, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ getRawRand: update([], blob, async () => { return await ic.call(managementCanister.raw_rand); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » raw_rand » raw_rand","id":"209","title":"raw_rand"},"21":{"body":"Examples: ckbtc fetch_ic internet_identity","breadcrumbs":"Authentication » Authentication","id":"21","title":"Authentication"},"210":{"body":"This section is a work in progress. Examples: threshold_ecdsa import { blob, Canister, ic, Record, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const Signature = Record({ signature: blob\n}); export default Canister({ sign: update([blob], Signature, async (messageHash) => { if (messageHash.length !== 32) { ic.trap('messageHash must be 32 bytes'); } const caller = ic.caller().toUint8Array(); const signatureResult = await ic.call( managementCanister.sign_with_ecdsa, { args: [ { message_hash: messageHash, derivation_path: [caller], key_id: { curve: { secp256k1: null }, name: 'dfx_test_key' } } ], cycles: 10_000_000_000n } ); return { signature: signatureResult.signature }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » sign_with_ecdsa » sign_with_ecdsa","id":"210","title":"sign_with_ecdsa"},"211":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeStartCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.start_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » start_canister » start_canister","id":"211","title":"start_canister"},"212":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeStopCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.stop_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » stop_canister » stop_canister","id":"212","title":"stop_canister"},"213":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeUninstallCode: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.uninstall_code, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » uninstall_code » uninstall_code","id":"213","title":"uninstall_code"},"214":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, None, Principal, Some, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeUpdateSettings: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.update_settings, { args: [ { canister_id: canisterId, settings: { controllers: None, compute_allocation: Some(1n), memory_allocation: Some(3_000_000n), freezing_threshold: Some(2_000_000n) } } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » update_settings » update_settings","id":"214","title":"update_settings"},"215":{"body":"Azle plugins allow developers to wrap Rust code in TypeScript/JavaScript APIs that can then be exposed to Azle canisters, providing a clean and simple developer experience with the underlying Rust code. Plugins are in a very early alpha state. You can create and use them now, but be aware that the API will be changing significantly in the near future. You can use the following example plugins as you create your own plugins:","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » Plugins","id":"215","title":"Plugins"},"216":{"body":"If you just want to create a plugin in the same repo as your project, see the plugins example .","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » Local plugin","id":"216","title":"Local plugin"},"217":{"body":"If you want to create a plugin that can be published and/or used with npm, see the ic-sqlite-plugin example .","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » npm plugin","id":"217","title":"npm plugin"},"218":{"body":"stable structures stable bytes stable grow stable read stable size stable write stable64 grow stable64 read stable64 size stable64 write","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » Stable Memory","id":"218","title":"Stable Memory"},"219":{"body":"This section is a work in progress. Examples: audio_recorder ethereum_json_rpc func_types http_counter inline_types persistent-storage pre_and_post_upgrade stable_structures import { bool, Canister, nat64, nat8, Opt, query, StableBTreeMap, text, Tuple, update, Vec\n} from 'azle'; const Key = nat8;\ntype Key = typeof Key.tsType; const Value = text;\ntype Value = typeof Value.tsType; let map = StableBTreeMap(0); export default Canister({ containsKey: query([Key], bool, (key) => { return map.containsKey(key); }), get: query([Key], Opt(Value), (key) => { return map.get(key); }), insert: update([Key, Value], Opt(Value), (key, value) => { return map.insert(key, value); }), isEmpty: query([], bool, () => { return map.isEmpty(); }), items: query([], Vec(Tuple(Key, Value)), () => { return map.items(); }), keys: query([], Vec(Key), () => { return Uint8Array.from(map.keys()); }), len: query([], nat64, () => { return map.len(); }), remove: update([Key], Opt(Value), (key) => { return map.remove(key); }), values: query([], Vec(Value), () => { return map.values(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable structures » stable structures","id":"219","title":"stable structures"},"22":{"body":"Authentication of ICP calls is done through signatures on messages. @dfinity/agent provides very nice abstractions for creating all of the required signatures in the correct formats when calling into canisters on ICP. Unfortunately this requires you to abandon traditional HTTP requests, as you must use the agent's APIs. Azle attempts to enable you to perform traditional HTTP requests with traditional libraries. Currently Azle focuses on fetch. When importing toJwt, azle/http_client will overwrite the global fetch function and will intercept fetch requests that have Authorization headers with an Identity as a value. Once intercepted, these requests are turned into @dfinity/agent requests that call the http_request and http_request_update canister methods directly, thus performing all of the required client-side authentication work. We are working to push for ICP to more natively understand JWTs for authentication, without the need to intercept fetch requests and convert them into agent requests.","breadcrumbs":"Authentication » Under-the-hood","id":"22","title":"Under-the-hood"},"220":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, query } from 'azle'; export default Canister({ stableBytes: query([], blob, () => { return ic.stableBytes(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable bytes » stable bytes","id":"220","title":"stable bytes"},"221":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat32, update } from 'azle'; export default Canister({ stableGrow: update([nat32], nat32, (newPages) => { return ic.stableGrow(newPages); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable grow » stable grow","id":"221","title":"stable grow"},"222":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat32, query } from 'azle'; export default Canister({ stableRead: query([nat32, nat32], blob, (offset, length) => { return ic.stableRead(offset, length); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable read » stable read","id":"222","title":"stable read"},"223":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat32, query } from 'azle'; export default Canister({ stableSize: query([], nat32, () => { return ic.stableSize(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable size » stable size","id":"223","title":"stable size"},"224":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat32, update, Void } from 'azle'; export default Canister({ stableWrite: update([nat32, blob], Void, (offset, buf) => { ic.stableWrite(offset, buf); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable write » stable write","id":"224","title":"stable write"},"225":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat64, update } from 'azle'; export default Canister({ stable64Grow: update([nat64], nat64, (newPages) => { return ic.stable64Grow(newPages); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 grow » stable64 grow","id":"225","title":"stable64 grow"},"226":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat64, query } from 'azle'; export default Canister({ stable64Read: query([nat64, nat64], blob, (offset, length) => { return ic.stable64Read(offset, length); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 read » stable64 read","id":"226","title":"stable64 read"},"227":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat64, query } from 'azle'; export default Canister({ stable64Size: query([], nat64, () => { return ic.stable64Size(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 size » stable64 size","id":"227","title":"stable64 size"},"228":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat64, update, Void } from 'azle'; export default Canister({ stable64Write: update([nat64, blob], Void, (offset, buf) => { ic.stable64Write(offset, buf); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 write » stable64 write","id":"228","title":"stable64 write"},"229":{"body":"clear timer set timer set timer interval","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » Timers","id":"229","title":"Timers"},"23":{"body":"Azle canisters use a custom fetch implementation to perform cross-canister calls and to perform HTTPS outcalls. Here's an example of performing a cross-canister call: import { serialize } from 'azle';\nimport express from 'express'; const app = express(); app.use(express.json()); app.post('/cross-canister-call', async (req, res) => { const to: string = req.body.to; const amount: number = req.body.amount; const response = await fetch(`icp://dfdal-2uaaa-aaaaa-qaama-cai/transfer`, { body: serialize({ candidPath: '/token.did', args: [to, amount] }) }); const responseJson = await response.json(); res.json(responseJson);\n}); app.listen(); Keep these important points in mind when performing a cross-canister call: Use the icp:// protocol in the URL The canister id of the canister that you are calling immediately follows icp:// in the URL The canister method that you are calling immediately follows the canister id in the URL The candidPath property of the body is the path to the Candid file defining the method signatures of the canister that you are calling. You must obtain this file and copy it into your canister. See the Assets chapter for info on copying files into your canister The args property of the body is an array of the arguments that will be passed to the canister method that you are calling Here's an example of performing an HTTPS outcall: import express from 'express'; const app = express(); app.use(express.json()); app.post('/https-outcall', async (_req, res) => { const response = await fetch(`https://httpbin.org/headers`, { headers: { 'X-Azle-Request-Key-0': 'X-Azle-Request-Value-0', 'X-Azle-Request-Key-1': 'X-Azle-Request-Value-1', 'X-Azle-Request-Key-2': 'X-Azle-Request-Value-2' } }); const responseJson = await response.json(); res.json(responseJson);\n}); app.listen();","breadcrumbs":"fetch » fetch TL;DR","id":"23","title":"fetch TL;DR"},"230":{"body":"This section is a work in progress. Examples: timers import { Canister, ic, TimerId, update, Void } from 'azle'; export default Canister({ clearTimer: update([TimerId], Void, (timerId) => { ic.clearTimer(timerId); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » clear timer » clear timer","id":"230","title":"clear timer"},"231":{"body":"This section is a work in progress. Examples: timers import { Canister, Duration, ic, TimerId, Tuple, update } from 'azle'; export default Canister({ setTimers: update([Duration], Tuple(TimerId, TimerId), (delay) => { const functionTimerId = ic.setTimer(delay, callback); const capturedValue = '🚩'; const closureTimerId = ic.setTimer(delay, () => { console.log(`closure called and captured value ${capturedValue}`); }); return [functionTimerId, closureTimerId]; })\n}); function callback() { console.log('callback called');\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » set timer » set timer","id":"231","title":"set timer"},"232":{"body":"This section is a work in progress. Examples: timers import { Canister, Duration, ic, TimerId, Tuple, update } from 'azle'; export default Canister({ setTimerIntervals: update( [Duration], Tuple(TimerId, TimerId), (interval) => { const functionTimerId = ic.setTimerInterval(interval, callback); const capturedValue = '🚩'; const closureTimerId = ic.setTimerInterval(interval, () => { console.log( `closure called and captured value ${capturedValue}` ); }); return [functionTimerId, closureTimerId]; } )\n}); function callback() { console.log('callback called');\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » set timer interval » set timer interval","id":"232","title":"set timer interval"},"233":{"body":"The IC currently limits Wasm binaries to a relatively small size of ~2MiB (with some caveats). You are likely to hit this limit as your Azle canisters grow in size. Azle provides some automatic optimizations to help you deal with this limit. It is hoped that the IC-imposed limit will be greatly increased sometime in 2023. To optimize the Wasm binary of an Azle canister, you can add the opt_level property to your dfx.json with the following options: \"0\", \"1\", \"2\", \"3\", or \"4\". \"0\" is the default option if opt_level is not specified. Each option is intended to reduce the size of your Wasm binary as the value increases. Each option is likely to take longer to compile than the previous option. It is recommended to start at \"1\" and increase only as necessary. Here's an example using opt_level \"1\": { \"canisters\": { \"hello_world\": { \"type\": \"custom\", \"main\": \"src/index.ts\", \"build\": \"npx azle hello_world\", \"candid\": \"src/index.did\", \"wasm\": \".azle/hello_world/hello_world.wasm.gz\", \"opt_level\": \"1\" } }\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Wasm Binary Optimization » Wasm Binary Optimization","id":"233","title":"Wasm Binary Optimization"},"24":{"body":"Azle has custom fetch implementations for clients and canisters. The client fetch is used for authentication, and you can learn more about it in the Authentication chapter . Canister fetch is used to perform cross-canister calls and HTTPS outcalls . There are three main types of calls made with canister fetch: Cross-canister calls to a candid canister Cross-canister calls to an HTTP canister HTTPS outcalls","breadcrumbs":"fetch » fetch","id":"24","title":"fetch"},"25":{"body":"Examples: async_await bitcoin canister ckbtc composite_queries cross_canister_calls cycles func_types heartbeat ic_evm_rpc icrc ledger_canister management_canister threshold_ecdsa whoami recursion rejections timers","breadcrumbs":"fetch » Cross-canister calls to a candid canister","id":"25","title":"Cross-canister calls to a candid canister"},"26":{"body":"We are working on better abstractions for these types of calls. For now you would just make a cross-canister call using icp:// to the http_request and http_request_update methods of the canister that you are calling.","breadcrumbs":"fetch » Cross-canister calls to an HTTP canister","id":"26","title":"Cross-canister calls to an HTTP canister"},"27":{"body":"Examples: ethereum_json_rpc http_outcall_fetch outgoing_http_requests","breadcrumbs":"fetch » HTTPS outcalls","id":"27","title":"HTTPS outcalls"},"28":{"body":"If your terminal logs ever say did not produce a response or response failed classification=Status code: 502 Bad Gateway, it most likely means that your canister has thrown an error and halted execution for that call. Use console.log and try/catch liberally to track down problems and reveal error information. If your error logs do not have useful messages, use try/catch with a console.log of the catch error argument to reveal the underlying error message.","breadcrumbs":"Debugging » Debugging TL;DR","id":"28","title":"Debugging TL;DR"},"29":{"body":"console.log and try/catch Canister did not produce a response No error message Final Compiled and Bundled JavaScript Azle currently has less-than-elegant error reporting. We hope to improve this significantly in the future. In the meantime, consider the following tips when trying to debug your application.","breadcrumbs":"Debugging » Debugging","id":"29","title":"Debugging"},"3":{"body":"npx azle new hello_world\ncd hello_world npm install dfx start --clean --host 127.0.0.1:8000 In a separate terminal in the hello_world directory: dfx deploy If you are building an HTTP-based canister and would like your canister to autoreload on file changes (DO NOT deploy to mainnet with autoreload enabled): AZLE_AUTORELOAD=true dfx deploy If you have problems deploying see Common deployment issues . View your frontend in a web browser at http://[canisterId].localhost:8000. To obtain your application's [canisterId]: dfx canister id backend Communicate with your canister using any HTTP client library, for example using curl: curl http://[canisterId].localhost:8000/db\ncurl -X POST -H \"Content-Type: application/json\" -d \"{ \\\"hello\\\": \\\"world\\\" }\" http://[canisterId].localhost:8000/db/update","breadcrumbs":"Get Started » Deployment","id":"3","title":"Deployment"},"30":{"body":"At the highest level, the most important tip is this: use console.log and try/catch liberally to track down problems and reveal error information.","breadcrumbs":"Debugging » console.log and try/catch","id":"30","title":"console.log and try/catch"},"31":{"body":"If you ever see an error that looks like this: Replica Error: reject code CanisterError, reject message IC0506: Canister bkyz2-fmaaa-aaaaa-qaaaq-cai did not produce a response, error code Some(\"IC0506\") or this: 2024-04-17T15:01:39.194377Z WARN icx_proxy_dev::proxy::agent: Replica Error\n2024-04-17T15:01:39.194565Z ERROR tower_http::trace::on_failure: response failed classification=Status code: 502 Bad Gateway latency=61 ms it most likely means that your canister has thrown an error and halted execution for that call. First check the replica's logs for any errors messages. If there are no useful error messages, use console.log and try/catch liberally to track down the source of the error and to reveal more information about the error. Don't be surprised if you need to console.log after each of your program's statements (including dependencies found in node_modules) to find out where the error is coming from. And don't be surprised if you need to use try/catch with a console.log of the catch error argument to reveal useful error messaging.","breadcrumbs":"Debugging » Canister did not produce a response","id":"31","title":"Canister did not produce a response"},"32":{"body":"You might find yourself in a situation where an error is reported without a useful message like this: \n\n\n\nError\n\n\n
    at <anonymous> (azle_main:110643)
   at handle (azle_main:73283)
   at next (azle_main:73452)
   at dispatch (azle_main:73432)
   at handle (azle_main:73283)
   at <anonymous> (azle_main:73655)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at expressInit (azle_main:73910)
   at handle (azle_main:73283)
   at trim_prefix (azle_main:73684)
   at <anonymous> (azle_main:73657)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at query3 (azle_main:73938)
   at handle (azle_main:73283)
   at trim_prefix (azle_main:73684)
   at <anonymous> (azle_main:73657)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at handle (azle_main:73587)
   at handle (azle_main:76233)
   at app2 (azle_main:78091)
   at call (native)
   at emitTwo (azle_main:9782)
   at emit2 (azle_main:10023)
   at httpHandler (azle_main:87618)
\n\n or like this: 2024-04-17 14:35:30.433501980 UTC: [Canister bkyz2-fmaaa-aaaaa-qaaaq-cai] \" at (azle_main:110643)\\n at handle (azle_main:73283)\\n at next (azle_main:73452)\\n at dispatch (azle_main:73432)\\n at handle (azle_main:73283)\\n at (azle_main:73655)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at expressInit (azle_main:73910)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at query3 (azle_main:73938)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at handle (azle_main:73587)\\n at handle (azle_main:76233)\\n at app2 (azle_main:78091)\\n at call (native)\\n at emitTwo (azle_main:9782)\\n at emit2 (azle_main:10023)\\n at httpHandler (azle_main:87618)\\n\"\n2024-04-17T14:35:31.983590Z ERROR tower_http::trace::on_failure: response failed classification=Status code: 500 Internal Server Error latency=101 ms\n2024-04-17 14:36:34.652587412 UTC: [Canister bkyz2-fmaaa-aaaaa-qaaaq-cai] \" at (azle_main:110643)\\n at handle (azle_main:73283)\\n at next (azle_main:73452)\\n at dispatch (azle_main:73432)\\n at handle (azle_main:73283)\\n at (azle_main:73655)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at expressInit (azle_main:73910)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at query3 (azle_main:73938)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at handle (azle_main:73587)\\n at handle (azle_main:76233)\\n at app2 (azle_main:78091)\\n at call (native)\\n at emitTwo (azle_main:9782)\\n at emit2 (azle_main:10023)\\n at httpHandler (azle_main:87618)\\n\" In these situations you might be able to use try/catch with a console.log of the catch error argument to reveal the underlying error message. For example, this code without a try/catch will log errors without the message This is the error text: import express from 'express'; const app = express(); app.get('/hello-world', (_req, res) => { throw new Error('This is the error text'); res.send('Hello World!');\n}); app.listen(); You can get the message to print in the replica terminal like this: import express from 'express'; const app = express(); app.get('/hello-world', (_req, res) => { try { throw new Error('This is the error text'); res.send('Hello World!'); } catch (error) { console.log(error); }\n}); app.listen();","breadcrumbs":"Debugging » No error message","id":"32","title":"No error message"},"33":{"body":"Azle compiles and bundles your TypeScript/JavaScript into a final JavaScript file to be included and executed inside of your canister. Inspecting this final JavaScript code may help you to debug your application. When you see something like (azle_main:110643) in your error stack traces, it is a reference to the final compiled and bundled JavaScript file that is actually deployed with and executed by the canister. The right-hand side of azle_main e.g. :110643 is the line number in that file. You can find the file at [project_name]/.azle/[canister_name]/canister/src/main.js. If you have the AZLE_AUTORELOAD environment variable set to true then you should instead look at [project_name]/.azle/[canister_name]/canister/src/main_reloaded.js","breadcrumbs":"Debugging » Final Compiled and Bundled JavaScript","id":"33","title":"Final Compiled and Bundled JavaScript"},"34":{"body":"There are a number of limitations that you are likely to run into while you develop with Azle on ICP. These are generally the most limiting: 5 billion instruction limit for query calls (HTTP GET requests) (~1 second of computation) 20 billion instruction limit for update calls (HTTP POST/etc requests) (~5 seconds of computation) 2 MiB request size limit 3 MiB response size limit 4 GiB heap limit High request latency relative to traditional web applications (think seconds not milliseconds) High costs relative to traditional web applications (think ~10x traditional web costs) Read more here for in-depth information on current ICP limitations.","breadcrumbs":"Limitations » Limitations TL;DR","id":"34","title":"Limitations TL;DR"},"35":{"body":"Autoreload Environment Variables Native Compilation","breadcrumbs":"Reference » Reference","id":"35","title":"Reference"},"36":{"body":"Deploying to mainnet with AZLE_AUTORELOAD=true will expose your canister to arbitrary untrusted JavaScript code execution You can turn on automatic reloading of your canister's final compiled JavaScript by using the AZLE_AUTORELOAD environment variable during deploy: AZLE_AUTORELOAD=true dfx deploy The autoreload feature watches all .ts and .js files recursively in the directory with your dfx.json file (the root directory of your project), excluding files found in .azle, .dfx, and node_modules. Autoreload only works properly if you do not change the methods of your canister. HTTP-based canisters will generally work well with autoreload as the query and update methods http_request and http_request_update will not need to change often. Candid-based canisters with explicit query and update methods may require manual deploys more often. Autoreload will not reload assets uploaded through the assets property of your dfx.json. It is extremely important to keep in mind that setting AZLE_AUTORELOAD=true will create an update method in your canister called reload_js that has no authorization built into it. If you deploy this to mainnet, anyone will be able to call this method and change the JavaScript of your canister.","breadcrumbs":"Reference » Autoreload » Autoreload","id":"36","title":"Autoreload"},"37":{"body":"AZLE_AUTORELOAD AZLE_DOCKERFILE_HASH AZLE_IDENTITY_STORAGE_MODE AZLE_INSTRUCTION_COUNT AZLE_PROPTEST_NUM_RUNS AZLE_PROPTEST_PATH AZLE_PROPTEST_QUIET AZLE_PROPTEST_SEED AZLE_PROPTEST_VERBOSE AZLE_TEST_FETCH AZLE_USE_DOCKERFILE AZLE_VERBOSE AZLE_WASMEDGE_QUICKJS_DIR","breadcrumbs":"Reference » Environment Variables » Environment Variables","id":"37","title":"Environment Variables"},"38":{"body":"Set this to true to enable autoreloading of your TypeScript/JavaScript code when making any changes to .ts or .js files in your project.","breadcrumbs":"Reference » Environment Variables » AZLE_AUTORELOAD","id":"38","title":"AZLE_AUTORELOAD"},"39":{"body":"Set this to the hash that you would like Azle to use when determining the container image, container, and wasmedge-quickjs directory names. The container image file and wasmedge-quickjs directory will be stored at ~/.config/azle. The hash is the final part of each of those names.","breadcrumbs":"Reference » Environment Variables » AZLE_DOCKERFILE_HASH","id":"39","title":"AZLE_DOCKERFILE_HASH"},"4":{"body":"There are many Azle examples in the examples directory . We recommend starting with the following: apollo_server audio_and_video autoreload ethers ethers_base express fetch_ic file_protocol fs hello_world http_outcall_fetch hybrid_canister ic_evm_rpc internet_identity large_files sqlite tfjs web_assembly","breadcrumbs":"Examples » Examples","id":"4","title":"Examples"},"40":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_IDENTITY_STORAGE_MODE","id":"40","title":"AZLE_IDENTITY_STORAGE_MODE"},"41":{"body":"Set this to true to see rough instruction counts just before JavaScript execution completes for calls.","breadcrumbs":"Reference » Environment Variables » AZLE_INSTRUCTION_COUNT","id":"41","title":"AZLE_INSTRUCTION_COUNT"},"42":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_NUM_RUNS","id":"42","title":"AZLE_PROPTEST_NUM_RUNS"},"43":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_PATH","id":"43","title":"AZLE_PROPTEST_PATH"},"44":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_QUIET","id":"44","title":"AZLE_PROPTEST_QUIET"},"45":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_SEED","id":"45","title":"AZLE_PROPTEST_SEED"},"46":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_VERBOSE","id":"46","title":"AZLE_PROPTEST_VERBOSE"},"47":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_TEST_FETCH","id":"47","title":"AZLE_TEST_FETCH"},"48":{"body":"Set this to true to force Azle to build the container image locally from the internal Dockerfile instead of attempting to download the container image.","breadcrumbs":"Reference » Environment Variables » AZLE_USE_DOCKERFILE","id":"48","title":"AZLE_USE_DOCKERFILE"},"49":{"body":"Set this to true to enable more logging output during dfx deploy.","breadcrumbs":"Reference » Environment Variables » AZLE_VERBOSE","id":"49","title":"AZLE_VERBOSE"},"5":{"body":"Starting the local replica Deploying to the local replica Interacting with your canister Deploying to mainnet Common deployment issues There are two main ICP environments that you will generally interact with: the local replica and mainnet . We recommend using the dfx command line tools to deploy to these environments. Please note that not all dfx commands are shown here. See the dfx CLI reference for more information.","breadcrumbs":"Deployment » Deployment","id":"5","title":"Deployment"},"50":{"body":"Set this to the path that you would like Azle to use to find the wasmedge-quickjs directory. The default is ~/.config/azle/wasmedge-quickjs_[current Dockerfile hash].","breadcrumbs":"Reference » Environment Variables » AZLE_WASMEDGE_QUICKJS_DIR","id":"50","title":"AZLE_WASMEDGE_QUICKJS_DIR"},"51":{"body":"Add the --native-compilation option to the command in the build property of your canister object in your dfx.json file. Make sure you install the correct dependencies for your project's version of Azle.","breadcrumbs":"Reference » Native Compilation » Native Compilation TL;DR","id":"51","title":"Native Compilation TL;DR"},"52":{"body":"Examples: key_value_store primitive_types stable_structures Azle uses a container image and Podman to simplify the development environment experience. Because of this, Azle only requires dfx, node/npm, and podman to be installed on the developer's machine. But this setup isn't always desirable. For example, Podman has trouble running inside of a Docker container. If you would like to skip the container and run Azle's build process directly on your machine, you can do so as follows: Add the --native-compilation option to the command in the build property of your canister object in your dfx.json file, like this: npx azle canister_name --native-compilation. Install prerequisites: sudo apt-get update\nsudo apt-get install clang\nsudo apt-get install build-essential Install Rust: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.73.0 --profile=minimal Install wasm32-wasi: rustup target add wasm32-wasi Install wasi2ic: cargo install --git https://github.com/wasm-forge/wasi2ic --rev 806c3558aad24224852a9582f018178402cb3679 Download and rename wasmedge-quickjs: mkdir -p ~/.config/azle\ncd ~/.config/azle\ngit clone https://github.com/demergent-labs/wasmedge-quickjs\ncd wasmedge-quickjs\ngit checkout c21ff69f442998e4cda4619166e23a9bc91418be\ncd -\nmv wasmedge-quickjs wasmedge-quickjs_$(npx azle@0.21.1 dockerfile-hash) Keep in mind that much of this setup is Azle version-specific. The installation steps above are accurate as of version 0.21.1 of Azle. If your Azle project uses a different version of Azle then you might need to make changes to these instructions to ensure correct compilation and execution. If you are struggling to get --native-compilation to work, it may be helpful for you to view the following files from the Azle repository: Dockerfile test.yml , search for --native-compilation","breadcrumbs":"Reference » Native Compilation » Native Compilation","id":"52","title":"Native Compilation"},"53":{"body":"This entire section of the documentation may be out of date Azle is currently going through a transition to give higher priority to utilizing HTTP, REST, JSON, and other familiar web technologies. This is in contrast to having previously focused on ICP-specific technologies like Candid and explicitly creating Canister objects with query and update methods. We are calling these two paradigms HTTP-based and Candid-based. Many concepts from the Candid-based documentation are still applicable in the HTTP-based paradigm. The HTTP-based paradigm simply focuses on changing the communication and serialization strategies to be more web-focused and less custom.","breadcrumbs":"Old Candid-based Documentation » Old Candid-based Documentation","id":"53","title":"Old Candid-based Documentation"},"54":{"body":"Azle is a TypeScript and JavaScript Canister Development Kit (CDK) for the Internet Computer (IC). In other words, it's a TypeScript/JavaScript runtime for building applications ( canisters ) on the IC. npm package GitHub repo Discord channel","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Azle (Beta)","id":"54","title":"Azle (Beta)"},"55":{"body":"Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Disclaimer","id":"55","title":"Disclaimer"},"56":{"body":"Azle is currently developed by Demergent Labs , a for-profit company with a grant from DFINITY . Demergent Labs' vision is to accelerate the adoption of Web3, the Internet Computer, and sustainable open source.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Demergent Labs","id":"56","title":"Demergent Labs"},"57":{"body":"Azle and the IC provide unique benefits and drawbacks, and both are not currently suitable for all application use-cases. The following information will help you to determine when Azle and the IC might be beneficial for your use-case.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Benefits and drawbacks","id":"57","title":"Benefits and drawbacks"},"58":{"body":"Azle intends to be a full TypeScript and JavaScript environment for the IC (a decentralized cloud platform), with support for all of the TypeScript and JavaScript language and as many relevant environment APIs as possible. These environment APIs will be similar to those available in the Node.js and web browser environments. One of the core benefits of Azle is that it allows web developers to bring their TypeScript or JavaScript skills to the IC. For example, Azle allows the use of various npm packages and VS Code intellisense. As for the IC, we believe its main benefits can be broken down into the following categories: Ownership Security Developer Experience Most of these benefits stem from the decentralized nature of the IC, though the IC is best thought of as a progressively decentralizing cloud platform. As opposed to traditional cloud platforms, its goal is to be owned and controlled by many independent entities. Ownership Full-stack group ownership Autonomous ownership Permanent APIs Credible neutrality Reduced platform risk Full-stack group ownership The IC allows you to build applications that are controlled directly and only (with some caveats) by a group of people. This is in opposition to most cloud applications written today, which must be under the control of a very limited number of people and often a single legal entity that answers directly to a cloud provider, which itself is a single legal entity. In the blockchain world, group-owned applications are known as DAOs . As opposed to DAOs built on most blockchains, the IC allows full-stack applications to be controlled by groups. This means that the group fully controls the running instances of the frontend and the backend code. Autonomous ownership In addition to allowing applications to be owned by groups of people, the IC also allows applications to be owned by no one. This essentially creates autonomous applications or everlasting processes that execute indefinitely. The IC will essentially allow such an application to run indefinitely, unless it depletes its balance of cycles, or the NNS votes to shut it down, neither of which is inevitable. Permanent APIs Because most web APIs are owned and operated by individual entities, their fate is tied to that of their owners. If their owners go out of business, then those APIs may cease to exist. If their owners decide that they do not like or agree with certain users, they may restrict their access. In the end, they may decide to shut down or restrict access for arbitrary reasons. Because the IC allows for group and autonomous ownership of cloud software, the IC is able to produce potentially permanent web APIs. A decentralized group of independent entities will find it difficult to censor API consumers or shut down an API. An autonomous API would take those difficulties to the extreme, as it would continue operating as long as consumers were willing to pay for it. Credible neutrality Group and autonomous ownership makes it possible to build neutral cloud software on the IC. This type of software would allow independent parties to coordinate with reduced trust in each other or a single third-party coordinator. This removes the risk of the third-party coordinator acting in its own self-interest against the interests of the coordinating participants. The coordinating participants would also find it difficult to implement changes that would benefit themselves to the detriment of other participants. Examples could include mobile app stores, ecommerce marketplaces, and podcast directories. Reduced platform risk Because the IC is not owned or controlled by any one entity or individual, the risk of being deplatformed is reduced. This is in opposition to most cloud platforms, where the cloud provider itself generally has the power to arbitrarily remove users from its platform. While deplatforming can still occur on the IC, the only endogenous means of forcefully taking down an application is through an NNS vote. Security Built-in replication Built-in authentication Built-in firewall/port management Built-in sandboxing Threshold protocols Verifiable source code Blockchain integration Built-in replication Replication has many benefits that stem from reducing various central points of failure. The IC is at its core a Byzantine Fault Tolerant replicated compute environment. Applications are deployed to subnets which are composed of nodes running replicas. Each replica is an independent replicated state machine that executes an application's state transitions (usually initiated with HTTP requests) and persists the results. This replication provides a high level of security out-of-the-box. It is also the foundation of a number of protocols that provide threshold cryptographic operations to IC applications. Built-in authentication IC client tooling makes it easy to sign and send messages to the IC, and Internet Identity provides a novel approach to self-custody of private keys. The IC automatically authenticates messages with the public key of the signer, and provides a compact representation of that public key, called a principal, to the application. The principal can be used for authorization purposes. This removes many authentication concerns from the developer. Built-in firewall/port management The concept of ports and various other low-level network infrastructure on the IC is abstracted away from the developer. This can greatly reduce application complexity thus minimizing the chance of introducing vulnerabilities through incorrect configurations. Canisters expose endpoints through various methods, usually query or update methods. Because authentication is also built-in, much of the remaining vulnerability surface area is minimized to implementing correct authorization rules in the canister method endpoints. Built-in sandboxing Canisters have at least two layers of sandboxing to protect colocated canisters from each other. All canisters are at their core Wasm modules and thus inherit the built-in Wasm sandbox. In case there is any bug in the underlying implementation of the Wasm execution environment (or a vulnerability in the imported host functionality), there is also an OS-level sandbox. Developers need not do anything to take advantage of these sandboxes. Threshold protocols The IC provides a number of threshold protocols that allow groups of independent nodes to perform cryptographic operations. These protocols remove central points of failure while providing familiar and useful cryptographic operations to developers. Included are ECDSA , BLS , VRF-like , and in the future threshold key derivation . Verifiable source code IC applications (canisters) are compiled into Wasm and deployed to the IC as Wasm modules. The IC hashes each canister's Wasm binary and stores it for public retrieval. The Wasm binary hash can be retrieved and compared with the hash of an independently compiled Wasm binary derived from available source code. If the hashes match, then one can know with a high degree of certainty that the application is executing the Wasm binary that was compiled from that source code. Blockchain integration When compared with web APIs built for the same purpose, the IC provides a high degree of security when integrating with various other blockchains. It has a direct client integration with Bitcoin, allowing applications to query its state with BFT guarantees. A similar integration is coming for Ethereum. In addition to these blockchain client integrations, a threshold ECDSA protocol (tECDSA) allows the IC to create keys and sign transactions on various ECDSA chains . These chains include Bitcoin and Ethereum, and in the future the protocol may be extended to allow interaction with various EdDSA chains . These direct integrations combined with tECDSA provide a much more secure way to provide blockchain functionality to end users than creating and storing their private keys on traditional cloud infrastructure. Developer experience Built-in devops Orthogonal persistence Built-in devops The IC provides many devops benefits automatically. Though currently limited in its scalability, the protocol attempts to remove the need for developers to concern themselves with concepts such as autoscaling, load balancing, uptime, sandboxing, and firewalls/port management. Correctly constructed canisters have a simple deploy process and automatically inherit these devops capabilities up unto the current scaling limits of the IC. DFINITY engineers are constantly working to remove scalability bottlenecks. Orthogonal persistence The IC automatically persists its heap. This creates an extremely convenient way for developers to store application state, by simply writing into global variables in their programming language of choice. This is a great way to get started. If a canister upgrades its code, swapping out its Wasm binary, then the heap must be cleared. To overcome this limitation, there is a special area of memory called stable memory that persists across these canister upgrades. Special stable data structures provide a familiar API that allows writing into stable memory directly. All of this together provides the foundation for a very simple persistence experience for the developer. The persistence tools now available and coming to the IC may be simpler than their equivalents on traditional cloud infrastructure.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Benefits","id":"58","title":"Benefits"},"59":{"body":"It's important to note that both Azle and the IC are early-stage projects. The IC officially launched in May of 2021, and Azle reached beta in April of 2022. Azle Some of Azle's main drawbacks can be summarized as follows: Beta Security risks Missing APIs Beta Azle reached beta in April of 2022. It's an immature project that may have unforeseen bugs and other issues. We're working constantly to improve it. We hope to get to a production-ready 1.0 in 2024. The following are the major blockers to 1.0: Extensive automated property test coverage Multiple independent security reviews/audits Broad npm package support Security risks As discussed earlier, these are some things to keep in mind: Azle does not yet have extensive automated property tests Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to the IC Missing APIs Azle is not Node.js nor is it V8 running in a web browser. It is using a JavaScript interpreter running in a very new and very different environment. APIs from the Node.js and web browser ecosystems may not be present in Azle. Our goal is to support as many of these APIs as possible over time. IC Some of the IC's main drawbacks can be summarized as follows: Early High latencies Limited and expensive compute resources Limited scalability Lack of privacy NNS risk Early The IC launched officially in May of 2021. As a relatively new project with an extremely ambitious vision, you can expect a small community, immature tooling, and an unproven track record. Much has been delivered, but many promises are yet to be fulfilled. High latencies Any requests that change state on the IC must go through consensus, thus you can expect latencies of a few seconds for these types of requests. When canisters need to communicate with each other across subnets or under heavy load, these latencies can be even longer. Under these circumstances, in the worst case latencies will build up linearly. For example, if canister A calls canister B calls canister C, and these canisters are all on different subnets or under heavy load, then you might need to multiply the latency by the total number of calls. Limited and expensive compute resources CPU usage, data storage, and network usage may be more expensive than the equivalent usage on traditional cloud platforms. Combining these costs with the high latencies explained above, it becomes readily apparent that the IC is currently not built for high-performance computing. Limited scalability The IC might not be able to scale to the needs of your application. It is constantly seeking to improve scalability bottlenecks, but it will probably not be able to onboard millions of users to your traditional web application. Lack of privacy You should assume that all of your application data (unless it is end-to-end encrypted) is accessible to multiple third-parties with no direct relationship and limited commitment to you. Currently all canister state sits unencrypted on node operator's machines. Application-layer access controls for data are possible, but motivated node operators will have an easy time getting access to your data. NNS risk The NNS has the ability to uninstall any canister and can generally change anything about the IC protocol. The NNS uses a simple liquid democracy based on coin/token voting and follower relationships. At the time of this writing most of the voting power on the NNS follows DFINITY for protocol changes, effectively giving DFINITY write control to the protocol while those follower relationships remain in place. The NNS must mature and decentralize to provide practical and realistic protections to canisters and their users.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Drawbacks","id":"59","title":"Drawbacks"},"6":{"body":"We recommend running your local replica in its own terminal and on a port of your choosing: dfx start --host 127.0.0.1:8000 Alternatively you can start the local replica as a background process: dfx start --background --host 127.0.0.1:8000 If you want to stop a local replica running in the background: dfx stop If you ever see this kind of error after dfx stop: Error: Failed to kill all processes. Remaining: 627221 626923 627260 Then try this: sudo kill -9 627221\nsudo kill -9 626923\nsudo kill -9 627260 If your replica starts behaving strangely, we recommend starting the replica clean, which will clean the dfx state of your project: dfx start --clean --host 127.0.0.1:8000","breadcrumbs":"Deployment » Starting the local replica","id":"6","title":"Starting the local replica"},"60":{"body":"The Internet Computer (IC) is a decentralized cloud platform. Actually, it is better thought of as a progressively decentralizing cloud platform. Its full vision is yet to be fulfilled. It aims to be owned and operated by many independent entities in many geographies and legal jurisdictions throughout the world. This is in opposition to most traditional cloud platforms today, which are generally owned and operated by one overarching legal entity. The IC is composed of computer hardware nodes running the IC protocol software. Each running IC protocol software process is known as a replica. Nodes are assigned into groups known as subnets. Each subnet attempts to maximize its decentralization of nodes according to factors such as data center location and node operator independence. The subnets vary in size. Generally speaking the larger the size of the subnet the more secure it will be. Subnets currently range in size from 13 to 40 nodes, with most subnets having 13 nodes. IC applications, known as canisters, are deployed to specific subnets. They are then accessible through Internet Protocol requests such as HTTP. Each subnet replicates all canisters across all of its replicas. A consensus protocol is run by the replicas to ensure Byzantine Fault Tolerance . View the IC Dashboard to explore all data centers, subnets, node operators, and many other aspects of the IC.","breadcrumbs":"Old Candid-based Documentation » Internet Computer Overview » Internet Computer Overview","id":"60","title":"Internet Computer Overview"},"61":{"body":"Canisters are Internet Computer (IC) applications. They are the encapsulation of your code and state, and are essentially Wasm modules. State can be stored on the 4 GiB heap or in a larger 96 GiB location called stable memory. You can store state on the heap using your language's native global variables. You can store state in stable memory using low-level APIs or special stable data structures that behave similarly to native language data structures. State changes must go through a process called consensus. The consensus process ensures that state changes are Byzantine Fault Tolerant . This process takes a few seconds to complete. Operations on canister state are exposed to users through canister methods. These methods can be invoked through HTTP requests. Query methods allow state to be read and are low-latency. Update methods allow state to be changed and are higher-latency. Update methods take a few seconds to complete because of the consensus process.","breadcrumbs":"Old Candid-based Documentation » Canisters Overview » Canisters Overview","id":"61","title":"Canisters Overview"},"62":{"body":"Windows is only supported through a Linux virtual environment of some kind, such as WSL On Ubuntu/WSL: sudo apt-get install podman On Mac: brew install podman It's recommended to use nvm and Node.js 20: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash Restart your terminal and then run: nvm install 20 Check that the installation went smoothly by looking for clean output from the following command: node --version Install the dfx command line tools for managing ICP applications: DFX_VERSION=0.16.1 sh -ci \"$(curl -fsSL https://sdk.dfinity.org/install.sh)\" Check that the installation went smoothly by looking for clean output from the following command: dfx --version If after trying to run dfx --version you encounter an error such as dfx: command not found, you might need to add $HOME/bin to your path. Here's an example of doing this in your .bashrc: echo 'export PATH=\"$PATH:$HOME/bin\"' >> \"$HOME/.bashrc\"","breadcrumbs":"Old Candid-based Documentation » Installation » Installation","id":"62","title":"Installation"},"63":{"body":"Quick start Methodical start The project directory and file structure index.ts tsconfig.json dfx.json Local deployment Common deployment issues Interacting with your canister from the command line Interacting with your canister from the web UI Let's build your first application (canister) with Azle! Before embarking please ensure you've followed all of the installation instructions , especially noting the build dependencies . We'll build a simple Hello World canister that shows the basics of importing Azle, exposing a query method, exposing an update method, and storing some state in a global variable. We'll then interact with it from the command line and from our web browser.","breadcrumbs":"Old Candid-based Documentation » Hello World » Hello World","id":"63","title":"Hello World"},"64":{"body":"We are going to use the Azle new command which creates a simple example project. First use the new command to create a new project called azle_hello_world: npx azle new azle_hello_world Now let's go inside of our project: cd azle_hello_world We should install Azle and all of its dependencies: npm install Start up your local replica: dfx start In another terminal, deploy your canister: dfx deploy azle_hello_world Call the setMessage method: dfx canister call azle_hello_world setMessage '(\"Hello world!\")' Call the getMessage method: dfx canister call azle_hello_world getMessage If you run into an error during deployment, see the common deployment issues section . See the official azle_hello_world example for more information.","breadcrumbs":"Old Candid-based Documentation » Hello World » Quick Start","id":"64","title":"Quick Start"},"65":{"body":"","breadcrumbs":"Old Candid-based Documentation » Hello World » Methodical start","id":"65","title":"Methodical start"},"66":{"body":"Assuming you're starting completely from scratch, run these commands to setup your project's directory and file structure: mkdir azle_hello_world\ncd azle_hello_world mkdir src touch src/index.ts\ntouch tsconfig.json\ntouch dfx.json Now install Azle, which will create your package.json and package-lock.json files: npm install azle Open up azle_hello_world in your text editor (we recommend VS Code ).","breadcrumbs":"Old Candid-based Documentation » Hello World » The project directory and file structure","id":"66","title":"The project directory and file structure"},"67":{"body":"Here's the main code of the project, which you should put in the azle_hello_world/src/index.ts file of your canister: import { Canister, query, text, update, Void } from 'azle'; // This is a global variable that is stored on the heap\nlet message = ''; export default Canister({ // Query calls complete quickly because they do not go through consensus getMessage: query([], text, () => { return message; }), // Update calls take a few seconds to complete // This is because they persist state changes and go through consensus setMessage: update([text], Void, (newMessage) => { message = newMessage; // This change will be persisted })\n}); Let's discuss each section of the code. import { Canister, query, text, update, Void } from 'azle'; The code starts off by importing Canister, query, text, update and Void from azle. The azle module provides most of the Internet Computer (IC) APIs for your canister. // This is a global variable that is stored on the heap\nlet message = ''; We have created a global variable to store the state of our application. This variable is in scope to all of the functions defined in this module. We have set it equal to an empty string. export default Canister({ ...\n}); The Canister function allows us to export our canister's definition to the Azle IC environment. // Query calls complete quickly because they do not go through consensus\ngetMessage: query([], text, () => { return message;\n}), We are exposing a canister query method here. This method simply returns our global message variable. We use a CandidType object called text to instruct Azle to encode the return value as a Candid text value. When query methods are called they execute quickly because they do not have to go through consensus. // Update calls take a few seconds to complete\n// This is because they persist state changes and go through consensus\nsetMessage: update([text], Void, (newMessage) => { message = newMessage; // This change will be persisted\n}); We are exposing an update method here. This method accepts a string from the caller and will store it in our global message variable. We use a CandidType object called text to instruct Azle to decode the newMessage parameter from a Candid text value to a JavaScript string value. Azle will infer the TypeScript type for newMessage. We use a CandidType object called Void to instruct Azle to encode the return value as the absence of a Candid value. When update methods are called they take a few seconds to complete. This is because they persist changes and go through consensus. A majority of nodes in a subnet must agree on all state changes introduced in calls to update methods. That's it! We've created a very simple getter/setter Hello World application. But no Hello World project is complete without actually yelling Hello world! To do that, we'll need to setup the rest of our project.","breadcrumbs":"Old Candid-based Documentation » Hello World » index.ts","id":"67","title":"index.ts"},"68":{"body":"Create the following in azle_hello_world/tsconfig.json: { \"compilerOptions\": { \"strict\": true, \"target\": \"ES2020\", \"moduleResolution\": \"node\", \"allowJs\": true, \"outDir\": \"HACK_BECAUSE_OF_ALLOW_JS\" }\n}","breadcrumbs":"Old Candid-based Documentation » Hello World » tsconfig.json","id":"68","title":"tsconfig.json"},"69":{"body":"Create the following in azle_hello_world/dfx.json: { \"canisters\": { \"azle_hello_world\": { \"type\": \"custom\", \"main\": \"src/index.ts\", \"candid\": \"src/index.did\", \"build\": \"npx azle azle_hello_world\", \"wasm\": \".azle/azle_hello_world/azle_hello_world.wasm\", \"gzip\": true } }\n}","breadcrumbs":"Old Candid-based Documentation » Hello World » dfx.json","id":"69","title":"dfx.json"},"7":{"body":"To deploy all canisters defined in your dfx.json: dfx deploy If you are building an HTTP-based canister and would like your canister to autoreload on file changes (DO NOT deploy to mainnet with autoreload enabled): AZLE_AUTORELOAD=true dfx deploy To deploy an individual canister: dfx deploy [canisterName]","breadcrumbs":"Deployment » Deploying to the local replica","id":"7","title":"Deploying to the local replica"},"70":{"body":"Let's deploy to our local replica. First startup the replica: dfx start --background Then deploy the canister: dfx deploy","breadcrumbs":"Old Candid-based Documentation » Hello World » Local deployment","id":"70","title":"Local deployment"},"71":{"body":"If you run into an error during deployment, see the common deployment issues section .","breadcrumbs":"Old Candid-based Documentation » Hello World » Common deployment issues","id":"71","title":"Common deployment issues"},"72":{"body":"Once we've deployed we can ask for our message: dfx canister call azle_hello_world getMessage We should see (\"\") representing an empty message. Now let's yell Hello World!: dfx canister call azle_hello_world setMessage '(\"Hello World!\")' Retrieve the message: dfx canister call azle_hello_world getMessage We should see (\"Hello World!\").","breadcrumbs":"Old Candid-based Documentation » Hello World » Interacting with your canister from the command line","id":"72","title":"Interacting with your canister from the command line"},"73":{"body":"After deploying your canister, you should see output similar to the following in your terminal: Deployed canisters.\nURLs: Backend canister via Candid interface: azle_hello_world: http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai Open up http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai or the equivalent URL from your terminal to access the web UI and interact with your canister.","breadcrumbs":"Old Candid-based Documentation » Hello World » Interacting with your canister from the web UI","id":"73","title":"Interacting with your canister from the web UI"},"74":{"body":"Starting the local replica Deploying to the local replica Interacting with your canister Deploying to mainnet Common deployment issues There are two main Internet Computer (IC) environments that you will generally interact with: the local replica and mainnet. When developing on your local machine, our recommended flow is to start up a local replica in your project's root directoy and then deploy to it for local testing.","breadcrumbs":"Old Candid-based Documentation » Deployment » Deployment","id":"74","title":"Deployment"},"75":{"body":"Open a terminal and navigate to your project's root directory: dfx start Alternatively you can start the local replica as a background process: dfx start --background If you want to stop a local replica running in the background: dfx stop If you ever see this error after dfx stop: Error: Failed to kill all processes. Remaining: 627221 626923 627260 Then try this: sudo kill -9 627221\nsudo kill -9 626923\nsudo kill -9 627260 If your replica starts behaving strangely, we recommend starting the replica clean, which will clean the dfx state of your project: dfx start --clean","breadcrumbs":"Old Candid-based Documentation » Deployment » Starting the local replica","id":"75","title":"Starting the local replica"},"76":{"body":"To deploy all canisters defined in your dfx.json: dfx deploy To deploy an individual canister: dfx deploy canister_name","breadcrumbs":"Old Candid-based Documentation » Deployment » Deploying to the local replica","id":"76","title":"Deploying to the local replica"},"77":{"body":"As a developer you can generally interact with your canister in three ways: dfx command line dfx web UI @dfinity/agent","breadcrumbs":"Old Candid-based Documentation » Deployment » Interacting with your canister","id":"77","title":"Interacting with your canister"},"78":{"body":"You can see a more complete reference here . The commands you are likely to use most frequently are: # assume a canister named my_canister # builds and deploys all canisters specified in dfx.json\ndfx deploy # builds all canisters specified in dfx.json\ndfx build # builds and deploys my_canister\ndfx deploy my_canister # builds my_canister\ndfx build my_canister # removes the Wasm binary and state of my_canister\ndfx uninstall-code my_canister # calls the methodName method on my_canister with a string argument\ndfx canister call my_canister methodName '(\"This is a Candid string argument\")'","breadcrumbs":"Old Candid-based Documentation » Deployment » dfx command line","id":"78","title":"dfx command line"},"79":{"body":"After deploying your canister, you should see output similar to the following in your terminal: Deployed canisters.\nURLs: Backend canister via Candid interface: my_canister: http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai Open up http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai to access the web UI.","breadcrumbs":"Old Candid-based Documentation » Deployment » dfx web UI","id":"79","title":"dfx web UI"},"8":{"body":"You will generally interact with your canister through an HTTP client such as curl, fetch, or a web browser. The URL of your canister locally will look like this: http://[canisterId].localhost:[replicaPort]. Azle will print your canister's URL in the terminal after a successful deploy. # You can obtain the canisterId like this\ndfx canister id [canisterName] # You can obtain the replicaPort like this\ndfx info webserver-port # An example of performing a GET request to a canister\ncurl http://a3shf-5eaaa-aaaaa-qaafa-cai.localhost:8000 # An example of performing a POST request to a canister\ncurl -X POST -H \"Content-Type: application/json\" -d \"{ \\\"hello\\\": \\\"world\\\" }\" http://a3shf-5eaaa-aaaaa-qaafa-cai.localhost:8000","breadcrumbs":"Deployment » Interacting with your canister","id":"8","title":"Interacting with your canister"},"80":{"body":"@dfinity/agent is the TypeScript/JavaScript client library for interacting with canisters on the IC. If you are building a client web application, this is probably what you'll want to use. There are other agents for other languages as well: Java Python Rust","breadcrumbs":"Old Candid-based Documentation » Deployment » @dfinity/agent","id":"80","title":"@dfinity/agent"},"81":{"body":"Assuming you are setup with cycles , then you are ready to deploy to mainnet. To deploy all canisters defined in your dfx.json: dfx deploy --network ic To deploy an individual canister: dfx deploy --network ic canister_name","breadcrumbs":"Old Candid-based Documentation » Deployment » Deploying to mainnet","id":"81","title":"Deploying to mainnet"},"82":{"body":"If you run into an error during deployment, try the following: Ensure that you have followed the instructions correctly in the installation chapter , especially noting the build dependencies Start the whole deployment process from scratch by running the following commands: dfx stop or simply terminate dfx in your terminal, dfx start --clean, npx azle clean, dfx deploy Look for more error output by adding the --verbose flag to the build command in your dfx.json file like so: \"build\": \"npx azle build hello_world --verbose Look for errors in each of the files in ~/.config/azle/rust/[rust_version]/logs Reach out in the Discord channel","breadcrumbs":"Old Candid-based Documentation » Deployment » Common deployment issues","id":"82","title":"Common deployment issues"},"83":{"body":"Azle has many example projects showing nearly all Azle APIs. They can be found in the examples directory of the Azle GitHub repository . We'll highlight a few of them and some others here: Query Update Primitive Types Stable Structures Cycles Cross Canister Calls Management Canister Outgoing HTTP Requests Incoming HTTP Requests Pre and Post Upgrade Timers Multisig Vault ICRC-1 IC Chainlink Data Feeds Bitcoin ckBTC","breadcrumbs":"Old Candid-based Documentation » Examples » Examples","id":"83","title":"Examples"},"84":{"body":"","breadcrumbs":"Old Candid-based Documentation » Query Methods » Query Methods","id":"84","title":"Query Methods"},"85":{"body":"Created with the query function Read-only Executed on a single node No consensus Latency on the order of ~100 milliseconds 5 billion Wasm instruction limit 4 GiB heap limit ~32k queries per second per canister The most basic way to expose your canister's functionality publicly is through a query method. Here's an example of a simple query method named getString: import { Canister, query, text } from 'azle'; export default Canister({ getString: query([], text, () => { return 'This is a query method!'; })\n}); Query methods are defined inside of a call to Canister using the query function. The first parameter to query is an array of CandidType objects that will be used to decode the Candid bytes of the arguments sent from the client when calling your query method. The second parameter to query is a CandidType object used to encode the return value of your function to Candid bytes to then be sent back to the client. The third parameter to query is the function that receives the decoded arguments, performs some computation, and then returns a value to be encoded. The TypeScript signature of this function (parameter and return types) will be inferred from the CandidType arguments in the first and second parameters to query. getString can be called from the outside world through the IC's HTTP API. You'll usually invoke this API from the dfx command line, dfx web UI, or an agent . From the dfx command line you can call it like this: dfx canister call my_canister getString Query methods are read-only. They do not persist any state changes. Take a look at the following example: import { Canister, query, text, Void } from 'azle'; let db: { [key: string]: string;\n} = {}; export default Canister({ set: query([text, text], Void, (key, value) => { db[key] = value; })\n}); Calling set will perform the operation of setting the key property on the db object to value, but after the call finishes that change will be discarded. This is because query methods are executed on a single node machine and do not go through consensus . This results in lower latencies, perhaps on the order of 100 milliseconds. There is a limit to how much computation can be done in a single call to a query method. The current query call limit is 5 billion Wasm instructions . Here's an example of a query method that runs the risk of reaching the limit: import { Canister, nat32, query, text } from 'azle'; export default Canister({ pyramid: query([nat32], text, (levels) => { return new Array(levels).fill(0).reduce((acc, _, index) => { const asterisks = new Array(index + 1).fill('*').join(''); return `${acc}${asterisks}\\n`; }, ''); })\n}); From the dfx command line you can call pyramid like this: dfx canister call my_canister pyramid '(1_000)' With an argument of 1_000, pyramid will fail with an error ...exceeded the instruction limit for single message execution. Keep in mind that each query method invocation has up to 4 GiB of heap available. In terms of query scalability, an individual canister likely has an upper bound of ~36k queries per second .","breadcrumbs":"Old Candid-based Documentation » Query Methods » TL;DR","id":"85","title":"TL;DR"},"86":{"body":"","breadcrumbs":"Old Candid-based Documentation » Update Methods » Update Methods","id":"86","title":"Update Methods"},"87":{"body":"Created with the update function Read-write Executed on many nodes Consensus Latency ~2-5 seconds 20 billion Wasm instruction limit 4 GiB heap limit 96 GiB stable memory limit ~900 updates per second per canister Update methods are similar to query methods, but state changes can be persisted. Here's an example of a simple update method: import { Canister, nat64, update } from 'azle'; let counter = 0n; export default Canister({ increment: update([], nat64, () => { return counter++; })\n}); Calling increment will return the current value of counter and then increase its value by 1. Because counter is a global variable, the change will be persisted to the heap, and subsequent query and update calls will have access to the new counter value. Because the Internet Computer (IC) persists changes with certain fault tolerance guarantees, update calls are executed on many nodes and go through consensus . This leads to latencies of ~2-5 seconds per update call. Due to the latency and other expenses involved with update methods, it is best to use them only when necessary. Look at the following example: import { Canister, query, text, update, Void } from 'azle'; let message = ''; export default Canister({ getMessage: query([], text, () => { return message; }), setMessage: update([text], Void, (newMessage) => { message = newMessage; })\n}); You'll notice that we use an update method, setMessage, only to perform the change to the global message variable. We use getMessage, a query method, to read the message. Keep in mind that the heap is limited to 4 GiB, and thus there is an upper bound to global variable storage capacity. You can imagine how a simple database like the following would eventually run out of memory with too many entries: import { Canister, None, Opt, query, Some, text, update, Void } from 'azle'; type Db = { [key: string]: string;\n}; let db: Db = {}; export default Canister({ get: query([text], Opt(text), (key) => { const value = db[key]; return value !== undefined ? Some(value) : None; }), set: update([text, text], Void, (key, value) => { db[key] = value; })\n}); If you need more than 4 GiB of storage, consider taking advantage of the 96 GiB of stable memory. Stable structures like StableBTreeMap give you a nice API for interacting with stable memory. These data structures will be covered in more detail later . Here's a simple example: import { Canister, Opt, query, StableBTreeMap, text, update, Void } from 'azle'; let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); })\n}); So far we have only seen how state changes can be persisted. State changes can also be discarded by implicit or explicit traps. A trap is an immediate stop to execution with the ability to provide a message to the execution environment. Traps can be useful for ensuring that multiple operations are either all completed or all disregarded, or in other words atomic. Keep in mind that these guarantees do not hold once cross-canister calls are introduced, but that's a more advanced topic covered later . Here's an example of how to trap and ensure atomic changes to your database: import { Canister, ic, Opt, query, Record, StableBTreeMap, text, update, Vec, Void\n} from 'azle'; const Entry = Record({ key: text, value: text\n}); let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); }), setMany: update([Vec(Entry)], Void, (entries) => { entries.forEach((entry) => { if (entry.key === 'trap') { ic.trap('explicit trap'); } db.insert(entry.key, entry.value); }); })\n}); In addition to ic.trap, an explicit JavaScript throw or any unhandled exception will also trap. There is a limit to how much computation can be done in a single call to an update method. The current update call limit is 20 billion Wasm instructions . If we modify our database example, we can introduce an update method that runs the risk of reaching the limit: import { Canister, nat64, Opt, query, StableBTreeMap, text, update, Void\n} from 'azle'; let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); }), setMany: update([nat64], Void, (numEntries) => { for (let i = 0; i < numEntries; i++) { db.insert(i.toString(), i.toString()); } })\n}); From the dfx command line you can call setMany like this: dfx canister call my_canister setMany '(10_000)' With an argument of 10_000, setMany will fail with an error ...exceeded the instruction limit for single message execution. In terms of update scalability, an individual canister likely has an upper bound of ~900 updates per second .","breadcrumbs":"Old Candid-based Documentation » Update Methods » TL;DR","id":"87","title":"TL;DR"},"88":{"body":"text blob nat nat8 nat16 nat32 nat64 int int8 int16 int32 int64 float32 float64 bool null vec opt record variant func service principal reserved empty Candid is an interface description language created by DFINITY . It can be used to define interfaces between services (canisters), allowing canisters and clients written in various languages to easily interact with each other. This interaction occurs through the serialization/encoding and deserialization/decoding of runtime values to and from Candid bytes. Azle performs automatic encoding and decoding of JavaScript values to and from Candid bytes through the use of various CandidType objects. For example, CandidType objects are used when defining the parameter and return types of your query and update methods. They are also used to define the keys and values of a StableBTreeMap. It's important to note that the CandidType objects decode Candid bytes into specific JavaScript runtime data structures that may differ in behavior from the description of the actual Candid type. For example, a float32 Candid type is a JavaScript Number , a nat64 is a JavaScript BigInt , and an int is also a JavaScript BigInt . Keep this in mind as it may result in unexpected behavior. Each CandidType object and its equivalent JavaScript runtime value is explained in more detail in The Azle Book Candid reference . A more canonical reference of all Candid types available on the Internet Computer (IC) can be found here . The following is a simple example showing how to import and use many of the CandidType objects available in Azle: import { blob, bool, Canister, float32, float64, Func, int, int16, int32, int64, int8, nat, nat16, nat32, nat64, nat8, None, Null, Opt, Principal, query, Record, Recursive, text, update, Variant, Vec\n} from 'azle'; const MyCanister = Canister({ query: query([], bool), update: update([], text)\n}); const Candid = Record({ text: text, blob: blob, nat: nat, nat64: nat64, nat32: nat32, nat16: nat16, nat8: nat8, int: int, int64: int64, int32: int32, int16: int16, int8: int8, float64: float64, float32: float32, bool: bool, null: Null, vec: Vec(text), opt: Opt(nat), record: Record({ firstName: text, lastName: text, age: nat8 }), variant: Variant({ Tag1: Null, Tag2: Null, Tag3: int }), func: Recursive(() => Func([], Candid, 'query')), canister: Canister({ query: query([], bool), update: update([], text) }), principal: Principal\n}); export default Canister({ candidTypes: query([], Candid, () => { return { text: 'text', blob: Uint8Array.from([]), nat: 340_282_366_920_938_463_463_374_607_431_768_211_455n, nat64: 18_446_744_073_709_551_615n, nat32: 4_294_967_295, nat16: 65_535, nat8: 255, int: 170_141_183_460_469_231_731_687_303_715_884_105_727n, int64: 9_223_372_036_854_775_807n, int32: 2_147_483_647, int16: 32_767, int8: 127, float64: Math.E, float32: Math.PI, bool: true, null: null, vec: ['has one element'], opt: None, record: { firstName: 'John', lastName: 'Doe', age: 35 }, variant: { Tag1: null }, func: [ Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'), 'candidTypes' ], canister: MyCanister(Principal.fromText('aaaaa-aa')), principal: Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai') }; })\n}); Calling candidTypes with dfx will return: ( record { func = func \"rrkah-fqaaa-aaaaa-aaaaq-cai\".candidTypes; text = \"text\"; nat16 = 65_535 : nat16; nat32 = 4_294_967_295 : nat32; nat64 = 18_446_744_073_709_551_615 : nat64; record = record { age = 35 : nat8; lastName = \"Doe\"; firstName = \"John\" }; int = 170_141_183_460_469_231_731_687_303_715_884_105_727 : int; nat = 340_282_366_920_938_463_463_374_607_431_768_211_455 : nat; opt = null; vec = vec { \"has one element\" }; variant = variant { Tag1 }; nat8 = 255 : nat8; canister = service \"aaaaa-aa\"; int16 = 32_767 : int16; int32 = 2_147_483_647 : int32; int64 = 9_223_372_036_854_775_807 : int64; null = null : null; blob = vec {}; bool = true; principal = principal \"ryjl3-tyaaa-aaaaa-aaaba-cai\"; int8 = 127 : int8; float32 = 3.1415927 : float32; float64 = 2.718281828459045 : float64; },\n)","breadcrumbs":"Old Candid-based Documentation » Candid » Candid","id":"88","title":"Candid"},"89":{"body":"","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Stable Structures","id":"89","title":"Stable Structures"},"9":{"body":"Assuming you are setup with a cycles wallet , then you are ready to deploy to mainnet. To deploy all canisters defined in your dfx.json: dfx deploy --network ic To deploy an individual canister: dfx deploy --network ic [canisterName] The URL of your canister on mainnet will look like this: https://[canisterId].raw.icp0.io.","breadcrumbs":"Deployment » Deploying to mainnet","id":"9","title":"Deploying to mainnet"},"90":{"body":"96 GiB of stable memory Persistent across upgrades Familiar API Must specify memory id No migrations per memory id Stable structures are data structures with familiar APIs that allow write and read access to stable memory. Stable memory is a separate memory location from the heap that currently allows up to 96 GiB of binary storage. Stable memory persists automatically across upgrades. Persistence on the Internet Computer (IC) is very important to understand. When a canister is upgraded (its code is changed after being initially deployed) its heap is wiped. This includes all global variables. On the other hand, anything stored in stable memory will be preserved. Writing and reading to and from stable memory can be done with a low-level API , but it is generally easier and preferable to use stable structures. Azle currently provides one stable structure called StableBTreeMap. It's similar to a JavaScript Map and has most of the common operations you'd expect such as reading, inserting, and removing values. Here's how to define a simple StableBTreeMap: import { nat8, StableBTreeMap, text } from 'azle'; let map = StableBTreeMap(0); This is a StableBTreeMap with a key of type nat8 and a value of type text. Unless you want a default type of any for your key and value, then you must explicitly type your StableBTreeMap with type arguments. StableBTreeMap works by encoding and decoding values under-the-hood, storing and retrieving these values in bytes in stable memory. When writing to and reading from a StableBTreeMap, by default the stableJson Serializable object is used to encode JS values into bytes and to decode JS values from bytes. stableJson uses JSON.stringify and JSON.parse with a custom replacer and reviver to handle many Candid and other values that you will most likely use in your canisters. You may use other Serializable objects besides stableJson, and you can even create your own. Simply pass in a Serializable object as the second and third parameters to your StableBTreeMap. The second parameter is the key Serializable object and the third parameter is the value Serializable object. For example, the following StableBTreeMap uses the nat8 and text CandidType objects from Azle as Serializable objects. These Serializable objects will encode and decode to and from Candid bytes: import { nat8, StableBTreeMap, text } from 'azle'; let map = StableBTreeMap(0, nat8, text); All CandidType objects imported from azle are Serializable objects. A Serializable object simply has a toBytes method that takes a JS value and returns a Uint8Array, and a fromBytes method that takes a Uint8Array and returns a JS value. Here's an example of how to create your own simple JSON Serializable: export interface Serializable { toBytes: (data: any) => Uint8Array; fromBytes: (bytes: Uint8Array) => any;\n} export function StableSimpleJson(): Serializable { return { toBytes(data: any) { const result = JSON.stringify(data); return Uint8Array.from(Buffer.from(result)); }, fromBytes(bytes: Uint8Array) { return JSON.parse(Buffer.from(bytes).toString()); } };\n} This StableBTreeMap also has a memory id of 0. Each StableBTreeMap instance must have a unique memory id between 0 and 254. Once a memory id is allocated, it cannot be used with a different StableBTreeMap. This means you can't create another StableBTreeMap using the same memory id, and you can't change the key or value types of an existing StableBTreeMap. This problem will be addressed to some extent . Here's an example showing all of the basic StableBTreeMap operations: import { bool, Canister, nat64, nat8, Opt, query, StableBTreeMap, text, Tuple, update, Vec\n} from 'azle'; const Key = nat8;\ntype Key = typeof Key.tsType; const Value = text;\ntype Value = typeof Value.tsType; let map = StableBTreeMap(0); export default Canister({ containsKey: query([Key], bool, (key) => { return map.containsKey(key); }), get: query([Key], Opt(Value), (key) => { return map.get(key); }), insert: update([Key, Value], Opt(Value), (key, value) => { return map.insert(key, value); }), isEmpty: query([], bool, () => { return map.isEmpty(); }), items: query([], Vec(Tuple(Key, Value)), () => { return map.items(); }), keys: query([], Vec(Key), () => { return Uint8Array.from(map.keys()); }), len: query([], nat64, () => { return map.len(); }), remove: update([Key], Opt(Value), (key) => { return map.remove(key); }), values: query([], Vec(Value), () => { return map.values(); })\n}); With these basic operations you can build more complex CRUD database applications: import { blob, Canister, ic, Err, nat64, Ok, Opt, Principal, query, Record, Result, StableBTreeMap, text, update, Variant, Vec\n} from 'azle'; const User = Record({ id: Principal, createdAt: nat64, recordingIds: Vec(Principal), username: text\n});\ntype User = typeof User.tsType; const Recording = Record({ id: Principal, audio: blob, createdAt: nat64, name: text, userId: Principal\n});\ntype Recording = typeof Recording.tsType; const AudioRecorderError = Variant({ RecordingDoesNotExist: Principal, UserDoesNotExist: Principal\n});\ntype AudioRecorderError = typeof AudioRecorderError.tsType; let users = StableBTreeMap(0);\nlet recordings = StableBTreeMap(1); export default Canister({ createUser: update([text], User, (username) => { const id = generateId(); const user: User = { id, createdAt: ic.time(), recordingIds: [], username }; users.insert(user.id, user); return user; }), readUsers: query([], Vec(User), () => { return users.values(); }), readUserById: query([Principal], Opt(User), (id) => { return users.get(id); }), deleteUser: update([Principal], Result(User, AudioRecorderError), (id) => { const userOpt = users.get(id); if ('None' in userOpt) { return Err({ UserDoesNotExist: id }); } const user = userOpt.Some; user.recordingIds.forEach((recordingId) => { recordings.remove(recordingId); }); users.remove(user.id); return Ok(user); }), createRecording: update( [blob, text, Principal], Result(Recording, AudioRecorderError), (audio, name, userId) => { const userOpt = users.get(userId); if ('None' in userOpt) { return Err({ UserDoesNotExist: userId }); } const user = userOpt.Some; const id = generateId(); const recording: Recording = { id, audio, createdAt: ic.time(), name, userId }; recordings.insert(recording.id, recording); const updatedUser: User = { ...user, recordingIds: [...user.recordingIds, recording.id] }; users.insert(updatedUser.id, updatedUser); return Ok(recording); } ), readRecordings: query([], Vec(Recording), () => { return recordings.values(); }), readRecordingById: query([Principal], Opt(Recording), (id) => { return recordings.get(id); }), deleteRecording: update( [Principal], Result(Recording, AudioRecorderError), (id) => { const recordingOpt = recordings.get(id); if ('None' in recordingOpt) { return Err({ RecordingDoesNotExist: id }); } const recording = recordingOpt.Some; const userOpt = users.get(recording.userId); if ('None' in userOpt) { return Err({ UserDoesNotExist: recording.userId }); } const user = userOpt.Some; const updatedUser: User = { ...user, recordingIds: user.recordingIds.filter( (recordingId) => recordingId.toText() !== recording.id.toText() ) }; users.insert(updatedUser.id, updatedUser); recordings.remove(id); return Ok(recording); } )\n}); function generateId(): Principal { const randomBytes = new Array(29) .fill(0) .map((_) => Math.floor(Math.random() * 256)); return Principal.fromUint8Array(Uint8Array.from(randomBytes));\n} The example above shows a very basic audio recording backend application. There are two types of entities that need to be stored, User and Recording. These are represented as Candid records. Each entity gets its own StableBTreeMap: import { blob, Canister, ic, Err, nat64, Ok, Opt, Principal, query, Record, Result, StableBTreeMap, text, update, Variant, Vec\n} from 'azle'; const User = Record({ id: Principal, createdAt: nat64, recordingIds: Vec(Principal), username: text\n});\ntype User = typeof User.tsType; const Recording = Record({ id: Principal, audio: blob, createdAt: nat64, name: text, userId: Principal\n});\ntype Recording = typeof Recording.tsType; const AudioRecorderError = Variant({ RecordingDoesNotExist: Principal, UserDoesNotExist: Principal\n});\ntype AudioRecorderError = typeof AudioRecorderError.tsType; let users = StableBTreeMap(0);\nlet recordings = StableBTreeMap(1); Notice that each StableBTreeMap has a unique memory id. You can begin to create basic database CRUD functionality by creating one StableBTreeMap per entity. It's up to you to create functionality for querying, filtering, and relations. StableBTreeMap is not a full-featured database solution, but a fundamental building block that may enable you to achieve more advanced database functionality. Demergent Labs plans to deeply explore database solutions on the IC in the future.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » TL;DR","id":"90","title":"TL;DR"},"91":{"body":"","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Caveats","id":"91","title":"Caveats"},"92":{"body":"It seems to be only some float64 values cannot be successfully stored and retrieved with a StableBTreeMap using stableJson because of this bug with JSON.parse: https://github.com/bellard/quickjs/issues/206","breadcrumbs":"Old Candid-based Documentation » Stable Structures » float64 values","id":"92","title":"float64 values"},"93":{"body":"Azle's Candid encoding/decoding implementation is currently not well optimized, and Candid may not be the most optimal encoding format overall, so you may experience heavy instruction usage when performing many StableBTreeMap operations in succession. A rough idea of the overhead from our preliminary testing is probably 1-2 million instructions for a full Candid encoding and decoding of values per StableBTreeMap operation. For these reasons we recommend using the stableJson Serializable object (the default) instead of CandidType Serializable objects.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » CandidType Performance","id":"93","title":"CandidType Performance"},"94":{"body":"Migrations must be performed manually by reading the values out of one StableBTreeMap and writing them into another. Once a StableBTreeMap is initialized to a specific memory id, that memory id cannot be changed unless the canister is completely wiped and initialized again.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Migrations","id":"94","title":"Migrations"},"95":{"body":"Canister values do not currently work with the default stableJson implementation. If you must persist Canisters, consider using the Canister CandidType object as your Serializable object in your StableBTreeMap, or create a custom replacer or reviver for stableJson that handles Canister.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Canister","id":"95","title":"Canister"},"96":{"body":"Examples: async_await bitcoin composite_queries cross_canister_calls cycles ethereum_json_rpc func_types heartbeat inline_types ledger_canister management_canister outgoing_http_requests threshold_ecdsa rejections timers tuple_types whoami Canisters are generally able to call the query or update methods of other canisters in any subnet. We refer to these types of calls as cross-canister calls. A cross-canister call begins with a definition of the canister to be called. Imagine a simple canister called token_canister: import { Canister, ic, nat64, Opt, Principal, StableBTreeMap, update\n} from 'azle'; let accounts = StableBTreeMap(0); export default Canister({ transfer: update([Principal, nat64], nat64, (to, amount) => { const from = ic.caller(); const fromBalance = getBalance(accounts.get(from)); const toBalance = getBalance(accounts.get(to)); accounts.insert(from, fromBalance - amount); accounts.insert(to, toBalance + amount); return amount; })\n}); function getBalance(accountOpt: Opt): nat64 { if ('None' in accountOpt) { return 0n; } else { return accountOpt.Some; }\n} Now that you have the canister definition, you can import and instantiate it in another canister: import { Canister, ic, nat64, Principal, update } from 'azle';\nimport TokenCanister from './token_canister'; const tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); If you don't have the actual definition of the token canister with the canister method implementations, you can always create your own canister definition without method implementations: import { Canister, ic, nat64, Principal, update } from 'azle'; const TokenCanister = Canister({ transfer: update([Principal, nat64], nat64)\n}); const tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); The IC guarantees that cross-canister calls will return. This means that, generally speaking, you will always receive a response from ic.call. If there are errors during the call, ic.call will throw. Wrapping your cross-canister call in a try...catch allows you to handle these errors. Let's add to our example code and explore adding some practical error-handling to stop people from stealing tokens. token_canister: import { Canister, ic, nat64, Opt, Principal, StableBTreeMap, update\n} from 'azle'; let accounts = StableBTreeMap(0); export default Canister({ transfer: update([Principal, nat64], nat64, (to, amount) => { const from = ic.caller(); const fromBalance = getBalance(accounts.get(from)); if (amount > fromBalance) { throw new Error(`${from} has an insufficient balance`); } const toBalance = getBalance(accounts.get(to)); accounts.insert(from, fromBalance - amount); accounts.insert(to, toBalance + amount); return amount; })\n}); function getBalance(accountOpt: Opt): nat64 { if ('None' in accountOpt) { return 0n; } else { return accountOpt.Some; }\n} payout_canister: import { Canister, ic, nat64, Principal, update } from 'azle';\nimport TokenCanister from './index'; const tokenCanister = TokenCanister( Principal.fromText('bkyz2-fmaaa-aaaaa-qaaaq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { try { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); } catch (error) { console.log(error); } return 0n; })\n}); Throwing will allow you to express error conditions and halt execution, but you may find embracing the Result variant as a better solution for error handling because of its composability and predictability. So far we have only shown a cross-canister call from an update method. Update methods can call other update methods or query methods (but not composite query methods as discussed below). If an update method calls a query method, that query method will be called in replicated mode. Replicated mode engages the consensus process, but for queries the state will still be discarded. Cross-canister calls can also be initiated from query methods. These are known as composite queries, and in Azle they are simply async query methods. Composite queries can call other composite query methods and regular query methods. Composite queries cannot call update methods. Here's an example of a composite query method: import { bool, Canister, ic, Principal, query } from 'azle'; const SomeCanister = Canister({ queryForBoolean: query([], bool)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ querySomeCanister: query([], bool, async () => { return await ic.call(someCanister.queryForBoolean); })\n}); You can expect cross-canister calls within the same subnet to take up to a few seconds to complete, and cross-canister calls across subnets take about double that time . Composite queries should be much faster, similar to query calls in latency. If you don't need to wait for your cross-canister call to return, you can use notify: import { Canister, ic, Principal, update, Void } from 'azle'; const SomeCanister = Canister({ receiveNotification: update([], Void)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ sendNotification: update([], Void, () => { return ic.notify(someCanister.receiveNotification); })\n}); If you need to send cycles with your cross-canister call, you can add cycles to the config object of ic.notify: import { Canister, ic, Principal, update, Void } from 'azle'; const SomeCanister = Canister({ receiveNotification: update([], Void)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ sendNotification: update([], Void, () => { return ic.notify(someCanister.receiveNotification, { cycles: 1_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Cross-canister » Cross-canister","id":"96","title":"Cross-canister"},"97":{"body":"This chapter is a work in progress.","breadcrumbs":"Old Candid-based Documentation » HTTP » HTTP","id":"97","title":"HTTP"},"98":{"body":"Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, query, Record, text, Tuple, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request: query([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » HTTP » Incoming HTTP requests","id":"98","title":"Incoming HTTP requests"},"99":{"body":"Examples: ethereum_json_rpc outgoing_http_requests import { Canister, ic, init, nat32, Principal, query, Some, StableBTreeMap, text, update\n} from 'azle';\nimport { HttpResponse, HttpTransformArgs, managementCanister\n} from 'azle/canisters/management'; let stableStorage = StableBTreeMap(0); export default Canister({ init: init([text], (ethereumUrl) => { stableStorage.insert('ethereumUrl', ethereumUrl); }), ethGetBalance: update([text], text, async (ethereumAddress) => { const urlOpt = stableStorage.get('ethereumUrl'); if ('None' in urlOpt) { throw new Error('ethereumUrl is not defined'); } const url = urlOpt.Some; const httpResponse = await ic.call(managementCanister.http_request, { args: [ { url, max_response_bytes: Some(2_000n), method: { post: null }, headers: [], body: Some( Buffer.from( JSON.stringify({ jsonrpc: '2.0', method: 'eth_getBalance', params: [ethereumAddress, 'earliest'], id: 1 }), 'utf-8' ) ), transform: Some({ function: [ic.id(), 'ethTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); return Buffer.from(httpResponse.body.buffer).toString('utf-8'); }), ethGetBlockByNumber: update([nat32], text, async (number) => { const urlOpt = stableStorage.get('ethereumUrl'); if ('None' in urlOpt) { throw new Error('ethereumUrl is not defined'); } const url = urlOpt.Some; const httpResponse = await ic.call(managementCanister.http_request, { args: [ { url, max_response_bytes: Some(2_000n), method: { post: null }, headers: [], body: Some( Buffer.from( JSON.stringify({ jsonrpc: '2.0', method: 'eth_getBlockByNumber', params: [`0x${number.toString(16)}`, false], id: 1 }), 'utf-8' ) ), transform: Some({ function: [ic.id(), 'ethTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); return Buffer.from(httpResponse.body.buffer).toString('utf-8'); }), ethTransform: query([HttpTransformArgs], HttpResponse, (args) => { return { ...args.response, headers: [] }; })\n});","breadcrumbs":"Old Candid-based Documentation » HTTP » Outgoing HTTP requests","id":"99","title":"Outgoing HTTP requests"}},"length":234,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}},"df":7,"docs":{"102":{"tf":1.4142135623730951},"142":{"tf":2.0},"166":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"134":{"tf":1.0},"16":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"x":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"6":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"1":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"'":{"*":{"'":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":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":{"85":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"34":{"tf":1.0}}}},"1":{"0":{"6":{"4":{"3":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"6":{"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":2,"docs":{"149":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"8":{"df":9,"docs":{"116":{"tf":2.449489742783178},"122":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"4":{":":{"3":{"5":{":":{"3":{"0":{".":{"4":{"3":{"3":{"5":{"0":{"1":{"9":{"8":{"0":{"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":{}},"6":{":":{"3":{"4":{".":{"6":{"5":{"2":{"5":{"8":{"7":{"4":{"1":{"2":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"_":{"1":{"4":{"1":{"_":{"1":{"8":{"3":{"_":{"4":{"6":{"0":{"_":{"4":{"6":{"9":{"_":{"2":{"3":{"1":{"_":{"7":{"3":{"1":{"_":{"6":{"8":{"7":{"_":{"3":{"0":{"3":{"_":{"7":{"1":{"5":{"_":{"8":{"8":{"4":{"_":{"1":{"0":{"5":{"_":{"7":{"2":{"7":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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.4142135623730951}},"t":{"1":{"4":{":":{"3":{"5":{":":{"3":{"1":{".":{"9":{"8":{"3":{"5":{"9":{"0":{"df":0,"docs":{},"z":{"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":{}},"5":{":":{"0":{"1":{":":{"3":{"9":{".":{"1":{"9":{"4":{"3":{"7":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"_":{"4":{"4":{"6":{"_":{"7":{"4":{"4":{"_":{"0":{"7":{"3":{"_":{"7":{"0":{"9":{"_":{"5":{"5":{"1":{"_":{"6":{"1":{"5":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"157":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"166":{"tf":1.7320508075688772},"183":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":2.0},"34":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"2":{".":{"0":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"7":{"1":{"8":{"2":{"8":{"1":{"8":{"2":{"8":{"4":{"5":{"9":{"0":{"4":{"5":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"233":{"tf":1.0}}},"4":{"df":4,"docs":{"0":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"59":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"62":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"5":{"4":{"df":1,"docs":{"90":{"tf":1.0}}},"5":{"df":2,"docs":{"154":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"4":{"7":{"_":{"4":{"8":{"3":{"_":{"6":{"4":{"7":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"88":{"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":9,"docs":{"108":{"tf":1.0},"166":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"34":{"tf":1.0},"87":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"a":{"a":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"7":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}},"u":{"a":{"a":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"3":{".":{"1":{"4":{"1":{"5":{"9":{"2":{"7":{"df":2,"docs":{"145":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"7":{"6":{"7":{"df":2,"docs":{"150":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"179":{"tf":1.0},"210":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"0":{"_":{"2":{"8":{"2":{"_":{"3":{"6":{"6":{"_":{"9":{"2":{"0":{"_":{"9":{"3":{"8":{"_":{"4":{"6":{"3":{"_":{"4":{"6":{"3":{"_":{"3":{"7":{"4":{"_":{"6":{"0":{"7":{"_":{"4":{"3":{"1":{"_":{"7":{"6":{"8":{"_":{"2":{"1":{"1":{"_":{"4":{"5":{"5":{"df":2,"docs":{"153":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"153":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"6":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":4,"docs":{"166":{"tf":1.7320508075688772},"18":{"tf":1.0},"233":{"tf":1.0},"34":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.0}}},"2":{"df":1,"docs":{"140":{"tf":1.0}}},"_":{"2":{"9":{"4":{"_":{"9":{"6":{"7":{"_":{"2":{"9":{"5":{"df":2,"docs":{"156":{"tf":1.7320508075688772},"88":{"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":5,"docs":{"233":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}},"5":{"0":{"0":{"df":1,"docs":{"32":{"tf":1.0}}},"2":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"99":{"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":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"34":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"a":{"a":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"2":{"6":{"9":{"2":{"3":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"1":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"_":{"5":{"3":{"5":{"df":2,"docs":{"155":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"a":{"a":{"a":{"a":{"df":3,"docs":{"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"6":{"c":{"3":{"5":{"5":{"8":{"a":{"a":{"d":{"2":{"4":{"2":{"2":{"4":{"8":{"5":{"2":{"a":{"9":{"5":{"8":{"2":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"1":{"7":{"8":{"4":{"0":{"2":{"c":{"b":{"3":{"6":{"7":{"9":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"32":{"tf":1.0},"99":{"tf":2.0}}},"9":{"0":{"0":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"19":{"tf":1.0}}},"6":{"df":3,"docs":{"61":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"_":{"2":{"2":{"3":{"_":{"3":{"7":{"2":{"_":{"0":{"3":{"6":{"_":{"8":{"5":{"4":{"_":{"7":{"7":{"5":{"_":{"8":{"0":{"7":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"152":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"6":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}},"_":{"df":1,"docs":{"85":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"17":{"tf":2.0},"23":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}}},"a":{"a":{"a":{"a":{"a":{"df":15,"docs":{"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"147":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"73":{"tf":2.0},"79":{"tf":2.0},"8":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"96":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"q":{"df":5,"docs":{"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"b":{"a":{"df":5,"docs":{"134":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{},"q":{"df":3,"docs":{"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"163":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"90":{"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":3,"docs":{"22":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"116":{"tf":1.7320508075688772},"117":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"}":{"$":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"147":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"33":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"df":2,"docs":{"82":{"tf":1.0},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":1,"docs":{"88":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"22":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"215":{"tf":1.0},"58":{"tf":3.7416573867739413},"61":{"tf":1.4142135623730951},"67":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"j":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"52":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"96":{"tf":3.872983346207417}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"217":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"32":{"tf":2.8284271247461903}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"64":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"144":{"tf":2.0},"162":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":21,"docs":{"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.0},"13":{"tf":1.0},"167":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.0},"58":{"tf":3.4641016151377544},"59":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"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":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"'":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":9,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"58":{"tf":1.0}},"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":{"3":{"tf":1.0},"58":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":21,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":4.123105625617661},"59":{"tf":2.23606797749979},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"80":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"y":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"1":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"2":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"3":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"4":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":28,"docs":{"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":2.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"2":{"9":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"0":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"(":{"(":{"a":{"c":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"147":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":3.4641016151377544},"23":{"tf":1.0},"36":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"96":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"17":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"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":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"180":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"90":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"90":{"tf":2.6457513110645907}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":2.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"233":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0}}}},"df":8,"docs":{"40":{"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},"59":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":2.449489742783178}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":2.23606797749979},"38":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"58":{"tf":1.7320508075688772},"85":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":3.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":2.0},"96":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"192":{"tf":1.0},"215":{"tf":1.0}}},"y":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":162,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"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":1.0},"139":{"tf":1.0},"14":{"tf":2.0},"140":{"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.8284271247461903},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":2.0},"24":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":3.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":3.0},"69":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":2.0},"90":{"tf":2.8284271247461903},"96":{"tf":3.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":4,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"193":{"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":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":2.23606797749979},"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"@":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}}},"df":4,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"64":{"tf":2.6457513110645907},"66":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"37":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"1":{"0":{"0":{"2":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"6":{"4":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"2":{"8":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"5":{"5":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"1":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"6":{"1":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"43":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"37":{"tf":1.0},"48":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"49":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"d":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"58":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"59":{"tf":1.0},"7":{"tf":1.0}}},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"103":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":2.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"59":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"166":{"tf":1.0},"59":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"41":{"tf":1.0},"63":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"90":{"tf":1.0},"96":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"96":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"58":{"tf":2.6457513110645907}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"a":{"df":6,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"105":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"26":{"tf":1.0},"60":{"tf":1.0},"96":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":2.0},"58":{"tf":2.23606797749979},"78":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":12,"docs":{"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"120":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"58":{"tf":1.0}},"o":{"b":{"df":31,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"141":{"tf":1.0},"142":{"tf":3.4641016151377544},"144":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178},"90":{"tf":2.23606797749979},"98":{"tf":2.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"58":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":7,"docs":{"184":{"tf":2.0},"185":{"tf":2.0},"205":{"tf":1.0},"23":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.7320508075688772},"88":{"tf":1.0}}},"l":{"df":29,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"126":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":1.0},"143":{"tf":3.4641016151377544},"159":{"tf":1.7320508075688772},"163":{"tf":2.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"199":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"57":{"tf":1.0},"59":{"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":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"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":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"g":{"df":4,"docs":{"110":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":2.0},"193":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"36":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"33":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":2.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"2":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"6":{"9":{"df":0,"docs":{},"f":{"4":{"4":{"2":{"9":{"9":{"8":{"df":0,"docs":{},"e":{"4":{"c":{"d":{"a":{"4":{"6":{"1":{"9":{"1":{"6":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"a":{"9":{"b":{"c":{"9":{"1":{"4":{"1":{"8":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"\"":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"0":{"tf":1.0},"120":{"tf":1.0},"134":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"96":{"tf":2.449489742783178}}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"147":{"tf":1.0},"17":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":2.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"98":{"tf":2.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":70,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":2.449489742783178},"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},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":2.0},"181":{"tf":1.0},"187":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":2.8284271247461903},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"24":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":2.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979},"67":{"tf":3.1622776601683795},"72":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":3.3166247903554},"87":{"tf":3.0},"88":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":4.58257569495584}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"116":{"tf":1.0},"125":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":49,"docs":{"108":{"tf":1.7320508075688772},"11":{"tf":1.0},"111":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"19":{"tf":1.0},"193":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":2.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":3.4641016151377544},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":173,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":2.449489742783178},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"150":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":2.23606797749979},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"170":{"tf":2.0},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"19":{"tf":2.8284271247461903},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"23":{"tf":3.605551275463989},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"24":{"tf":2.8284271247461903},"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"36":{"tf":2.449489742783178},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":3.0},"59":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"67":{"tf":3.0},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":2.23606797749979},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.449489742783178},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":3.3166247903554},"87":{"tf":4.0},"88":{"tf":3.0},"9":{"tf":1.7320508075688772},"90":{"tf":2.6457513110645907},"94":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":6.324555320336759},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":10,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"19":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"193":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"52":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"195":{"tf":1.0},"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"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":{"31":{"tf":1.0}}}}}}},"i":{"d":{"df":14,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":2.23606797749979},"231":{"tf":1.0},"232":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"52":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"159":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"144":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.0},"233":{"tf":1.0},"58":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"3":{"tf":1.0},"52":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.0}},"k":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"54":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"174":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"167":{"tf":1.0},"179":{"tf":1.4142135623730951}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"n":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":15,"docs":{"215":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"7":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"31":{"tf":1.0},"62":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":5,"docs":{"112":{"tf":1.0},"115":{"tf":2.0},"21":{"tf":1.0},"25":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"215":{"tf":1.0},"3":{"tf":1.0},"6":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"58":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0},"58":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}},"u":{"d":{"df":3,"docs":{"58":{"tf":3.3166247903554},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":19,"docs":{"116":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"215":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":2.6457513110645907},"61":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"78":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"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":{"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"31":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"233":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.449489742783178},"58":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"41":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.449489742783178},"78":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}},"x":{"df":2,"docs":{"58":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"120":{"tf":1.0},"139":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"103":{"tf":1.4142135623730951},"112":{"tf":1.0},"34":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"39":{"tf":1.0},"52":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"i":{"d":{"df":3,"docs":{"29":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0}}}}}},"`":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"102":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"96":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":23,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}}}}}}}},"df":6,"docs":{"232":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"df":36,"docs":{"102":{"tf":3.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"184":{"tf":2.8284271247461903},"185":{"tf":2.8284271247461903},"19":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":2.8284271247461903},"204":{"tf":1.7320508075688772},"210":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"23":{"tf":2.8284271247461903},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":4.898979485566356},"96":{"tf":4.0},"98":{"tf":2.8284271247461903},"99":{"tf":2.449489742783178}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"165":{"tf":1.0},"39":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"214":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":2.0},"19":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"11":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":2.6457513110645907},"108":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"167":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0},"87":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"103":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":2.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":2.449489742783178},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"120":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"163":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":3.3166247903554}}}}},"u":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"52":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":10,"docs":{"11":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":31,"docs":{"103":{"tf":3.1622776601683795},"116":{"tf":2.449489742783178},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":2.23606797749979},"132":{"tf":2.23606797749979},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979}}}},"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":{"174":{"tf":1.0}}}}}}}},"df":17,"docs":{"108":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"144":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}}},"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"87":{"tf":2.449489742783178}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"233":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":31,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":123,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.8284271247461903},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"23":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"96":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"56":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"31":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"o":{"df":0,"docs":{},"y":{"df":32,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":2.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"3":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":2.23606797749979},"55":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"7":{"tf":2.6457513110645907},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"76":{"tf":2.23606797749979},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":2.0},"9":{"tf":2.449489742783178},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"195":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"176":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"215":{"tf":1.4142135623730951},"34":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":3.1622776601683795},"74":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":2.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"11":{"tf":2.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"233":{"tf":1.0},"36":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"6":{".":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":52,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"2":{"tf":2.0},"3":{"tf":2.0},"36":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.7320508075688772},"52":{"tf":1.0},"6":{"tf":2.449489742783178},"62":{"tf":2.0},"64":{"tf":2.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.6457513110645907},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":2.0},"85":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"i":{"a":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"l":{"\\":{"0":{"0":{"\\":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"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":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"103":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"114":{"tf":1.0},"22":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"83":{"tf":1.0}}}},"y":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"181":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"105":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"59":{"tf":1.0},"67":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"32":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"31":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"48":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"87":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"33":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"103":{"tf":1.0},"233":{"tf":1.4142135623730951},"31":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"67":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"59":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"88":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"113":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}}}},"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"136":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":3.605551275463989},"67":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"7":{"tf":1.0},"90":{"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":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"167":{"tf":1.0},"169":{"tf":1.4142135623730951},"18":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"2":{"tf":1.0},"62":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"108":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"58":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"10":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"58":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"87":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"159":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"163":{"tf":1.0},"90":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.7320508075688772},"144":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":3.605551275463989},"32":{"tf":3.3166247903554},"33":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":2.449489742783178}}}}}},"s":{"2":{"0":{"2":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"63":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"19":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":10,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.0},"27":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"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":{"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":113,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"90":{"tf":2.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"166":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"175":{"tf":1.0},"181":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.0},"67":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"96":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"59":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"59":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"215":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772},"93":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"87":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":120,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"96":{"tf":2.8284271247461903},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"s":{"df":9,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"215":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"16":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"23":{"tf":2.449489742783178},"32":{"tf":2.449489742783178},"4":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"36":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"144":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"126":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"87":{"tf":1.0},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"p":{":":{"/":{"/":{"d":{"df":0,"docs":{},"f":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"13":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"103":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"83":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":20,"docs":{"0":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"23":{"tf":1.7320508075688772},"3":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"7":{"tf":1.0},"82":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}}}}},"l":{"(":{"0":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"198":{"tf":1.0},"90":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"29":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.0},"39":{"tf":1.0}}}},"d":{"df":6,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"165":{"tf":2.23606797749979}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"147":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}},"x":{"df":2,"docs":{"10":{"tf":1.0},"108":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"141":{"tf":1.0},"145":{"tf":3.7416573867739413},"88":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":3.7416573867739413},"88":{"tf":2.6457513110645907},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}},"m":{"a":{"a":{"a":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":28,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"df":6,"docs":{"2":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"a":{"a":{"a":{"df":5,"docs":{"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"106":{"tf":1.0}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":2.23606797749979}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"4":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"df":5,"docs":{"115":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"n":{"c":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"120":{"tf":1.0},"186":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":6,"docs":{"141":{"tf":1.0},"147":{"tf":3.3166247903554},"184":{"tf":1.0},"185":{"tf":1.0},"88":{"tf":2.6457513110645907},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"147":{"tf":1.0}}},"df":23,"docs":{"102":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"16":{"tf":1.0},"161":{"tf":1.4142135623730951},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"205":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"87":{"tf":1.0},"90":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"215":{"tf":1.0},"29":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":13,"docs":{"103":{"tf":1.0},"18":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"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":1,"docs":{"196":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":2,"docs":{"59":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"191":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.4142135623730951}}},"df":1,"docs":{"153":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"m":{"b":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"85":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"i":{"b":{"df":6,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"54":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":8,"docs":{"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"85":{"tf":1.0},"87":{"tf":1.0}},"o":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"58":{"tf":3.3166247903554},"60":{"tf":1.0}}}},"w":{"df":4,"docs":{"218":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"233":{"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":{"58":{"tf":1.0},"87":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"69":{"tf":1.0}}}}}},"h":{"1":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":6,"docs":{"109":{"tf":1.0},"14":{"tf":1.0},"32":{"tf":4.242640687119285},"90":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"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":1,"docs":{"10":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"18":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"34":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.23606797749979},"209":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"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":6,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"233":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"164":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"8":{"tf":1.0}}}},"p":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"233":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":15,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":8,"docs":{"103":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"34":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"108":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"61":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":2,"docs":{"22":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"233":{"tf":1.0},"29":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"17":{"tf":1.0}}}}}}}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"/":{"?":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"98":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":5,"docs":{"182":{"tf":1.0},"185":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"df":9,"docs":{"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"195":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"98":{"tf":1.0}}}}}}}}}},"df":28,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":2.0}}}}}}}}},"s":{":":{"/":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"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":{"/":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"2":{"0":{"6":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"62":{"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":{"d":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"k":{"c":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"6":{"4":{"2":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"0":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"c":{"'":{"df":2,"docs":{"59":{"tf":1.0},"85":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"102":{"tf":1.0},"125":{"tf":1.0},"163":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"96":{"tf":2.0}},"l":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"123":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"137":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"140":{"tf":1.0}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"173":{"tf":1.0},"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":2,"docs":{"128":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"d":{"1":{"2":{"8":{"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":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"163":{"tf":1.0},"96":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"135":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"178":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"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":{"136":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.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":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"102":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"102":{"tf":1.0},"232":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"227":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"223":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"180":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"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":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"0":{"5":{"0":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":16,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"136":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"25":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":99,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":5.477225575051661},"59":{"tf":3.0},"60":{"tf":2.6457513110645907},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":3.0},"99":{"tf":1.0}},"p":{"df":14,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0}}},"r":{"c":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"25":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"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":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"\"":{">":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":9,"docs":{"161":{"tf":2.23606797749979},"167":{"tf":1.0},"173":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":4.58257569495584},"94":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"52":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"58":{"tf":1.7320508075688772},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":132,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"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.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.7320508075688772},"90":{"tf":2.6457513110645907},"96":{"tf":3.3166247903554},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":1,"docs":{"144":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"29":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"106":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.7320508075688772},"90":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"83":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"19":{"tf":1.0},"233":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"63":{"tf":1.0},"67":{"tf":1.0}}}},"df":2,"docs":{"85":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":7,"docs":{"58":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0}}}},"o":{"df":2,"docs":{"23":{"tf":1.0},"8":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"64":{"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":1,"docs":{"58":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"101":{"tf":1.7320508075688772},"120":{"tf":2.0},"182":{"tf":1.0},"186":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"i":{"df":6,"docs":{"186":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"120":{"tf":1.0},"219":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"33":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"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":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"182":{"tf":1.0},"187":{"tf":1.0},"33":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"117":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"2":{"tf":2.6457513110645907},"206":{"tf":1.0},"3":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":3.0},"62":{"tf":2.6457513110645907},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"82":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"147":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"166":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.7320508075688772},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"1":{"6":{"df":3,"docs":{"141":{"tf":1.0},"150":{"tf":3.7416573867739413},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"3":{"2":{"df":4,"docs":{"141":{"tf":1.0},"151":{"tf":3.7416573867739413},"166":{"tf":3.4641016151377544},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"141":{"tf":1.0},"152":{"tf":3.7416573867739413},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"141":{"tf":1.0},"149":{"tf":3.7416573867739413},"88":{"tf":2.6457513110645907}}},"df":4,"docs":{"140":{"tf":2.0},"141":{"tf":1.0},"148":{"tf":3.7416573867739413},"88":{"tf":3.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.0},"114":{"tf":1.7320508075688772},"58":{"tf":2.6457513110645907}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"n":{"d":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"f":{"a":{"c":{"df":4,"docs":{"73":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"32":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"20":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"58":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"61":{"tf":1.0},"85":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"10":{"tf":1.4142135623730951},"106":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"82":{"tf":1.0}}}}},"t":{"'":{"df":7,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"80":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"107":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.449489742783178},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"s":{"df":5,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"90":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":1.7320508075688772},"90":{"tf":1.0},"92":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"90":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"16":{"tf":1.4142135623730951},"53":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.7320508075688772}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":7,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":9,"docs":{"163":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":2.6457513110645907},"23":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"87":{"tf":3.1622776601683795},"88":{"tf":1.0},"90":{"tf":3.3166247903554}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"6":{"tf":2.0},"75":{"tf":2.0}}}},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"147":{"tf":1.0},"58":{"tf":1.0}},"n":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"56":{"tf":1.7320508075688772},"90":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}},"m":{"df":0,"docs":{},"j":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"34":{"tf":1.0},"59":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"96":{"tf":1.0}},"y":{"=":{"1":{"0":{"1":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"108":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"112":{"tf":1.0},"115":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"119":{"tf":1.0},"222":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"29":{"tf":1.0},"53":{"tf":1.0}}}},"t":{"'":{"df":6,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"106":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":1.0},"233":{"tf":2.0},"34":{"tf":3.0},"58":{"tf":2.0},"59":{"tf":2.23606797749979},"85":{"tf":2.449489742783178},"87":{"tf":2.8284271247461903}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":10,"docs":{"2":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"k":{"df":2,"docs":{"103":{"tf":1.0},"20":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"o":{"a":{"d":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"216":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":2.449489742783178},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"8":{"tf":1.0}}},"t":{"df":3,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"106":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"59":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":4,"docs":{"140":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{";":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"26":{"tf":1.0},"38":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.7320508075688772},"62":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"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":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"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":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"169":{"tf":1.0}}}}}}}},"df":5,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"36":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"p":{"(":{"(":{"_":{"df":1,"docs":{"90":{"tf":1.0}}},"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":2.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"h":{".":{"df":2,"docs":{"146":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"145":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}}},"y":{"b":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"218":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"87":{"tf":2.0},"90":{"tf":3.872983346207417},"94":{"tf":1.4142135623730951}}},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.7320508075688772},"22":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951},"67":{"tf":2.8284271247461903},"72":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}},"df":1,"docs":{"210":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"df":39,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"147":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.4142135623730951},"205":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"36":{"tf":2.23606797749979},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":2.6457513110645907},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":3.1622776601683795},"86":{"tf":1.0},"87":{"tf":2.8284271247461903},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":4.123105625617661},"98":{"tf":1.0},"99":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"b":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"34":{"tf":1.4142135623730951}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"108":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"196":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":7,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"107":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"52":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"193":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}}}},"s":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}},"g":{"df":7,"docs":{"116":{"tf":2.449489742783178},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.7320508075688772},"87":{"tf":1.0}},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"v":{"df":1,"docs":{"52":{"tf":1.0}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"78":{"tf":3.0},"79":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":2.0}}}},"t":{"1":{"6":{"df":6,"docs":{"141":{"tf":1.0},"155":{"tf":3.7416573867739413},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"141":{"tf":1.0},"156":{"tf":3.7416573867739413},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":2.6457513110645907},"99":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{">":{"(":{"0":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"141":{"tf":1.0},"157":{"tf":3.7416573867739413},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":2.8284271247461903},"96":{"tf":4.358898943540674}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"154":{"tf":3.7416573867739413},"219":{"tf":1.4142135623730951},"88":{"tf":3.0},"90":{"tf":2.6457513110645907}}},"df":7,"docs":{"119":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"141":{"tf":1.0},"153":{"tf":3.7416573867739413},"171":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.23606797749979},"61":{"tf":1.4142135623730951}},"e":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":5.196152422706632}}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":5.196152422706632}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"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":{"233":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"103":{"tf":1.0},"115":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"114":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":1.0}}}}},"w":{"df":11,"docs":{"139":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":2.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":3.4641016151377544}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"n":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":2.449489742783178}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"2":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"159":{"tf":2.0},"174":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"144":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}},"i":{"df":5,"docs":{"116":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"96":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"134":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"df":8,"docs":{"115":{"tf":1.0},"215":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"106":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"217":{"tf":1.4142135623730951},"3":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}},"x":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"158":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.0},"158":{"tf":3.872983346207417},"159":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"165":{"tf":2.6457513110645907},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"88":{"tf":3.605551275463989},"99":{"tf":1.4142135623730951}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":20,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"172":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.23606797749979},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"90":{"tf":3.3166247903554},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"222":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":2,"docs":{"163":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"l":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"df":7,"docs":{"15":{"tf":1.0},"165":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"106":{"tf":1.0},"56":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"109":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"159":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"6":{"4":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"159":{"tf":1.0}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":2.0}}}}}}}},"df":11,"docs":{"141":{"tf":1.0},"159":{"tf":2.8284271247461903},"174":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"111":{"tf":1.0},"233":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":1,"docs":{"58":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"83":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0},"27":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"178":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"49":{"tf":1.0},"62":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":1,"docs":{"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":2.8284271247461903}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":2.23606797749979},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"67":{"tf":1.0},"85":{"tf":2.23606797749979},"88":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"58":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"14":{"tf":1.0},"144":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"23":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{"$":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0}}}},"y":{"df":1,"docs":{"58":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"135":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"r":{"df":5,"docs":{"183":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"163":{"tf":1.0},"167":{"tf":1.0},"177":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"24":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"186":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"85":{"tf":1.0},"87":{"tf":2.0},"90":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}},"n":{"df":1,"docs":{"90":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.0},"215":{"tf":2.23606797749979},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772}}}}}}},"o":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"18":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":6,"docs":{"182":{"tf":1.0},"188":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"59":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"182":{"tf":1.0},"189":{"tf":1.0},"32":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":3,"docs":{"147":{"tf":1.0},"160":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":3,"docs":{"134":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":29,"docs":{"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"134":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.7320508075688772},"160":{"tf":4.0},"161":{"tf":2.23606797749979},"163":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"58":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"90":{"tf":3.872983346207417},"96":{"tf":2.8284271247461903},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":2.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"167":{"tf":1.0},"178":{"tf":1.7320508075688772},"32":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":1,"docs":{"148":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}},"df":1,"docs":{"153":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"m":{"b":{"df":1,"docs":{"166":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"90":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"192":{"tf":1.0},"194":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":2.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"96":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"58":{"tf":1.0}},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"31":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":87,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"97":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{".":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"10":{"tf":1.4142135623730951},"105":{"tf":1.0},"11":{"tf":1.4142135623730951},"17":{"tf":1.0},"216":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"75":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":14,"docs":{"159":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.449489742783178},"193":{"tf":1.0},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"36":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772},"60":{"tf":2.0}}}}},"df":1,"docs":{"52":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"0":{"tf":1.0},"192":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"195":{"tf":1.0},"207":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"217":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"q":{"a":{"a":{"a":{"df":0,"docs":{},"q":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":73,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.8284271247461903},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":2.23606797749979},"160":{"tf":2.0},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":2.6457513110645907},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"205":{"tf":1.0},"219":{"tf":2.449489742783178},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":3.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":4.898979485566356},"87":{"tf":3.0},"88":{"tf":2.8284271247461903},"90":{"tf":3.3166247903554},"96":{"tf":4.358898943540674},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"y":{"(":{"[":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"142":{"tf":1.0},"168":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"98":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"156":{"tf":1.0},"222":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"157":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.0}}},"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"160":{"tf":1.0},"176":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"164":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}},"j":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0}},"s":{"_":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"18":{"tf":1.0},"60":{"tf":1.0}}}},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"195":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"116":{"tf":2.449489742783178},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":3.1622776601683795}}}}}}},"d":{"df":9,"docs":{"218":{"tf":1.4142135623730951},"222":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"90":{"tf":2.0},"94":{"tf":1.0}},"i":{"df":3,"docs":{"59":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"58":{"tf":1.0},"93":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"147":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":2,"docs":{"128":{"tf":1.0},"130":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"15":{"tf":1.0},"166":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":13,"docs":{"102":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"161":{"tf":3.0},"184":{"tf":2.449489742783178},"185":{"tf":2.449489742783178},"204":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"59":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":3.0},"90":{"tf":4.358898943540674},"98":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"1":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"90":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":1,"docs":{"90":{"tf":2.449489742783178}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":8,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"116":{"tf":1.7320508075688772},"120":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.4142135623730951},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"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":{"59":{"tf":1.7320508075688772}}}}}}}}}}},"df":3,"docs":{"233":{"tf":1.0},"34":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"219":{"tf":1.0},"58":{"tf":2.449489742783178},"78":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"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":1,"docs":{"102":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"'":{"df":2,"docs":{"178":{"tf":1.0},"31":{"tf":1.0}}},"df":16,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"6":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":2.0},"75":{"tf":2.23606797749979},"76":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"58":{"tf":2.449489742783178},"60":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":3,"docs":{"116":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":2,"docs":{"216":{"tf":1.0},"54":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"52":{"tf":1.0},"83":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"72":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"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":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":18,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":2.449489742783178},"34":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"144":{"tf":1.0},"22":{"tf":1.7320508075688772},"36":{"tf":1.0},"52":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"b":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"d":{"b":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"14":{"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":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"141":{"tf":1.0},"162":{"tf":3.605551275463989},"18":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"20":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"103":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":9,"docs":{"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.0},"96":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":2.0}}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":2,"docs":{"53":{"tf":1.0},"67":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":6,"docs":{"17":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"110":{"tf":1.0},"58":{"tf":1.4142135623730951},"72":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":104,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":3.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"67":{"tf":2.23606797749979},"85":{"tf":2.449489742783178},"87":{"tf":2.6457513110645907},"88":{"tf":1.7320508075688772},"90":{"tf":5.196152422706632},"96":{"tf":3.872983346207417},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"v":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"f":{"df":1,"docs":{"10":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"33":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"58":{"tf":2.0},"59":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"36":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"41":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"52":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":27,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"52":{"tf":1.0},"80":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"216":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"59":{"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":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"10":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":1,"docs":{"52":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"147":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"34":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":2.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"204":{"tf":1.0},"210":{"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":85,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"105":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":2.0},"60":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"13":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"k":{"df":1,"docs":{"59":{"tf":1.0}}},"m":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}},"n":{"df":1,"docs":{"87":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"d":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"132":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"103":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"58":{"tf":1.0},"96":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"144":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.4142135623730951},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"108":{"tf":1.0},"90":{"tf":3.4641016151377544},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}}}}}}}},"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":4.0},"32":{"tf":1.0}}}},"i":{"c":{"df":28,"docs":{"115":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"88":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":22,"docs":{"14":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"191":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"231":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"120":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"0":{".":{"3":{"9":{".":{"7":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"l":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"103":{"tf":2.449489742783178},"63":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"5":{"tf":1.0},"96":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"113":{"tf":1.0},"195":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"210":{"tf":2.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}}}}},"df":2,"docs":{"210":{"tf":1.0},"58":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"58":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"109":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"215":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":6,"docs":{"53":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"102":{"tf":2.0},"58":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"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":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"59":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"116":{"tf":1.0},"119":{"tf":1.0},"19":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"223":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"233":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"0":{"5":{"0":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"2":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"159":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.4142135623730951},"96":{"tf":3.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"19":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"60":{"tf":1.0},"96":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":10,"docs":{"10":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"78":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"217":{"tf":1.0},"4":{"tf":1.0}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"233":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"111":{"tf":1.0},"218":{"tf":2.6457513110645907},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":3.1622776601683795}},"e":{"6":{"4":{"df":5,"docs":{"218":{"tf":2.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"225":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"227":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}}}}},"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":2,"docs":{"219":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"90":{"tf":2.0},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"df":12,"docs":{"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"219":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":4.795831523312719},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"110":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"223":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"33":{"tf":1.0},"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":2.6457513110645907},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.6457513110645907},"82":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"181":{"tf":1.0},"215":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":3.0},"63":{"tf":1.0},"67":{"tf":2.0},"75":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"96":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"18":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"102":{"tf":2.449489742783178}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"10":{"tf":1.0},"181":{"tf":1.0},"6":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"219":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"110":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":2.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":12,"docs":{"147":{"tf":1.7320508075688772},"164":{"tf":2.23606797749979},"168":{"tf":1.0},"169":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.0},"67":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"108":{"tf":1.0},"11":{"tf":1.7320508075688772},"16":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"113":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":3.0},"67":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":5,"docs":{"2":{"tf":1.0},"52":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"140":{"tf":1.0},"31":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"88":{"tf":1.0}}},"3":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"233":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"166":{"tf":1.0}},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":2.0},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"193":{"tf":1.0}}},"df":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":{"40":{"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},"59":{"tf":1.4142135623730951},"74":{"tf":1.0},"93":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{">":{"(":{"0":{"df":3,"docs":{"87":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":2.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"141":{"tf":1.0},"147":{"tf":2.8284271247461903},"161":{"tf":1.7320508075688772},"163":{"tf":2.6457513110645907},"164":{"tf":3.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"178":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":2.6457513110645907},"185":{"tf":2.6457513110645907},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"198":{"tf":1.0},"219":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":3.0},"85":{"tf":2.449489742783178},"87":{"tf":3.4641016151377544},"88":{"tf":3.4641016151377544},"90":{"tf":3.7416573867739413},"98":{"tf":2.6457513110645907},"99":{"tf":1.7320508075688772}}}}},"f":{"df":0,"docs":{},"j":{"df":1,"docs":{"4":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"67":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}},"k":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}},"r":{"d":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"109":{"tf":1.0},"58":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"77":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":9,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"181":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":2.449489742783178},"8":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"w":{"df":7,"docs":{"126":{"tf":1.0},"144":{"tf":1.4142135623730951},"187":{"tf":1.0},"32":{"tf":1.4142135623730951},"87":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"166":{"tf":1.0},"22":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"87":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"58":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"59":{"tf":1.7320508075688772},"96":{"tf":1.0}},"r":{"df":11,"docs":{"102":{"tf":1.7320508075688772},"111":{"tf":1.0},"120":{"tf":1.0},"209":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"25":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"102":{"tf":3.3166247903554},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"1":{".":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":2.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":2.23606797749979},"96":{"tf":3.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"0":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"1":{".":{"7":{"3":{".":{"0":{"df":1,"docs":{"52":{"tf":1.0}}},"df":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":{"2":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"df":1,"docs":{"18":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"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":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}},"k":{"df":4,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"18":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"58":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"167":{"tf":1.0},"181":{"tf":1.7320508075688772},"87":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":31,"docs":{"102":{"tf":1.0},"11":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"y":{".":{".":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"63":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.7320508075688772},"219":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.0},"36":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":7,"docs":{"113":{"tf":1.0},"147":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0}}}},"y":{"a":{"a":{"a":{"df":5,"docs":{"134":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":48,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"219":{"tf":1.4142135623730951},"233":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":3.872983346207417},"96":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":7,"docs":{"102":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"219":{"tf":1.4142135623730951},"90":{"tf":2.8284271247461903}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"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":5,"docs":{"215":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":31,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"85":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"[":{"8":{"3":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"6":{"8":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"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":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"102":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"142":{"tf":1.4142135623730951},"166":{"tf":1.0},"90":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"r":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"109":{"tf":1.0},"215":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"78":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"57":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"105":{"tf":1.0},"55":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"58":{"tf":1.0}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":72,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"179":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"191":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":2.8284271247461903},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":4.58257569495584},"88":{"tf":2.449489742783178},"90":{"tf":2.23606797749979},"96":{"tf":4.123105625617661},"99":{"tf":1.0}},"e":{"(":{"[":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"179":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"231":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"221":{"tf":1.0},"224":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"225":{"tf":1.0},"228":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"191":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"67":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"90":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"214":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"179":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"83":{"tf":1.0},"90":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":12,"docs":{"13":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"99":{"tf":2.0}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"110":{"tf":1.0},"59":{"tf":1.7320508075688772},"93":{"tf":1.0}}}},"df":56,"docs":{"0":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"147":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":2.23606797749979},"192":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"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},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"90":{"tf":2.8284271247461903},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}}},">":{"(":{"0":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"90":{"tf":2.23606797749979}}}}}}}}}}}}}},"df":5,"docs":{"161":{"tf":3.1622776601683795},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"90":{"tf":4.358898943540674}},"i":{"d":{"df":1,"docs":{"90":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"161":{"tf":2.23606797749979},"90":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"90":{"tf":2.449489742783178}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"v":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":21,"docs":{"102":{"tf":1.0},"110":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"147":{"tf":1.0},"159":{"tf":1.4142135623730951},"163":{"tf":1.0},"219":{"tf":2.6457513110645907},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"67":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"87":{"tf":3.7416573867739413},"88":{"tf":2.0},"90":{"tf":4.358898943540674},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},">":{"(":{"0":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"111":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.449489742783178},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"140":{"tf":2.23606797749979},"141":{"tf":1.0},"159":{"tf":1.7320508075688772},"163":{"tf":1.0},"165":{"tf":3.3166247903554},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"90":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"60":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.6457513110645907},"88":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"141":{"tf":1.0},"142":{"tf":2.0},"166":{"tf":3.0},"184":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.6457513110645907},"90":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"90":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"3":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"20":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"87":{"tf":3.4641016151377544},"96":{"tf":2.449489742783178}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}},"s":{"df":2,"docs":{"58":{"tf":1.0},"66":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"105":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.7320508075688772}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"144":{"tf":1.4142135623730951},"18":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"m":{"3":{"2":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"106":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":2.23606797749979},"58":{"tf":3.1622776601683795},"61":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"144":{"tf":1.0},"15":{"tf":1.0},"58":{"tf":1.7320508075688772},"77":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":1,"docs":{"59":{"tf":1.0}}},"v":{"df":2,"docs":{"67":{"tf":1.0},"72":{"tf":1.0}}}},"b":{"3":{"df":1,"docs":{"56":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"3":{"tf":1.0},"34":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"36":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"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":{"0":{"tf":1.0},"176":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":8,"docs":{"120":{"tf":1.0},"125":{"tf":1.0},"173":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":2.0},"25":{"tf":1.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"82":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"5":{"0":{"0":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"181":{"tf":1.0},"96":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.7320508075688772},"22":{"tf":1.0},"32":{"tf":1.7320508075688772},"67":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"54":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":97,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"l":{"d":{"df":14,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"164":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"8":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"215":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"228":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"94":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"x":{"df":3,"docs":{"23":{"tf":2.449489742783178},"3":{"tf":1.0},"8":{"tf":1.0}},"k":{"c":{"d":{"df":1,"docs":{"205":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"67":{"tf":1.0},"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":4,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":1,"docs":{"66":{"tf":1.0}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}},"df":7,"docs":{"102":{"tf":1.4142135623730951},"142":{"tf":2.0},"166":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"134":{"tf":1.0},"16":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"x":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"6":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"1":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"'":{"*":{"'":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":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":{"85":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"34":{"tf":1.0}}}},"1":{"0":{"6":{"4":{"3":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"6":{"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":2,"docs":{"149":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"8":{"df":9,"docs":{"116":{"tf":2.449489742783178},"122":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"167":{"tf":1.0},"171":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"4":{":":{"3":{"5":{":":{"3":{"0":{".":{"4":{"3":{"3":{"5":{"0":{"1":{"9":{"8":{"0":{"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":{}},"6":{":":{"3":{"4":{".":{"6":{"5":{"2":{"5":{"8":{"7":{"4":{"1":{"2":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"_":{"1":{"4":{"1":{"_":{"1":{"8":{"3":{"_":{"4":{"6":{"0":{"_":{"4":{"6":{"9":{"_":{"2":{"3":{"1":{"_":{"7":{"3":{"1":{"_":{"6":{"8":{"7":{"_":{"3":{"0":{"3":{"_":{"7":{"1":{"5":{"_":{"8":{"8":{"4":{"_":{"1":{"0":{"5":{"_":{"7":{"2":{"7":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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.4142135623730951}},"t":{"1":{"4":{":":{"3":{"5":{":":{"3":{"1":{".":{"9":{"8":{"3":{"5":{"9":{"0":{"df":0,"docs":{},"z":{"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":{}},"5":{":":{"0":{"1":{":":{"3":{"9":{".":{"1":{"9":{"4":{"3":{"7":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"_":{"4":{"4":{"6":{"_":{"7":{"4":{"4":{"_":{"0":{"7":{"3":{"_":{"7":{"0":{"9":{"_":{"5":{"5":{"1":{"_":{"6":{"1":{"5":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"157":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"166":{"tf":1.7320508075688772},"183":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":2.0},"34":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"2":{".":{"0":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"7":{"1":{"8":{"2":{"8":{"1":{"8":{"2":{"8":{"4":{"5":{"9":{"0":{"4":{"5":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"233":{"tf":1.0}}},"4":{"df":4,"docs":{"0":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"59":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"62":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"5":{"4":{"df":1,"docs":{"90":{"tf":1.0}}},"5":{"df":2,"docs":{"154":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"4":{"7":{"_":{"4":{"8":{"3":{"_":{"6":{"4":{"7":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"88":{"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":9,"docs":{"108":{"tf":1.0},"166":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"34":{"tf":1.0},"87":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"a":{"a":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"7":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}},"u":{"a":{"a":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"3":{".":{"1":{"4":{"1":{"5":{"9":{"2":{"7":{"df":2,"docs":{"145":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"7":{"6":{"7":{"df":2,"docs":{"150":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"179":{"tf":1.0},"210":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"0":{"_":{"2":{"8":{"2":{"_":{"3":{"6":{"6":{"_":{"9":{"2":{"0":{"_":{"9":{"3":{"8":{"_":{"4":{"6":{"3":{"_":{"4":{"6":{"3":{"_":{"3":{"7":{"4":{"_":{"6":{"0":{"7":{"_":{"4":{"3":{"1":{"_":{"7":{"6":{"8":{"_":{"2":{"1":{"1":{"_":{"4":{"5":{"5":{"df":2,"docs":{"153":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"153":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"6":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":4,"docs":{"166":{"tf":1.7320508075688772},"18":{"tf":1.0},"233":{"tf":1.0},"34":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.0}}},"2":{"df":1,"docs":{"140":{"tf":1.0}}},"_":{"2":{"9":{"4":{"_":{"9":{"6":{"7":{"_":{"2":{"9":{"5":{"df":2,"docs":{"156":{"tf":1.7320508075688772},"88":{"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":5,"docs":{"233":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}},"5":{"0":{"0":{"df":1,"docs":{"32":{"tf":1.0}}},"2":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"99":{"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":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"34":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"a":{"a":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"2":{"6":{"9":{"2":{"3":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"1":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"_":{"5":{"3":{"5":{"df":2,"docs":{"155":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"a":{"a":{"a":{"a":{"df":3,"docs":{"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"6":{"c":{"3":{"5":{"5":{"8":{"a":{"a":{"d":{"2":{"4":{"2":{"2":{"4":{"8":{"5":{"2":{"a":{"9":{"5":{"8":{"2":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"1":{"7":{"8":{"4":{"0":{"2":{"c":{"b":{"3":{"6":{"7":{"9":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"32":{"tf":1.0},"99":{"tf":2.0}}},"9":{"0":{"0":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"19":{"tf":1.0}}},"6":{"df":3,"docs":{"61":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"_":{"2":{"2":{"3":{"_":{"3":{"7":{"2":{"_":{"0":{"3":{"6":{"_":{"8":{"5":{"4":{"_":{"7":{"7":{"5":{"_":{"8":{"0":{"7":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"152":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"6":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}},"_":{"df":1,"docs":{"85":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"17":{"tf":2.0},"23":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}}},"a":{"a":{"a":{"a":{"a":{"df":15,"docs":{"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"147":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"73":{"tf":2.0},"79":{"tf":2.0},"8":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"96":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"q":{"df":5,"docs":{"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"b":{"a":{"df":5,"docs":{"134":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{},"q":{"df":3,"docs":{"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"163":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"90":{"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":3,"docs":{"22":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"}":{"$":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"147":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"33":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"df":2,"docs":{"82":{"tf":1.0},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":1,"docs":{"88":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"22":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"215":{"tf":1.0},"58":{"tf":3.7416573867739413},"61":{"tf":1.4142135623730951},"67":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"j":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"52":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"96":{"tf":3.872983346207417}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"217":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"32":{"tf":2.8284271247461903}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"64":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"144":{"tf":2.0},"162":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":59,"docs":{"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.0},"58":{"tf":3.4641016151377544},"59":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"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":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"'":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":9,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"58":{"tf":1.0}},"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":{"3":{"tf":1.0},"58":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":21,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":4.123105625617661},"59":{"tf":2.23606797749979},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"80":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"y":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"1":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"2":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"3":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"4":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":28,"docs":{"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":2.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"2":{"9":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"0":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"(":{"(":{"a":{"c":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"147":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":3.7416573867739413},"23":{"tf":1.0},"36":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"96":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"17":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"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":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"180":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"90":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"90":{"tf":2.6457513110645907}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":2.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":1.7320508075688772},"22":{"tf":2.0},"24":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"233":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0}}}},"df":8,"docs":{"40":{"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},"59":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":2.449489742783178}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":2.6457513110645907},"38":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"58":{"tf":1.7320508075688772},"85":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":3.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":2.0},"96":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"192":{"tf":1.0},"215":{"tf":1.0}}},"y":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":162,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"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":1.0},"139":{"tf":1.0},"14":{"tf":2.0},"140":{"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.8284271247461903},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":2.0},"24":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":3.1622776601683795},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":3.0},"69":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":2.0},"90":{"tf":2.8284271247461903},"96":{"tf":3.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":4,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"193":{"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":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":2.23606797749979},"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"@":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}}},"df":4,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"64":{"tf":2.6457513110645907},"66":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"37":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"41":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"1":{"0":{"0":{"2":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"6":{"4":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"2":{"8":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"5":{"5":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"1":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"6":{"1":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"37":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"49":{"tf":1.4142135623730951}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"d":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"167":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":184,"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.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},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"53":{"tf":2.8284271247461903},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"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},"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},"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}}},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"103":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":2.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"59":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"166":{"tf":1.0},"59":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"41":{"tf":1.0},"63":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"90":{"tf":1.0},"96":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"96":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"58":{"tf":2.8284271247461903}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"a":{"df":9,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"105":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"26":{"tf":1.0},"60":{"tf":1.0},"96":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":2.449489742783178},"58":{"tf":2.23606797749979},"78":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":14,"docs":{"111":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":2.6457513110645907},"115":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"58":{"tf":1.0}},"o":{"b":{"df":31,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"141":{"tf":1.0},"142":{"tf":3.7416573867739413},"144":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178},"90":{"tf":2.23606797749979},"98":{"tf":2.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"58":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":7,"docs":{"184":{"tf":2.0},"185":{"tf":2.0},"205":{"tf":1.0},"23":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":2.23606797749979},"88":{"tf":1.0}}},"l":{"df":29,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"126":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":1.0},"143":{"tf":3.7416573867739413},"159":{"tf":1.7320508075688772},"163":{"tf":2.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"199":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"57":{"tf":1.0},"59":{"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":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"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":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"g":{"df":4,"docs":{"110":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":2.0},"193":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"36":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"33":{"tf":2.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":2.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"2":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"6":{"9":{"df":0,"docs":{},"f":{"4":{"4":{"2":{"9":{"9":{"8":{"df":0,"docs":{},"e":{"4":{"c":{"d":{"a":{"4":{"6":{"1":{"9":{"1":{"6":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"a":{"9":{"b":{"c":{"9":{"1":{"4":{"1":{"8":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"\"":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"0":{"tf":1.0},"120":{"tf":1.0},"134":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"96":{"tf":2.449489742783178}}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"147":{"tf":1.0},"17":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":2.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"98":{"tf":2.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":87,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":2.8284271247461903},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":2.0},"124":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"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},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":2.0},"181":{"tf":1.0},"187":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":2.8284271247461903},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":2.23606797749979},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979},"67":{"tf":3.1622776601683795},"72":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":3.3166247903554},"87":{"tf":3.0},"88":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":4.58257569495584}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"116":{"tf":1.0},"125":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":187,"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":2.23606797749979},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":2.0},"144":{"tf":2.23606797749979},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":2.0},"160":{"tf":2.0},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":2.0},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":2.0},"167":{"tf":1.7320508075688772},"168":{"tf":2.449489742783178},"169":{"tf":2.449489742783178},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"36":{"tf":1.0},"53":{"tf":2.449489742783178},"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":2.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":3.872983346207417},"89":{"tf":1.0},"90":{"tf":2.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}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":173,"docs":{"100":{"tf":2.6457513110645907},"101":{"tf":2.8284271247461903},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"150":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":2.6457513110645907},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"170":{"tf":2.6457513110645907},"171":{"tf":2.6457513110645907},"172":{"tf":2.449489742783178},"173":{"tf":2.449489742783178},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":2.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"188":{"tf":2.0},"189":{"tf":2.0},"19":{"tf":2.8284271247461903},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"210":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"23":{"tf":3.605551275463989},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"24":{"tf":2.8284271247461903},"25":{"tf":2.23606797749979},"26":{"tf":2.449489742783178},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.0},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"36":{"tf":2.449489742783178},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":3.0},"59":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"67":{"tf":3.0},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"72":{"tf":2.23606797749979},"73":{"tf":2.449489742783178},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":2.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.6457513110645907},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":3.3166247903554},"87":{"tf":4.0},"88":{"tf":3.0},"9":{"tf":1.7320508075688772},"90":{"tf":2.6457513110645907},"94":{"tf":1.0},"95":{"tf":2.449489742783178},"96":{"tf":6.48074069840786},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":10,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"19":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"193":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"52":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"195":{"tf":1.0},"200":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"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":{"31":{"tf":1.0}}}}}}},"i":{"d":{"df":14,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":2.23606797749979},"231":{"tf":1.0},"232":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"52":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"159":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"144":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"233":{"tf":1.0},"58":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"3":{"tf":1.0},"52":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.0}},"k":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"54":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"174":{"tf":2.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"167":{"tf":1.0},"179":{"tf":2.0}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"n":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":15,"docs":{"215":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"7":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"31":{"tf":1.0},"62":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":5,"docs":{"112":{"tf":1.0},"115":{"tf":2.23606797749979},"21":{"tf":1.0},"25":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"215":{"tf":1.0},"3":{"tf":1.0},"6":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.7320508075688772},"58":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0},"58":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}},"u":{"d":{"df":3,"docs":{"58":{"tf":3.3166247903554},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":19,"docs":{"116":{"tf":1.0},"137":{"tf":1.7320508075688772},"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"215":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":2.6457513110645907},"61":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"78":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"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":{"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"31":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"3":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"233":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.8284271247461903},"58":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"41":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.449489742783178},"78":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}},"x":{"df":2,"docs":{"58":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"120":{"tf":1.0},"139":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"103":{"tf":1.4142135623730951},"112":{"tf":1.0},"34":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"39":{"tf":1.0},"52":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"i":{"d":{"df":3,"docs":{"29":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0}}}}}},"`":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"102":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"96":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":23,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}}}}}}}},"df":6,"docs":{"232":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"df":36,"docs":{"102":{"tf":3.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"184":{"tf":2.8284271247461903},"185":{"tf":2.8284271247461903},"19":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":2.8284271247461903},"204":{"tf":1.7320508075688772},"210":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"23":{"tf":2.8284271247461903},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":4.898979485566356},"96":{"tf":4.0},"98":{"tf":2.8284271247461903},"99":{"tf":2.449489742783178}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"165":{"tf":1.0},"39":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"167":{"tf":1.0},"176":{"tf":2.0},"214":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":2.0},"19":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"11":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":2.6457513110645907},"108":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"167":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"103":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":2.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":2.449489742783178},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"201":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"120":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"163":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":3.605551275463989}}}}},"u":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"52":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":10,"docs":{"11":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":31,"docs":{"103":{"tf":3.4641016151377544},"116":{"tf":2.449489742783178},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":2.23606797749979},"128":{"tf":2.23606797749979},"129":{"tf":2.23606797749979},"130":{"tf":2.23606797749979},"131":{"tf":2.6457513110645907},"132":{"tf":2.6457513110645907},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979}}}},"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":{"174":{"tf":1.0}}}}}}}},"df":17,"docs":{"108":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":2.0},"119":{"tf":2.0},"144":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.4142135623730951},"174":{"tf":2.0},"179":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}}},"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"87":{"tf":2.449489742783178}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"233":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"28":{"tf":1.7320508075688772},"29":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":31,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":2.0},"67":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":123,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.8284271247461903},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"23":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"96":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"202":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"56":{"tf":2.0},"90":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"31":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"o":{"df":0,"docs":{},"y":{"df":36,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"3":{"tf":2.6457513110645907},"33":{"tf":1.0},"36":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":2.6457513110645907},"55":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"7":{"tf":3.0},"70":{"tf":2.23606797749979},"71":{"tf":2.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907},"75":{"tf":1.0},"76":{"tf":2.6457513110645907},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":2.8284271247461903},"82":{"tf":2.449489742783178},"9":{"tf":2.8284271247461903},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"195":{"tf":1.0},"203":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"176":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"215":{"tf":1.4142135623730951},"34":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":3.1622776601683795},"74":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":2.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"11":{"tf":2.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"233":{"tf":1.0},"36":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"6":{".":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":52,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"2":{"tf":2.0},"3":{"tf":2.0},"36":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.7320508075688772},"52":{"tf":1.0},"6":{"tf":2.449489742783178},"62":{"tf":2.0},"64":{"tf":2.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.8284271247461903},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":2.0},"85":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"i":{"a":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"l":{"\\":{"0":{"0":{"\\":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"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":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"103":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"114":{"tf":1.0},"22":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"75":{"tf":1.0},"83":{"tf":1.0}}}},"y":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"181":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"105":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"59":{"tf":1.0},"67":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"32":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":182,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"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},"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},"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}}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"31":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"48":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"59":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"87":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"33":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"103":{"tf":1.0},"233":{"tf":1.4142135623730951},"31":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"67":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"59":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"88":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"113":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}}}},"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"136":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":3.872983346207417},"67":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"7":{"tf":1.0},"90":{"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":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"167":{"tf":1.0},"169":{"tf":2.0},"18":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"108":{"tf":2.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"2":{"tf":1.0},"62":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"108":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"58":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"10":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"58":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"87":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":31,"docs":{"107":{"tf":2.0},"111":{"tf":1.0},"192":{"tf":2.23606797749979},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"2":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"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.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"159":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"163":{"tf":1.0},"90":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.7320508075688772},"144":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":3.605551275463989},"32":{"tf":3.4641016151377544},"33":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":2.449489742783178}}}}}},"s":{"2":{"0":{"2":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"63":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"19":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":10,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.0},"27":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"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":{"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":113,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"85":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"90":{"tf":2.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"166":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"175":{"tf":1.0},"181":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.0},"67":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"96":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"59":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"59":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"215":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772},"93":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"87":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":120,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"96":{"tf":2.8284271247461903},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"s":{"df":9,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"215":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"16":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"23":{"tf":2.449489742783178},"32":{"tf":2.449489742783178},"4":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"36":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"144":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"126":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"87":{"tf":1.0},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"p":{":":{"/":{"/":{"d":{"df":0,"docs":{},"f":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"13":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.0},"23":{"tf":2.0},"24":{"tf":2.6457513110645907},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"103":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"83":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":20,"docs":{"0":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"23":{"tf":1.7320508075688772},"3":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":2.0},"67":{"tf":1.0},"7":{"tf":1.0},"82":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}}}}},"l":{"(":{"0":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"198":{"tf":1.0},"90":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"29":{"tf":1.0},"33":{"tf":2.23606797749979},"36":{"tf":1.0},"39":{"tf":1.0}}}},"d":{"df":6,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"165":{"tf":2.23606797749979}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"147":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}},"x":{"df":2,"docs":{"10":{"tf":1.0},"108":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"141":{"tf":1.0},"145":{"tf":4.0},"88":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"110":{"tf":1.7320508075688772},"141":{"tf":1.0},"146":{"tf":4.0},"88":{"tf":2.6457513110645907},"92":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}},"m":{"a":{"a":{"a":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":28,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"df":6,"docs":{"2":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"a":{"a":{"a":{"df":5,"docs":{"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"106":{"tf":1.0}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":2.23606797749979}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"4":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"df":5,"docs":{"115":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"n":{"c":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"120":{"tf":1.0},"186":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":6,"docs":{"141":{"tf":1.0},"147":{"tf":3.605551275463989},"184":{"tf":1.0},"185":{"tf":1.0},"88":{"tf":2.6457513110645907},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"147":{"tf":1.0}}},"df":23,"docs":{"102":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"16":{"tf":1.0},"161":{"tf":1.4142135623730951},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"205":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"87":{"tf":1.0},"90":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"215":{"tf":1.0},"29":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":13,"docs":{"103":{"tf":1.0},"18":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"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":1,"docs":{"196":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":2,"docs":{"59":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"191":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.4142135623730951}}},"df":1,"docs":{"153":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"m":{"b":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"85":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"i":{"b":{"df":6,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"54":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":8,"docs":{"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"85":{"tf":1.0},"87":{"tf":1.0}},"o":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"58":{"tf":3.3166247903554},"60":{"tf":1.0}}}},"w":{"df":4,"docs":{"218":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"225":{"tf":1.7320508075688772},"233":{"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":{"58":{"tf":1.0},"87":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"69":{"tf":1.0}}}}}},"h":{"1":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":6,"docs":{"109":{"tf":1.0},"14":{"tf":1.0},"32":{"tf":4.242640687119285},"90":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"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":1,"docs":{"10":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"18":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"34":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.6457513110645907},"209":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"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":6,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"233":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"164":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"8":{"tf":1.0}}}},"p":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"233":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":15,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":8,"docs":{"103":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"34":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"108":{"tf":1.4142135623730951},"140":{"tf":1.0},"34":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"61":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"233":{"tf":1.0},"29":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":2.0},"17":{"tf":1.0}}}}}}}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"/":{"?":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"98":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":5,"docs":{"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"22":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"df":9,"docs":{"182":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"205":{"tf":1.7320508075688772},"22":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"98":{"tf":1.0}}}}}}}}}},"df":28,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":2.0}}}}}}}}},"s":{":":{"/":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"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":{"/":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"2":{"0":{"6":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"62":{"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":{"d":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"k":{"c":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"6":{"4":{"2":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"0":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"c":{"'":{"df":2,"docs":{"59":{"tf":1.0},"85":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"102":{"tf":1.0},"125":{"tf":1.0},"163":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"96":{"tf":2.0}},"l":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"123":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"137":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"140":{"tf":1.0}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"173":{"tf":1.0},"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":2,"docs":{"128":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"d":{"1":{"2":{"8":{"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":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"163":{"tf":1.0},"96":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"135":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"178":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"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":{"136":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.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":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"102":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"102":{"tf":1.0},"232":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"227":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"223":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"180":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"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":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"0":{"5":{"0":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":16,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"136":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"25":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":99,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":5.477225575051661},"59":{"tf":3.0},"60":{"tf":2.6457513110645907},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":3.0},"99":{"tf":1.0}},"p":{"df":14,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0}}},"r":{"c":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"25":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"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":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"\"":{">":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":9,"docs":{"161":{"tf":2.23606797749979},"167":{"tf":1.0},"173":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":4.58257569495584},"94":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"52":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"58":{"tf":1.7320508075688772},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":132,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"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.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.7320508075688772},"90":{"tf":2.6457513110645907},"96":{"tf":3.3166247903554},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":1,"docs":{"144":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"29":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"106":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.7320508075688772},"90":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"83":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"19":{"tf":1.0},"233":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"63":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":2,"docs":{"85":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":7,"docs":{"58":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0}}}},"o":{"df":2,"docs":{"23":{"tf":1.0},"8":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"64":{"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":1,"docs":{"58":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"101":{"tf":1.7320508075688772},"120":{"tf":2.0},"182":{"tf":1.0},"186":{"tf":2.6457513110645907},"99":{"tf":1.4142135623730951}},"i":{"df":6,"docs":{"186":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"120":{"tf":1.0},"219":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"33":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"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":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"182":{"tf":1.0},"187":{"tf":1.7320508075688772},"33":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"117":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"2":{"tf":2.8284271247461903},"206":{"tf":1.0},"3":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":3.0},"62":{"tf":3.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"82":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"206":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"147":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"166":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":2.0},"34":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.7320508075688772},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"1":{"6":{"df":3,"docs":{"141":{"tf":1.0},"150":{"tf":4.0},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"3":{"2":{"df":4,"docs":{"141":{"tf":1.0},"151":{"tf":4.0},"166":{"tf":3.4641016151377544},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"141":{"tf":1.0},"152":{"tf":4.0},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"141":{"tf":1.0},"149":{"tf":4.0},"88":{"tf":2.6457513110645907}}},"df":4,"docs":{"140":{"tf":2.0},"141":{"tf":1.0},"148":{"tf":4.0},"88":{"tf":3.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.0},"114":{"tf":2.0},"58":{"tf":2.6457513110645907}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"n":{"d":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"f":{"a":{"c":{"df":4,"docs":{"73":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"32":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"20":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"58":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"61":{"tf":1.0},"85":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"10":{"tf":1.7320508075688772},"106":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"'":{"df":7,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"80":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"107":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":2.23606797749979},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.449489742783178},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"s":{"df":5,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"90":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":2.0},"90":{"tf":1.0},"92":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"90":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"16":{"tf":1.4142135623730951},"53":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":2.0}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":7,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":9,"docs":{"163":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":2.6457513110645907},"23":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"87":{"tf":3.1622776601683795},"88":{"tf":1.0},"90":{"tf":3.3166247903554}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"6":{"tf":2.0},"75":{"tf":2.0}}}},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"147":{"tf":1.0},"58":{"tf":1.0}},"n":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"56":{"tf":2.0},"90":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}},"m":{"df":0,"docs":{},"j":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"34":{"tf":1.0},"59":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"96":{"tf":1.0}},"y":{"=":{"1":{"0":{"1":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"108":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"112":{"tf":1.0},"115":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"119":{"tf":1.0},"222":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"29":{"tf":1.0},"53":{"tf":1.0}}}},"t":{"'":{"df":6,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"106":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":2.23606797749979},"19":{"tf":1.0},"233":{"tf":2.0},"34":{"tf":3.3166247903554},"58":{"tf":2.0},"59":{"tf":2.23606797749979},"85":{"tf":2.449489742783178},"87":{"tf":2.8284271247461903}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":10,"docs":{"2":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"k":{"df":2,"docs":{"103":{"tf":1.0},"20":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"o":{"a":{"d":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"216":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":2.23606797749979},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"74":{"tf":2.449489742783178},"75":{"tf":2.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"t":{"df":3,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"106":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"59":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":4,"docs":{"140":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{";":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"9":{"tf":2.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"26":{"tf":1.0},"38":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":28,"docs":{"100":{"tf":2.23606797749979},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"58":{"tf":1.7320508075688772},"62":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"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":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"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":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"169":{"tf":1.0}}}}}}}},"df":5,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"36":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"p":{"(":{"(":{"_":{"df":1,"docs":{"90":{"tf":1.0}}},"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":2.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"h":{".":{"df":2,"docs":{"146":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"145":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}}},"y":{"b":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"87":{"tf":2.0},"90":{"tf":3.872983346207417},"94":{"tf":1.4142135623730951}}},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"136":{"tf":1.0},"138":{"tf":1.7320508075688772},"17":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"187":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"22":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"67":{"tf":2.8284271247461903},"72":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}},"df":1,"docs":{"210":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"df":44,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":2.0},"147":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"205":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"36":{"tf":2.23606797749979},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"78":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":3.3166247903554},"86":{"tf":1.7320508075688772},"87":{"tf":3.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":4.123105625617661},"98":{"tf":1.0},"99":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"b":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"34":{"tf":1.4142135623730951}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"108":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"196":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":7,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"107":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"52":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"193":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}}}},"s":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}},"g":{"df":7,"docs":{"116":{"tf":2.449489742783178},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.7320508075688772},"87":{"tf":1.0}},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"v":{"df":1,"docs":{"52":{"tf":1.0}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"78":{"tf":3.0},"79":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.7320508075688772},"147":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":2.0}}}},"t":{"1":{"6":{"df":6,"docs":{"141":{"tf":1.0},"155":{"tf":4.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"141":{"tf":1.0},"156":{"tf":4.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":2.6457513110645907},"99":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{">":{"(":{"0":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"141":{"tf":1.0},"157":{"tf":4.0},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":2.8284271247461903},"96":{"tf":4.358898943540674}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"154":{"tf":4.0},"219":{"tf":1.4142135623730951},"88":{"tf":3.0},"90":{"tf":2.6457513110645907}}},"df":7,"docs":{"119":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"141":{"tf":1.0},"153":{"tf":4.0},"171":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951}},"e":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":5.196152422706632}}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":5.196152422706632}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"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":{"233":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"103":{"tf":1.0},"115":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"114":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":1.0}}}}},"w":{"df":11,"docs":{"139":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":2.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":3.4641016151377544}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"n":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":2.449489742783178}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":2.0},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"2":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"159":{"tf":2.0},"174":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"144":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}},"i":{"df":5,"docs":{"116":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"134":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"96":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"134":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"df":8,"docs":{"115":{"tf":1.0},"215":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"106":{"tf":2.449489742783178},"19":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"3":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}},"x":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"158":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.0},"158":{"tf":4.123105625617661},"159":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"165":{"tf":2.6457513110645907},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"88":{"tf":3.605551275463989},"99":{"tf":1.4142135623730951}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":20,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"172":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.23606797749979},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"90":{"tf":3.3166247903554},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"222":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":2,"docs":{"163":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"l":{"d":{"df":181,"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.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},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"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},"88":{"tf":1.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}}},"df":0,"docs":{}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"df":7,"docs":{"15":{"tf":1.0},"165":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"106":{"tf":1.0},"56":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"109":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"159":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"6":{"4":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"159":{"tf":1.0}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":2.0}}}}}}}},"df":11,"docs":{"141":{"tf":1.0},"159":{"tf":3.1622776601683795},"174":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"111":{"tf":1.0},"233":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":1,"docs":{"58":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0},"27":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"178":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"49":{"tf":1.0},"62":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":1,"docs":{"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":2.8284271247461903}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":2.449489742783178},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"67":{"tf":1.0},"85":{"tf":2.23606797749979},"88":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"58":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"14":{"tf":1.0},"144":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"23":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{"$":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0}}}},"y":{"df":1,"docs":{"58":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"r":{"df":5,"docs":{"183":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"163":{"tf":1.0},"167":{"tf":1.0},"177":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"24":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"186":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"85":{"tf":1.0},"87":{"tf":2.0},"90":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}},"n":{"df":1,"docs":{"90":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.0},"215":{"tf":2.6457513110645907},"216":{"tf":2.23606797749979},"217":{"tf":2.23606797749979}}}}}}},"o":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"18":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":6,"docs":{"182":{"tf":1.0},"188":{"tf":1.7320508075688772},"3":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"59":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"182":{"tf":1.0},"189":{"tf":1.7320508075688772},"32":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":3,"docs":{"147":{"tf":1.0},"160":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":3,"docs":{"134":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":29,"docs":{"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"134":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.7320508075688772},"160":{"tf":4.242640687119285},"161":{"tf":2.23606797749979},"163":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"58":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"90":{"tf":3.872983346207417},"96":{"tf":2.8284271247461903},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":2.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"167":{"tf":1.0},"178":{"tf":2.23606797749979},"32":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":1,"docs":{"148":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}},"df":1,"docs":{"153":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"m":{"b":{"df":1,"docs":{"166":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"90":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"192":{"tf":1.0},"194":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":2.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"96":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"58":{"tf":1.0}},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"31":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":87,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"97":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{".":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"10":{"tf":1.4142135623730951},"105":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"216":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"75":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"59":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":14,"docs":{"159":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.449489742783178},"193":{"tf":1.0},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"36":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772},"60":{"tf":2.0}}}}},"df":1,"docs":{"52":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"0":{"tf":1.0},"192":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"195":{"tf":1.0},"207":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"208":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"217":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"q":{"a":{"a":{"a":{"df":0,"docs":{},"q":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":73,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.8284271247461903},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":2.23606797749979},"160":{"tf":2.0},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":2.6457513110645907},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":2.449489742783178},"191":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"205":{"tf":1.0},"219":{"tf":2.449489742783178},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":3.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":5.0},"87":{"tf":3.0},"88":{"tf":2.8284271247461903},"90":{"tf":3.3166247903554},"96":{"tf":4.358898943540674},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"y":{"(":{"[":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"142":{"tf":1.0},"168":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"98":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"156":{"tf":1.0},"222":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"157":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.0}}},"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"160":{"tf":1.0},"176":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"164":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.4142135623730951}},"j":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0}},"s":{"_":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"18":{"tf":1.0},"60":{"tf":1.0}}}},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"195":{"tf":1.0},"209":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"116":{"tf":2.449489742783178},"118":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"134":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":3.1622776601683795}}}}}}},"d":{"df":9,"docs":{"218":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"34":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"90":{"tf":2.0},"94":{"tf":1.0}},"i":{"df":3,"docs":{"59":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"58":{"tf":1.0},"93":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"147":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":2,"docs":{"128":{"tf":1.0},"130":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"15":{"tf":1.0},"166":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":13,"docs":{"102":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"161":{"tf":3.3166247903554},"184":{"tf":2.449489742783178},"185":{"tf":2.449489742783178},"204":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"59":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":3.0},"90":{"tf":4.358898943540674},"98":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"1":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"90":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":1,"docs":{"90":{"tf":2.449489742783178}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":8,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":149,"docs":{"100":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"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},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"116":{"tf":1.7320508075688772},"120":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":2.0},"138":{"tf":2.0},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.4142135623730951},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"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":{"59":{"tf":1.7320508075688772}}}}}}}}}}},"df":3,"docs":{"233":{"tf":1.0},"34":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"219":{"tf":1.0},"58":{"tf":2.449489742783178},"78":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"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":1,"docs":{"102":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"'":{"df":2,"docs":{"178":{"tf":1.0},"31":{"tf":1.0}}},"df":16,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"6":{"tf":2.6457513110645907},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"74":{"tf":2.0},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"58":{"tf":2.449489742783178},"60":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":3,"docs":{"116":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":2,"docs":{"216":{"tf":1.0},"54":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"52":{"tf":1.0},"83":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"72":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"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":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":18,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":2.449489742783178},"34":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"144":{"tf":1.0},"22":{"tf":1.7320508075688772},"36":{"tf":1.0},"52":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"b":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"d":{"b":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"14":{"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":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"141":{"tf":1.0},"162":{"tf":3.872983346207417},"18":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"20":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"103":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":9,"docs":{"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":1.0},"34":{"tf":1.0},"96":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":2.0}}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":2,"docs":{"53":{"tf":1.0},"67":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":6,"docs":{"17":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"110":{"tf":1.0},"58":{"tf":1.4142135623730951},"72":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":104,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":3.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"67":{"tf":2.23606797749979},"85":{"tf":2.449489742783178},"87":{"tf":2.6457513110645907},"88":{"tf":1.7320508075688772},"90":{"tf":5.196152422706632},"96":{"tf":3.872983346207417},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"v":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"f":{"df":1,"docs":{"10":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"33":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"58":{"tf":2.0},"59":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"36":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"41":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"52":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":27,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"52":{"tf":1.0},"80":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"216":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"59":{"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":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"10":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":1,"docs":{"52":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"147":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"34":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":2.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"204":{"tf":1.0},"210":{"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":85,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":2.0},"60":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"13":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"k":{"df":1,"docs":{"59":{"tf":1.0}}},"m":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}},"n":{"df":1,"docs":{"87":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"d":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"132":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"103":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"58":{"tf":1.0},"96":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"144":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.4142135623730951},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"108":{"tf":1.0},"90":{"tf":3.4641016151377544},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}}}}}}}},"df":10,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":2.449489742783178},"13":{"tf":2.8284271247461903},"14":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":4.242640687119285},"18":{"tf":1.0},"32":{"tf":1.0}}}},"i":{"c":{"df":28,"docs":{"115":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":3.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"88":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":22,"docs":{"14":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":2.0},"18":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"191":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"231":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"120":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"0":{".":{"3":{"9":{".":{"7":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"l":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"103":{"tf":2.449489742783178},"63":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"5":{"tf":1.0},"96":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"113":{"tf":1.0},"195":{"tf":1.0},"210":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"210":{"tf":2.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}}}}},"df":2,"docs":{"210":{"tf":1.0},"58":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"58":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"109":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"215":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":6,"docs":{"53":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"102":{"tf":2.0},"58":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"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":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"59":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"116":{"tf":1.0},"119":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"233":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"0":{"5":{"0":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"2":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"159":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.4142135623730951},"96":{"tf":3.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"19":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"60":{"tf":1.0},"96":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":10,"docs":{"10":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"78":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"217":{"tf":1.0},"4":{"tf":1.0}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"233":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":23,"docs":{"111":{"tf":1.0},"218":{"tf":3.0},"219":{"tf":2.0},"220":{"tf":2.0},"221":{"tf":2.0},"222":{"tf":2.0},"223":{"tf":2.0},"224":{"tf":2.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":1.7320508075688772},"90":{"tf":3.3166247903554},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"6":{"4":{"df":5,"docs":{"218":{"tf":2.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"225":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"227":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}}}}},"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":2,"docs":{"219":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"90":{"tf":2.0},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"df":12,"docs":{"108":{"tf":1.0},"110":{"tf":1.7320508075688772},"219":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":4.795831523312719},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"110":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"223":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"33":{"tf":1.0},"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"211":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":2.8284271247461903},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.8284271247461903},"82":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"181":{"tf":1.0},"215":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":3.0},"63":{"tf":1.0},"67":{"tf":2.0},"75":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"96":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"18":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"102":{"tf":2.449489742783178}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"212":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"10":{"tf":1.0},"181":{"tf":1.0},"6":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"219":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"110":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":2.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":12,"docs":{"147":{"tf":1.7320508075688772},"164":{"tf":2.23606797749979},"168":{"tf":1.0},"169":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.0},"67":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":19,"docs":{"108":{"tf":1.0},"11":{"tf":2.23606797749979},"16":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"113":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":3.0},"67":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":5,"docs":{"2":{"tf":1.0},"52":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"140":{"tf":1.0},"31":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"88":{"tf":1.0}}},"3":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"233":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"166":{"tf":1.0}},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"193":{"tf":1.0}}},"df":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":{"40":{"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},"59":{"tf":1.4142135623730951},"74":{"tf":1.0},"93":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{">":{"(":{"0":{"df":3,"docs":{"87":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":2.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"141":{"tf":1.0},"147":{"tf":2.8284271247461903},"161":{"tf":1.7320508075688772},"163":{"tf":2.6457513110645907},"164":{"tf":3.3166247903554},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"178":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":2.6457513110645907},"185":{"tf":2.6457513110645907},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"198":{"tf":1.0},"219":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":3.0},"85":{"tf":2.449489742783178},"87":{"tf":3.4641016151377544},"88":{"tf":3.4641016151377544},"90":{"tf":3.7416573867739413},"98":{"tf":2.6457513110645907},"99":{"tf":1.7320508075688772}}}}},"f":{"df":0,"docs":{},"j":{"df":1,"docs":{"4":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"67":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}},"k":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}},"r":{"d":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"109":{"tf":1.0},"58":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"77":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":9,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"181":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":2.449489742783178},"8":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"w":{"df":7,"docs":{"126":{"tf":1.0},"144":{"tf":1.4142135623730951},"187":{"tf":1.0},"32":{"tf":1.4142135623730951},"87":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"166":{"tf":1.0},"22":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"87":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"58":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":2.0},"183":{"tf":1.0},"59":{"tf":1.7320508075688772},"96":{"tf":1.0}},"r":{"df":11,"docs":{"102":{"tf":2.23606797749979},"111":{"tf":1.0},"120":{"tf":1.0},"209":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"25":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"102":{"tf":3.3166247903554},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"1":{".":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":2.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":2.23606797749979},"96":{"tf":3.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"0":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"1":{".":{"7":{"3":{".":{"0":{"df":1,"docs":{"52":{"tf":1.0}}},"df":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":{"2":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"df":1,"docs":{"18":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"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":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}},"k":{"df":4,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"18":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"58":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"167":{"tf":1.0},"181":{"tf":2.23606797749979},"87":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":31,"docs":{"102":{"tf":1.0},"11":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"y":{".":{".":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"63":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.7320508075688772},"219":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.0},"36":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":7,"docs":{"113":{"tf":1.0},"147":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0}}}},"y":{"a":{"a":{"a":{"df":5,"docs":{"134":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":48,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"219":{"tf":1.4142135623730951},"233":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":3.872983346207417},"96":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":7,"docs":{"102":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"219":{"tf":1.4142135623730951},"90":{"tf":2.8284271247461903}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"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":5,"docs":{"215":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":31,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"63":{"tf":1.0},"73":{"tf":1.7320508075688772},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"85":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"[":{"8":{"3":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"6":{"8":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"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":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"102":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"142":{"tf":1.4142135623730951},"166":{"tf":1.0},"90":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"r":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"109":{"tf":1.0},"215":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"78":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"213":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"57":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"58":{"tf":1.0}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":72,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"179":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"191":{"tf":2.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":2.8284271247461903},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":4.69041575982343},"88":{"tf":2.449489742783178},"90":{"tf":2.23606797749979},"96":{"tf":4.123105625617661},"99":{"tf":1.0}},"e":{"(":{"[":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"179":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"231":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"221":{"tf":1.0},"224":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"225":{"tf":1.0},"228":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"191":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"67":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"90":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"214":{"tf":1.7320508075688772}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"179":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":2.0},"189":{"tf":2.0},"58":{"tf":1.4142135623730951},"83":{"tf":1.0},"90":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":12,"docs":{"13":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"99":{"tf":2.0}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"110":{"tf":1.0},"59":{"tf":1.7320508075688772},"93":{"tf":1.0}}}},"df":56,"docs":{"0":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"147":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":2.23606797749979},"192":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"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},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"90":{"tf":2.8284271247461903},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}}},">":{"(":{"0":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"90":{"tf":2.23606797749979}}}}}}}}}}}}}},"df":5,"docs":{"161":{"tf":3.1622776601683795},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"90":{"tf":4.358898943540674}},"i":{"d":{"df":1,"docs":{"90":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"161":{"tf":2.23606797749979},"90":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"90":{"tf":2.449489742783178}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"v":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":21,"docs":{"102":{"tf":1.0},"110":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"147":{"tf":1.0},"159":{"tf":1.4142135623730951},"163":{"tf":1.0},"219":{"tf":2.6457513110645907},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"67":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"87":{"tf":3.7416573867739413},"88":{"tf":2.0},"90":{"tf":4.358898943540674},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},">":{"(":{"0":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"111":{"tf":1.0},"192":{"tf":2.23606797749979},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"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},"50":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.449489742783178},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"140":{"tf":2.23606797749979},"141":{"tf":1.0},"159":{"tf":1.7320508075688772},"163":{"tf":1.0},"165":{"tf":3.605551275463989},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"90":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"60":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.6457513110645907},"88":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"141":{"tf":1.0},"142":{"tf":2.0},"166":{"tf":3.3166247903554},"184":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.6457513110645907},"90":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"90":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"167":{"tf":1.0},"172":{"tf":2.0},"2":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"3":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"20":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"87":{"tf":3.4641016151377544},"96":{"tf":2.449489742783178}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}},"s":{"df":2,"docs":{"58":{"tf":1.0},"66":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.7320508075688772}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"144":{"tf":1.4142135623730951},"18":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"m":{"3":{"2":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"106":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":2.6457513110645907},"58":{"tf":3.1622776601683795},"61":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"144":{"tf":1.0},"15":{"tf":1.0},"58":{"tf":1.7320508075688772},"77":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":1,"docs":{"59":{"tf":1.0}}},"v":{"df":2,"docs":{"67":{"tf":1.0},"72":{"tf":1.0}}}},"b":{"3":{"df":1,"docs":{"56":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"3":{"tf":1.0},"34":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"36":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"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":{"0":{"tf":1.0},"176":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":8,"docs":{"120":{"tf":1.0},"125":{"tf":1.0},"173":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":2.0},"25":{"tf":1.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"82":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"5":{"0":{"0":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"181":{"tf":1.0},"96":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.7320508075688772},"22":{"tf":1.0},"32":{"tf":1.7320508075688772},"67":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"54":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":97,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"l":{"d":{"df":21,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"164":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"215":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"94":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"x":{"df":3,"docs":{"23":{"tf":2.449489742783178},"3":{"tf":1.0},"8":{"tf":1.0}},"k":{"c":{"d":{"df":1,"docs":{"205":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"67":{"tf":1.0},"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":4,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":1,"docs":{"66":{"tf":1.0}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}}}}}},"title":{"root":{"1":{"2":{"8":{"df":7,"docs":{"122":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"167":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"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":{}}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"170":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"t":{"a":{"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"112":{"tf":1.0},"114":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"108":{"tf":1.0},"141":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"25":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"182":{"tf":1.0},"195":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"31":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.0}},"i":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"72":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"175":{"tf":1.0},"177":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"96":{"tf":1.0}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"103":{"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}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"29":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":11,"docs":{"10":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"193":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"169":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"107":{"tf":1.0},"192":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"110":{"tf":1.0},"146":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"108":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"205":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"72":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"v":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"10":{"tf":1.0},"71":{"tf":1.0},"82":{"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":2,"docs":{"107":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}}}}}}}},"l":{"a":{"b":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"34":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"72":{"tf":1.0},"78":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"216":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.0},"9":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"100":{"tf":1.0},"195":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"117":{"tf":1.0},"138":{"tf":1.0},"187":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"126":{"tf":1.0},"182":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"g":{"df":6,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"126":{"tf":1.0}}}},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.0}}},"df":1,"docs":{"153":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"106":{"tf":1.0},"217":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"135":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"177":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"189":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"190":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"222":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"35":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":4,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"139":{"tf":1.0},"140":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":3,"docs":{"179":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"89":{"tf":1.0}},"e":{"6":{"4":{"df":4,"docs":{"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"1":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"219":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"180":{"tf":1.0}},"r":{"df":5,"docs":{"102":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"191":{"tf":1.0},"86":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"192":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"228":{"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/the_azle_book/book/searchindex.json b/the_azle_book/book/searchindex.json index 0b27d2b6b1..c6ecc2b69a 100644 --- a/the_azle_book/book/searchindex.json +++ b/the_azle_book/book/searchindex.json @@ -1 +1 @@ -{"doc_urls":["the_azle_book.html#the-azle-book-beta","get_started.html#get-started","get_started.html#installation","get_started.html#deployment","rest_based_examples.html#examples","deployment.html#deployment","deployment.html#starting-the-local-replica","deployment.html#deploying-to-the-local-replica","deployment.html#interacting-with-your-canister","deployment.html#deploying-to-mainnet","deployment.html#common-deployment-issues","project_structure.html#project-structure-tldr","servers.html#servers-tldr","servers.html#servers","servers.html#nodejs-httpserver","servers.html#express","servers.html#jsonstringify","servers.html#server","servers.html#limitations","assets.html#assets-tldr","authentication.html#authentication-tldr","authentication.html#authentication","authentication.html#under-the-hood","debugging.html#debugging-tldr","debugging.html#debugging","debugging.html#consolelog-and-trycatch","debugging.html#canister-did-not-produce-a-response","debugging.html#no-error-message","debugging.html#final-compiled-and-bundled-javascript","limitations.html#limitations-tldr","reference_http/reference.html#reference","reference_http/autoreload.html#autoreload","reference_http/environment_variables.html#environment-variables","reference_http/environment_variables.html#azle_autoreload","reference_http/environment_variables.html#azle_dockerfile_hash","reference_http/environment_variables.html#azle_identity_storage_mode","reference_http/environment_variables.html#azle_instruction_count","reference_http/environment_variables.html#azle_proptest_num_runs","reference_http/environment_variables.html#azle_proptest_path","reference_http/environment_variables.html#azle_proptest_quiet","reference_http/environment_variables.html#azle_proptest_seed","reference_http/environment_variables.html#azle_proptest_verbose","reference_http/environment_variables.html#azle_test_fetch","reference_http/environment_variables.html#azle_use_dockerfile","reference_http/environment_variables.html#azle_verbose","reference_http/environment_variables.html#azle_wasmedge_quickjs_dir","reference_http/native_compilation.html#native-compilation-tldr","reference_http/native_compilation.html#native-compilation","candid_based_documentation.html#old-candid-based-documentation","azle.html#azle-beta","azle.html#disclaimer","azle.html#demergent-labs","azle.html#benefits-and-drawbacks","azle.html#benefits","azle.html#drawbacks","internet_computer_overview.html#internet-computer-overview","canisters_overview.html#canisters-overview","installation.html#installation","hello_world.html#hello-world","hello_world.html#quick-start","hello_world.html#methodical-start","hello_world.html#the-project-directory-and-file-structure","hello_world.html#indexts","hello_world.html#tsconfigjson","hello_world.html#dfxjson","hello_world.html#local-deployment","hello_world.html#common-deployment-issues","hello_world.html#interacting-with-your-canister-from-the-command-line","hello_world.html#interacting-with-your-canister-from-the-web-ui","deployment_candid_based.html#deployment","deployment_candid_based.html#starting-the-local-replica","deployment_candid_based.html#deploying-to-the-local-replica","deployment_candid_based.html#interacting-with-your-canister","deployment_candid_based.html#dfx-command-line","deployment_candid_based.html#dfx-web-ui","deployment_candid_based.html#dfinityagent","deployment_candid_based.html#deploying-to-mainnet","deployment_candid_based.html#common-deployment-issues","examples.html#examples","query_methods.html#query-methods","query_methods.html#tldr","update_methods.html#update-methods","update_methods.html#tldr","candid.html#candid","stable_structures.html#stable-structures","stable_structures.html#tldr","stable_structures.html#caveats","stable_structures.html#float64-values","stable_structures.html#candidtype-performance","stable_structures.html#migrations","stable_structures.html#canister","cross_canister.html#cross-canister","http.html#http","http.html#incoming-http-requests","http.html#outgoing-http-requests","management_canister.html#management-canister","canister_lifecycle.html#canister-lifecycle","timers.html#timers","cycles.html#cycles","caveats.html#caveats","caveats.html#unknown-security-vulnerabilities","caveats.html#npm-packages","caveats.html#javascript-environment-apis","caveats.html#high-candid-encodingdecoding-costs","caveats.html#promises","caveats.html#jsonparse-and-stablebtreemap-float64-values","reference/reference.html#reference","reference/bitcoin.html#bitcoin","reference/bitcoin.html#tecdsa","reference/bitcoin.html#bitcoin-integration","reference/bitcoin.html#ckbtc","reference/call_apis/call_apis.html#call-apis","reference/call_apis/accept_message.html#accept-message","reference/call_apis/arg_data_raw.html#arg-data-raw","reference/call_apis/arg_data_raw_size.html#arg-data-raw-size","reference/call_apis/call.html#call","reference/call_apis/call_raw.html#call-raw","reference/call_apis/call_raw128.html#call-raw-128","reference/call_apis/call_with_payment.html#call-with-payment","reference/call_apis/call_with_payment128.html#call-with-payment-128","reference/call_apis/caller.html#caller","reference/call_apis/method_name.html#method-name","reference/call_apis/msg_cycles_accept.html#msg-cycles-accept","reference/call_apis/msg_cycles_accept128.html#msg-cycles-accept-128","reference/call_apis/msg_cycles_available.html#msg-cycles-available","reference/call_apis/msg_cycles_available128.html#msg-cycles-available-128","reference/call_apis/msg_cycles_refunded.html#msg-cycles-refunded","reference/call_apis/msg_cycles_refunded128.html#msg-cycles-refunded-128","reference/call_apis/notify.html#notify","reference/call_apis/notify_raw.html#notify-raw","reference/call_apis/notify_with_payment_128.html#notify-with-payment-128","reference/call_apis/reject.html#reject","reference/call_apis/reject_code.html#reject-code","reference/call_apis/reject_message.html#reject-message","reference/call_apis/reply.html#reply","reference/call_apis/reply_raw.html#reply-raw","reference/candid/candid.html#candid","reference/candid/blob.html#blob","reference/candid/bool.html#bool","reference/candid/empty.html#empty","reference/candid/float32.html#float32","reference/candid/float64.html#float64","reference/candid/func.html#func","reference/candid/int.html#int","reference/candid/int8.html#int8","reference/candid/int16.html#int16","reference/candid/int32.html#int32","reference/candid/int64.html#int64","reference/candid/nat.html#nat","reference/candid/nat8.html#nat8","reference/candid/nat16.html#nat16","reference/candid/nat32.html#nat32","reference/candid/nat64.html#nat64","reference/candid/null.html#null","reference/candid/opt.html#opt","reference/candid/principal.html#principal","reference/candid/record.html#record","reference/candid/reserved.html#reserved","reference/candid/service.html#service","reference/candid/text.html#text","reference/candid/variant.html#variant","reference/candid/vec.html#vec","reference/canister_apis/canister_apis.html#canister-apis","reference/canister_apis/candid_decode.html#candid-decode","reference/canister_apis/candid_encode.html#candid-encode","reference/canister_apis/canister_balance.html#canister-balance","reference/canister_apis/canister_balance128.html#canister-balance-128","reference/canister_apis/canister_version.html#canister-version","reference/canister_apis/canister_id.html#canister-id","reference/canister_apis/data_certificate.html#data-certificate","reference/canister_apis/instruction_counter.html#instruction-counter","reference/canister_apis/is_controller.html#is-controller","reference/canister_apis/performance_counter.html#performance-counter","reference/canister_apis/print.html#print","reference/canister_apis/set_certified_data.html#set-certified-data","reference/canister_apis/time.html#time","reference/canister_apis/trap.html#trap","reference/canister_methods/canister_methods.html#canister-methods","reference/canister_methods/heartbeat.html#heartbeat","reference/canister_methods/http_request.html#http_request","reference/canister_methods/http_request_update.html#http_request","reference/canister_methods/init.html#init","reference/canister_methods/inspect_message.html#inspect-message","reference/canister_methods/post_upgrade.html#post-upgrade","reference/canister_methods/pre_upgrade.html#pre-upgrade","reference/canister_methods/query.html#query","reference/canister_methods/update.html#update","reference/environment_variables.html#environment-variables","reference/environment_variables.html#dfxjson","reference/environment_variables.html#processenv","reference/management_canister/management_canister.html#management-canister","reference/management_canister/bitcoin_get_balance.html#bitcoin_get_balance","reference/management_canister/bitcoin_get_current_fee_percentiles.html#bitcoin_get_current_fee_percentiles","reference/management_canister/bitcoin_get_utxos.html#bitcoin_get_utxos","reference/management_canister/bitcoin_send_transaction.html#bitcoin_send_transaction","reference/management_canister/canister_status.html#canister_status","reference/management_canister/create_canister.html#create_canister","reference/management_canister/delete_canister.html#delete_canister","reference/management_canister/deposit_cycles.html#deposit_cycles","reference/management_canister/ecdsa_public_key.html#ecdsa_public_key","reference/management_canister/http_request.html#http_request","reference/management_canister/install_code.html#install_code","reference/management_canister/provisional_create_canister_with_cycles.html#provisional_create_canister_with_cycles","reference/management_canister/provisional_top_up_canister.html#provisional_top_up_canister","reference/management_canister/raw_rand.html#raw_rand","reference/management_canister/sign_with_ecdsa.html#sign_with_ecdsa","reference/management_canister/start_canister.html#start_canister","reference/management_canister/stop_canister.html#stop_canister","reference/management_canister/uninstall_code.html#uninstall_code","reference/management_canister/update_settings.html#update_settings","reference/plugins.html#plugins","reference/plugins.html#local-plugin","reference/plugins.html#npm-plugin","reference/stable_memory/stable_memory.html#stable-memory","reference/stable_memory/stable_structures.html#stable-structures","reference/stable_memory/stable_bytes.html#stable-bytes","reference/stable_memory/stable_grow.html#stable-grow","reference/stable_memory/stable_read.html#stable-read","reference/stable_memory/stable_size.html#stable-size","reference/stable_memory/stable_write.html#stable-write","reference/stable_memory/stable64_grow.html#stable64-grow","reference/stable_memory/stable64_read.html#stable64-read","reference/stable_memory/stable64_size.html#stable64-size","reference/stable_memory/stable64_write.html#stable64-write","reference/timers/timers.html#timers","reference/timers/clear_timer.html#clear-timer","reference/timers/set_timer.html#set-timer","reference/timers/set_timer_interval.html#set-timer-interval","reference/wasm_binary_optimization.html#wasm-binary-optimization"],"index":{"documentStore":{"docInfo":{"0":{"body":155,"breadcrumbs":6,"title":3},"1":{"body":48,"breadcrumbs":2,"title":1},"10":{"body":75,"breadcrumbs":4,"title":3},"100":{"body":7,"breadcrumbs":8,"title":3},"101":{"body":36,"breadcrumbs":7,"title":2},"102":{"body":12,"breadcrumbs":8,"title":3},"103":{"body":27,"breadcrumbs":9,"title":4},"104":{"body":17,"breadcrumbs":6,"title":1},"105":{"body":17,"breadcrumbs":9,"title":4},"106":{"body":19,"breadcrumbs":6,"title":1},"107":{"body":15,"breadcrumbs":7,"title":1},"108":{"body":26,"breadcrumbs":7,"title":1},"109":{"body":27,"breadcrumbs":8,"title":2},"11":{"body":63,"breadcrumbs":5,"title":3},"110":{"body":30,"breadcrumbs":7,"title":1},"111":{"body":58,"breadcrumbs":9,"title":2},"112":{"body":17,"breadcrumbs":11,"title":2},"113":{"body":34,"breadcrumbs":13,"title":3},"114":{"body":36,"breadcrumbs":15,"title":4},"115":{"body":68,"breadcrumbs":9,"title":1},"116":{"body":39,"breadcrumbs":11,"title":2},"117":{"body":38,"breadcrumbs":13,"title":3},"118":{"body":47,"breadcrumbs":11,"title":2},"119":{"body":42,"breadcrumbs":13,"title":3},"12":{"body":42,"breadcrumbs":3,"title":2},"120":{"body":26,"breadcrumbs":9,"title":1},"121":{"body":46,"breadcrumbs":11,"title":2},"122":{"body":24,"breadcrumbs":13,"title":3},"123":{"body":24,"breadcrumbs":15,"title":4},"124":{"body":24,"breadcrumbs":13,"title":3},"125":{"body":24,"breadcrumbs":15,"title":4},"126":{"body":33,"breadcrumbs":13,"title":3},"127":{"body":33,"breadcrumbs":15,"title":4},"128":{"body":25,"breadcrumbs":9,"title":1},"129":{"body":28,"breadcrumbs":11,"title":2},"13":{"body":74,"breadcrumbs":2,"title":1},"130":{"body":24,"breadcrumbs":13,"title":3},"131":{"body":26,"breadcrumbs":9,"title":1},"132":{"body":25,"breadcrumbs":11,"title":2},"133":{"body":25,"breadcrumbs":11,"title":2},"134":{"body":33,"breadcrumbs":9,"title":1},"135":{"body":62,"breadcrumbs":11,"title":2},"136":{"body":25,"breadcrumbs":7,"title":1},"137":{"body":78,"breadcrumbs":8,"title":1},"138":{"body":54,"breadcrumbs":8,"title":1},"139":{"body":90,"breadcrumbs":8,"title":1},"14":{"body":47,"breadcrumbs":3,"title":2},"140":{"body":56,"breadcrumbs":8,"title":1},"141":{"body":56,"breadcrumbs":8,"title":1},"142":{"body":120,"breadcrumbs":8,"title":1},"143":{"body":56,"breadcrumbs":8,"title":1},"144":{"body":56,"breadcrumbs":8,"title":1},"145":{"body":56,"breadcrumbs":8,"title":1},"146":{"body":56,"breadcrumbs":8,"title":1},"147":{"body":56,"breadcrumbs":8,"title":1},"148":{"body":56,"breadcrumbs":8,"title":1},"149":{"body":56,"breadcrumbs":8,"title":1},"15":{"body":44,"breadcrumbs":2,"title":1},"150":{"body":56,"breadcrumbs":8,"title":1},"151":{"body":56,"breadcrumbs":8,"title":1},"152":{"body":56,"breadcrumbs":8,"title":1},"153":{"body":55,"breadcrumbs":8,"title":1},"154":{"body":79,"breadcrumbs":8,"title":1},"155":{"body":69,"breadcrumbs":8,"title":1},"156":{"body":95,"breadcrumbs":8,"title":1},"157":{"body":54,"breadcrumbs":8,"title":1},"158":{"body":100,"breadcrumbs":8,"title":1},"159":{"body":57,"breadcrumbs":8,"title":1},"16":{"body":60,"breadcrumbs":2,"title":1},"160":{"body":103,"breadcrumbs":8,"title":1},"161":{"body":90,"breadcrumbs":8,"title":1},"162":{"body":26,"breadcrumbs":9,"title":2},"163":{"body":27,"breadcrumbs":11,"title":2},"164":{"body":30,"breadcrumbs":11,"title":2},"165":{"body":25,"breadcrumbs":11,"title":2},"166":{"body":25,"breadcrumbs":13,"title":3},"167":{"body":23,"breadcrumbs":11,"title":2},"168":{"body":26,"breadcrumbs":11,"title":2},"169":{"body":35,"breadcrumbs":11,"title":2},"17":{"body":146,"breadcrumbs":2,"title":1},"170":{"body":27,"breadcrumbs":11,"title":2},"171":{"body":27,"breadcrumbs":9,"title":1},"172":{"body":19,"breadcrumbs":11,"title":2},"173":{"body":29,"breadcrumbs":9,"title":1},"174":{"body":26,"breadcrumbs":13,"title":3},"175":{"body":23,"breadcrumbs":9,"title":1},"176":{"body":35,"breadcrumbs":9,"title":1},"177":{"body":12,"breadcrumbs":9,"title":2},"178":{"body":21,"breadcrumbs":9,"title":1},"179":{"body":105,"breadcrumbs":9,"title":1},"18":{"body":43,"breadcrumbs":2,"title":1},"180":{"body":105,"breadcrumbs":9,"title":1},"181":{"body":26,"breadcrumbs":9,"title":1},"182":{"body":46,"breadcrumbs":11,"title":2},"183":{"body":19,"breadcrumbs":11,"title":2},"184":{"body":19,"breadcrumbs":11,"title":2},"185":{"body":17,"breadcrumbs":9,"title":1},"186":{"body":25,"breadcrumbs":9,"title":1},"187":{"body":25,"breadcrumbs":9,"title":2},"188":{"body":40,"breadcrumbs":8,"title":1},"189":{"body":27,"breadcrumbs":8,"title":1},"19":{"body":180,"breadcrumbs":3,"title":2},"190":{"body":20,"breadcrumbs":9,"title":2},"191":{"body":39,"breadcrumbs":9,"title":1},"192":{"body":35,"breadcrumbs":9,"title":1},"193":{"body":39,"breadcrumbs":9,"title":1},"194":{"body":44,"breadcrumbs":9,"title":1},"195":{"body":29,"breadcrumbs":9,"title":1},"196":{"body":30,"breadcrumbs":9,"title":1},"197":{"body":30,"breadcrumbs":9,"title":1},"198":{"body":32,"breadcrumbs":9,"title":1},"199":{"body":50,"breadcrumbs":9,"title":1},"2":{"body":93,"breadcrumbs":2,"title":1},"20":{"body":221,"breadcrumbs":3,"title":2},"200":{"body":56,"breadcrumbs":9,"title":1},"201":{"body":43,"breadcrumbs":9,"title":1},"202":{"body":31,"breadcrumbs":9,"title":1},"203":{"body":35,"breadcrumbs":9,"title":1},"204":{"body":27,"breadcrumbs":9,"title":1},"205":{"body":57,"breadcrumbs":9,"title":1},"206":{"body":30,"breadcrumbs":9,"title":1},"207":{"body":30,"breadcrumbs":9,"title":1},"208":{"body":30,"breadcrumbs":9,"title":1},"209":{"body":40,"breadcrumbs":9,"title":1},"21":{"body":3,"breadcrumbs":2,"title":1},"210":{"body":40,"breadcrumbs":7,"title":1},"211":{"body":9,"breadcrumbs":8,"title":2},"212":{"body":12,"breadcrumbs":8,"title":2},"213":{"body":20,"breadcrumbs":9,"title":2},"214":{"body":98,"breadcrumbs":11,"title":2},"215":{"body":19,"breadcrumbs":11,"title":2},"216":{"body":20,"breadcrumbs":11,"title":2},"217":{"body":24,"breadcrumbs":11,"title":2},"218":{"body":19,"breadcrumbs":11,"title":2},"219":{"body":24,"breadcrumbs":11,"title":2},"22":{"body":91,"breadcrumbs":3,"title":2},"220":{"body":20,"breadcrumbs":11,"title":2},"221":{"body":24,"breadcrumbs":11,"title":2},"222":{"body":19,"breadcrumbs":11,"title":2},"223":{"body":24,"breadcrumbs":11,"title":2},"224":{"body":7,"breadcrumbs":7,"title":1},"225":{"body":20,"breadcrumbs":10,"title":2},"226":{"body":42,"breadcrumbs":10,"title":2},"227":{"body":44,"breadcrumbs":12,"title":3},"228":{"body":94,"breadcrumbs":11,"title":3},"23":{"body":42,"breadcrumbs":3,"title":2},"24":{"body":28,"breadcrumbs":2,"title":1},"25":{"body":14,"breadcrumbs":3,"title":2},"26":{"body":99,"breadcrumbs":4,"title":3},"27":{"body":340,"breadcrumbs":3,"title":2},"28":{"body":54,"breadcrumbs":5,"title":4},"29":{"body":74,"breadcrumbs":3,"title":2},"3":{"body":74,"breadcrumbs":2,"title":1},"30":{"body":5,"breadcrumbs":2,"title":1},"31":{"body":106,"breadcrumbs":3,"title":1},"32":{"body":13,"breadcrumbs":5,"title":2},"33":{"body":12,"breadcrumbs":4,"title":1},"34":{"body":26,"breadcrumbs":4,"title":1},"35":{"body":3,"breadcrumbs":4,"title":1},"36":{"body":11,"breadcrumbs":4,"title":1},"37":{"body":3,"breadcrumbs":4,"title":1},"38":{"body":3,"breadcrumbs":4,"title":1},"39":{"body":3,"breadcrumbs":4,"title":1},"4":{"body":26,"breadcrumbs":2,"title":1},"40":{"body":3,"breadcrumbs":4,"title":1},"41":{"body":3,"breadcrumbs":4,"title":1},"42":{"body":3,"breadcrumbs":4,"title":1},"43":{"body":15,"breadcrumbs":4,"title":1},"44":{"body":9,"breadcrumbs":4,"title":1},"45":{"body":13,"breadcrumbs":4,"title":1},"46":{"body":19,"breadcrumbs":6,"title":3},"47":{"body":174,"breadcrumbs":5,"title":2},"48":{"body":66,"breadcrumbs":8,"title":4},"49":{"body":24,"breadcrumbs":8,"title":2},"5":{"body":42,"breadcrumbs":2,"title":1},"50":{"body":31,"breadcrumbs":7,"title":1},"51":{"body":20,"breadcrumbs":8,"title":2},"52":{"body":21,"breadcrumbs":8,"title":2},"53":{"body":866,"breadcrumbs":7,"title":1},"54":{"body":361,"breadcrumbs":7,"title":1},"55":{"body":137,"breadcrumbs":10,"title":3},"56":{"body":104,"breadcrumbs":8,"title":2},"57":{"body":93,"breadcrumbs":6,"title":1},"58":{"body":68,"breadcrumbs":8,"title":2},"59":{"body":80,"breadcrumbs":8,"title":2},"6":{"body":73,"breadcrumbs":4,"title":3},"60":{"body":0,"breadcrumbs":8,"title":2},"61":{"body":43,"breadcrumbs":10,"title":4},"62":{"body":271,"breadcrumbs":7,"title":1},"63":{"body":14,"breadcrumbs":7,"title":1},"64":{"body":19,"breadcrumbs":7,"title":1},"65":{"body":14,"breadcrumbs":8,"title":2},"66":{"body":9,"breadcrumbs":9,"title":3},"67":{"body":36,"breadcrumbs":10,"title":4},"68":{"body":44,"breadcrumbs":10,"title":4},"69":{"body":39,"breadcrumbs":6,"title":1},"7":{"body":27,"breadcrumbs":4,"title":3},"70":{"body":65,"breadcrumbs":8,"title":3},"71":{"body":12,"breadcrumbs":8,"title":3},"72":{"body":13,"breadcrumbs":7,"title":2},"73":{"body":59,"breadcrumbs":8,"title":3},"74":{"body":39,"breadcrumbs":8,"title":3},"75":{"body":21,"breadcrumbs":6,"title":1},"76":{"body":22,"breadcrumbs":7,"title":2},"77":{"body":64,"breadcrumbs":8,"title":3},"78":{"body":51,"breadcrumbs":6,"title":1},"79":{"body":0,"breadcrumbs":8,"title":2},"8":{"body":65,"breadcrumbs":3,"title":2},"80":{"body":304,"breadcrumbs":7,"title":1},"81":{"body":0,"breadcrumbs":8,"title":2},"82":{"body":483,"breadcrumbs":7,"title":1},"83":{"body":421,"breadcrumbs":6,"title":1},"84":{"body":0,"breadcrumbs":8,"title":2},"85":{"body":794,"breadcrumbs":7,"title":1},"86":{"body":0,"breadcrumbs":7,"title":1},"87":{"body":12,"breadcrumbs":8,"title":2},"88":{"body":50,"breadcrumbs":8,"title":2},"89":{"body":25,"breadcrumbs":7,"title":1},"9":{"body":28,"breadcrumbs":3,"title":2},"90":{"body":24,"breadcrumbs":7,"title":1},"91":{"body":538,"breadcrumbs":8,"title":2},"92":{"body":3,"breadcrumbs":6,"title":1},"93":{"body":102,"breadcrumbs":8,"title":3},"94":{"body":149,"breadcrumbs":8,"title":3},"95":{"body":32,"breadcrumbs":8,"title":2},"96":{"body":29,"breadcrumbs":8,"title":2},"97":{"body":163,"breadcrumbs":6,"title":1},"98":{"body":83,"breadcrumbs":6,"title":1},"99":{"body":0,"breadcrumbs":6,"title":1}},"docs":{"0":{"body":"Welcome to The Azle Book! This is a guide for building secure decentralized/replicated servers in TypeScript or JavaScript on ICP . The current replication factor is 13-40 times . Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP The Azle Book is subject to the following license and Azle's License Extension : MIT License Copyright (c) 2024 AZLE token holders (nlhft-2iaaa-aaaae-qaaua-cai) Permission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.","breadcrumbs":"The Azle Book (Beta) » The Azle Book (Beta)","id":"0","title":"The Azle Book (Beta)"},"1":{"body":"Installation Deployment Azle helps you to build secure decentralized/replicated servers in TypeScript or JavaScript on ICP . The current replication factor is 13-40 times . Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP","breadcrumbs":"Get Started » Get Started","id":"1","title":"Get Started"},"10":{"body":"If you run into an error during deployment, try the following: Ensure that you have followed the installation instructions exactly as specified in the Get Started chapter Start the whole deployment process from scratch and look for more error output by doing the following: In your replica terminal: Terminate the replica in your terminal or run dfx stop if your replica is running in the background dfx start --clean --host 127.0.0.1:8000 In your project terminal at the root directory of your project: rm -rf node_modules npm install npx azle clean AZLE_VERBOSE=true dfx deploy If the build process hangs on Waiting for VM ..., see this issue for possible fixes If the problem is still not resolved, reach out with the error output in the Discord channel","breadcrumbs":"Deployment » Common deployment issues","id":"10","title":"Common deployment issues"},"100":{"body":"Azle is a beta project. See the disclaimer for more information.","breadcrumbs":"Old Candid-based Documentation » Caveats » Unknown security vulnerabilities","id":"100","title":"Unknown security vulnerabilities"},"101":{"body":"Some npm packages will work and some will not work. It is our long-term goal to support as many npm packages as possible. There are various reasons why an npm package may not currently work, including the small Wasm binary limit of the IC and unimplemented web or Node.js APIs. Feel free to open issues if your npm package does not work in Azle.","breadcrumbs":"Old Candid-based Documentation » Caveats » npm packages","id":"101","title":"npm packages"},"102":{"body":"You may encounter various missing JavaScript environment APIs, such as those you would expect in the web or Node.js environments.","breadcrumbs":"Old Candid-based Documentation » Caveats » JavaScript environment APIs","id":"102","title":"JavaScript environment APIs"},"103":{"body":"Candid encoding/decoding is currently very unoptimized. This will most likely lead to a ~1-2 million extra fixed instruction cost for all calls. Be careful using CandidType Serializable objects with StableBTreeMap, or using any other API or data structure that engages in Candid encoding/decoding.","breadcrumbs":"Old Candid-based Documentation » Caveats » High Candid encoding/decoding costs","id":"103","title":"High Candid encoding/decoding costs"},"104":{"body":"Though promises are implemented, the underlying queue that handles asynchronous operations is very simple. This queue will not behave exactly as queues from the major JS engines.","breadcrumbs":"Old Candid-based Documentation » Caveats » Promises","id":"104","title":"Promises"},"105":{"body":"It seems to be only some float64 values cannot be successfully stored and retrieved with a StableBTreeMap using stableJson because of this bug with JSON.parse: https://github.com/bellard/quickjs/issues/206 This will also affect stand-alone usage of JSON.parse.","breadcrumbs":"Old Candid-based Documentation » Caveats » JSON.parse and StableBTreeMap float64 values","id":"105","title":"JSON.parse and StableBTreeMap float64 values"},"106":{"body":"Bitcoin Call APIs Candid Canister APIs Canister Methods Environment Variables Management Canister Plugins Stable Memory Timers Wasm Binary Optimization","breadcrumbs":"Old Candid-based Documentation » Reference » Reference","id":"106","title":"Reference"},"107":{"body":"The Internet Computer (IC) interacts with the Bitcoin blockchain through the use of tECDSA, the Bitcoin integration, and a ledger canister called ckBTC.","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » Bitcoin","id":"107","title":"Bitcoin"},"108":{"body":"tECDSA on the IC allows canisters to request access to threshold ECDSA keypairs on the tECDSA subnet. This functionality is exposed through two management canister methods: ecdsa_public_key sign_with_ecdsa The following are examples using tECDSA: basic_bitcoin threshold_ecdsa","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » tECDSA","id":"108","title":"tECDSA"},"109":{"body":"The Bitcoin integration allows canisters on the IC to interact directly with the Bitcoin network. This functionality is exposed through the following management canister methods: bitcoin_get_balance bitcoin_get_current_fee_percentiles bitcoin_get_utxos bitcoin_send_transaction The following are examples using the Bitcoin integration: basic_bitcoin bitcoin","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » Bitcoin integration","id":"109","title":"Bitcoin integration"},"11":{"body":"Your project is just a directory with a dfx.json file that points to your .ts or .js entrypoint. Here's what your directory structure might look like: hello_world/\n|\n├── dfx.json\n|\n└── src/ └── api.ts And the corresponding dfx.json file: { \"canisters\": { \"api\": { \"type\": \"custom\", \"main\": \"src/api.ts\", \"candid\": \"src/api.did\", \"candid_gen\": \"http\", \"build\": \"npx azle api\", \"wasm\": \".azle/api/api.wasm\", \"gzip\": true, \"metadata\": [ { \"name\": \"candid:service\", \"path\": \"src/api.did\" }, { \"name\": \"cdk:name\", \"content\": \"azle\" } ] } }\n} Once you have created this directory structure you can deploy to mainnet or a locally running replica by running the dfx deploy command in the same directory as your dfx.json file.","breadcrumbs":"Project Structure » Project Structure TL;DR","id":"11","title":"Project Structure TL;DR"},"110":{"body":"ckBTC is a ledger canister deployed to the IC. It follows the ICRC standard, and can be accessed easily from an Azle canister using azle/canisters/ICRC if you only need the ICRC methods. For access to the full ledger methods you will need to create your own Service for now. The following are examples using ckBTC: ckBTC","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » ckBTC","id":"110","title":"ckBTC"},"111":{"body":"accept message arg data raw arg data raw size call call raw call raw 128 call with payment call with payment 128 caller method name msg cycles accept msg cycles accept 128 msg cycles available msg cycles available 128 msg cycles refunded msg cycles refunded 128 notify notify raw notify with payment 128 reject reject code reject message reply reply raw","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » Call APIs","id":"111","title":"Call APIs"},"112":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { Canister, ic, inspectMessage } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { ic.acceptMessage(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » accept message » accept message","id":"112","title":"accept message"},"113":{"body":"This section is a work in progress. Examples: ic_api import { blob, bool, Canister, ic, int8, query, text } from 'azle'; export default Canister({ // returns the argument data as bytes. argDataRaw: query( [blob, int8, bool, text], blob, (arg1, arg2, arg3, arg4) => { return ic.argDataRaw(); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » arg data raw » arg data raw","id":"113","title":"arg data raw"},"114":{"body":"This section is a work in progress. Examples: ic_api import { blob, bool, Canister, ic, int8, nat, query, text } from 'azle'; export default Canister({ // returns the length of the argument data in bytes argDataRawSize: query( [blob, int8, bool, text], nat, (arg1, arg2, arg3, arg4) => { return ic.argDataRawSize(); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » arg data raw size » arg data raw size","id":"114","title":"arg data raw size"},"115":{"body":"This section is a work in progress. Examples: async_await bitcoin composite_queries cross_canister_calls cycles ethereum_json_rpc func_types heartbeat inline_types ledger_canister management_canister outgoing_http_requests threshold_ecdsa rejections timers tuple_types whoami import { Canister, ic, init, nat64, Principal, update } from 'azle'; const TokenCanister = Canister({ transfer: update([Principal, nat64], nat64)\n}); let tokenCanister: typeof TokenCanister; export default Canister({ init: init([], setup), postDeploy: init([], setup), payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); function setup() { tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai') );\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call » call","id":"115","title":"call"},"116":{"body":"This section is a work in progress. Examples: call_raw outgoing_http_requests import { Canister, ic, nat64, Principal, text, update } from 'azle'; export default Canister({ executeCallRaw: update( [Principal, text, text, nat64], text, async (canisterId, method, candidArgs, payment) => { const candidBytes = await ic.callRaw( canisterId, method, ic.candidEncode(candidArgs), payment ); return ic.candidDecode(candidBytes); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call raw » call raw","id":"116","title":"call raw"},"117":{"body":"This section is a work in progress. Examples: call_raw import { Canister, ic, nat, Principal, text, update } from 'azle'; export default Canister({ executeCallRaw128: update( [Principal, text, text, nat], text, async (canisterId, method, candidArgs, payment) => { const candidBytes = await ic.callRaw128( canisterId, method, ic.candidEncode(candidArgs), payment ); return ic.candidDecode(candidBytes); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call raw 128 » call raw 128","id":"117","title":"call raw 128"},"118":{"body":"This section is a work in progress. Examples: bitcoin cycles ethereum_json_rpc management_canister outgoing_http_requests threshold_ecdsa import { blob, Canister, ic, Principal, update, Void } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], Void, async (canisterId, wasmModule) => { return await ic.call(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call with payment » call with payment","id":"118","title":"call with payment"},"119":{"body":"This section is a work in progress. Examples: cycles import { blob, Canister, ic, Principal, update, Void } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], Void, async (canisterId, wasmModule) => { return await ic.call128(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call with payment 128 » call with payment 128","id":"119","title":"call with payment 128"},"12":{"body":"Just write Node.js servers like this: import { createServer } from 'http'; const server = createServer((req, res) => { res.write('Hello World!'); res.end();\n}); server.listen(); or write Express servers like this: import express, { Request } from 'express'; let db = { hello: ''\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.json(db);\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.json(db);\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » Servers TL;DR","id":"12","title":"Servers TL;DR"},"120":{"body":"This section is a work in progress. Examples: ic_api threshold_ecdsa whoami import { Canister, ic, Principal, update } from 'azle'; export default Canister({ // returns the principal of the identity that called this function caller: update([], Principal, () => { return ic.caller(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » caller » caller","id":"120","title":"caller"},"121":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { bool, Canister, ic, inspectMessage, update } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { console.log('inspectMessage called'); if (ic.methodName() === 'accessible') { ic.acceptMessage(); return; } if (ic.methodName() === 'inaccessible') { return; } throw `Method \"${ic.methodName()}\" not allowed`; }), accessible: update([], bool, () => { return true; }), inaccessible: update([], bool, () => { return false; }), alsoInaccessible: update([], bool, () => { return false; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » method name » method name","id":"121","title":"method name"},"122":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles: update([], nat64, () => { return ic.msgCyclesAccept(ic.msgCyclesAvailable() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles accept » msg cycles accept","id":"122","title":"msg cycles accept"},"123":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles128: update([], nat64, () => { return ic.msgCyclesAccept128(ic.msgCyclesAvailable128() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles accept 128 » msg cycles accept 128","id":"123","title":"msg cycles accept 128"},"124":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles: update([], nat64, () => { return ic.msgCyclesAccept(ic.msgCyclesAvailable() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles available » msg cycles available","id":"124","title":"msg cycles available"},"125":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles128: update([], nat64, () => { return ic.msgCyclesAccept128(ic.msgCyclesAvailable128() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles available 128 » msg cycles available 128","id":"125","title":"msg cycles available 128"},"126":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ // Reports the number of cycles returned from the Cycles canister sendCycles: update([], nat64, async () => { await ic.call(otherCanister.receiveCycles, { cycles: 1_000_000n }); return ic.msgCyclesRefunded(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles refunded » msg cycles refunded","id":"126","title":"msg cycles refunded"},"127":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ // Reports the number of cycles returned from the Cycles canister sendCycles128: update([], nat64, async () => { await ic.call128(otherCanister.receiveCycles128, { cycles: 1_000_000n }); return ic.msgCyclesRefunded128(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles refunded 128 » msg cycles refunded 128","id":"127","title":"msg cycles refunded 128"},"128":{"body":"This section is a work in progress. Examples: cross_canister_calls cycles import { Canister, ic, update, Void } from 'azle';\nimport { otherCanister } from './otherCanister'; export default Canister({ sendNotification: update([], Void, () => { return ic.notify(otherCanister.receiveNotification, { args: ['This is the notification'] }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify » notify","id":"128","title":"notify"},"129":{"body":"This section is a work in progress. Examples: notify_raw import { Canister, ic, Principal, update, Void } from 'azle'; export default Canister({ sendNotification: update([], Void, () => { return ic.notifyRaw( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai'), 'receiveNotification', Uint8Array.from(ic.candidEncode('()')), 0n ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify raw » notify raw","id":"129","title":"notify raw"},"13":{"body":"Node.js http.server Express Server Limitations Azle supports building HTTP servers on ICP using the Node.js http.Server class as the foundation. These servers can serve static files or act as API backends, or both. Azle currently has good but not comprehensive support for Node.js http.Server and Express . Support for other libraries like Nest are works-in-progress. Once deployed you can access your server at a URL like this locally http://bkyz2-fmaaa-aaaaa-qaaaq-cai.localhost:8000 or like this on mainnet https://bkyz2-fmaaa-aaaaa-qaaaq-cai.raw.icp0.io. You can use any HTTP client to interact with your server, such as curl, fetch, or a web browser. See the Interacting with your canister section of the deployment chapter for help in constructing your canister URL.","breadcrumbs":"Servers » Servers","id":"13","title":"Servers"},"130":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, update, Void } from 'azle';\nimport { otherCanister } from './otherCanister'; export default Canister({ sendCycles128Notify: update([], Void, () => { return ic.notify(otherCanister.receiveCycles128, { cycles: 1_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify with payment 128 » notify with payment 128","id":"130","title":"notify with payment 128"},"131":{"body":"This section is a work in progress. Examples: ic_api manual_reply rejections import { Canister, empty, ic, Manual, query, text } from 'azle'; export default Canister({ reject: query( [text], Manual(empty), (message) => { ic.reject(message); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject » reject","id":"131","title":"reject"},"132":{"body":"This section is a work in progress. Examples: rejections import { Canister, ic, RejectionCode, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ getRejectionCodeDestinationInvalid: update([], RejectionCode, async () => { await ic.call(otherCanister.method); return ic.rejectCode(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject code » reject code","id":"132","title":"reject code"},"133":{"body":"This section is a work in progress. Examples: rejections import { Canister, ic, text, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ getRejectionMessage: update([], text, async () => { await ic.call(otherCanister.method); return ic.rejectMessage(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject message » reject message","id":"133","title":"reject message"},"134":{"body":"This section is a work in progress. Examples: composite_queries manual_reply import { blob, Canister, ic, Manual, update } from 'azle'; export default Canister({ updateBlob: update( [], Manual(blob), () => { ic.reply( new Uint8Array([83, 117, 114, 112, 114, 105, 115, 101, 33]), blob ); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reply » reply","id":"134","title":"reply"},"135":{"body":"This section is a work in progress. Examples: manual_reply outgoing_http_requests import { blob, bool, Canister, ic, int, Manual, Null, Record, text, update, Variant\n} from 'azle'; const Options = Variant({ High: Null, Medium: Null, Low: Null\n}); export default Canister({ replyRaw: update( [], Manual( Record({ int: int, text: text, bool: bool, blob: blob, variant: Options }) ), () => { ic.replyRaw( ic.candidEncode( '(record { \"int\" = 42; \"text\" = \"text\"; \"bool\" = true; \"blob\" = blob \"Surprise!\"; \"variant\" = variant { Medium } })' ) ); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reply raw » reply raw","id":"135","title":"reply raw"},"136":{"body":"blob bool empty float32 float64 func int int8 int16 int32 int64 nat nat8 nat16 nat32 nat64 null opt principal record reserved service text variant vec","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » Candid","id":"136","title":"Candid"},"137":{"body":"The CandidType object blob corresponds to the Candid type blob , is inferred to be a TypeScript Uint8Array and will be decoded into a JavaScript Uint8Array at runtime. TypeScript or JavaScript: import { blob, Canister, query } from 'azle'; export default Canister({ getBlob: query([], blob, () => { return Uint8Array.from([68, 73, 68, 76, 0, 0]); }), printBlob: query([blob], blob, (blob) => { console.log(typeof blob); return blob; })\n}); Candid: service : () -> { getBlob : () -> (vec nat8) query; printBlob : (vec nat8) -> (vec nat8) query;\n} dfx: dfx canister call candid_canister printBlob '(vec { 68; 73; 68; 76; 0; 0; })'\n(blob \"DIDL\\00\\00\") dfx canister call candid_canister printBlob '(blob \"DIDL\\00\\00\")'\n(blob \"DIDL\\00\\00\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » blob » blob","id":"137","title":"blob"},"138":{"body":"The CandidType object bool corresponds to the Candid type bool , is inferred to be a TypeScript boolean, and will be decoded into a JavaScript Boolean at runtime. TypeScript or JavaScript: import { bool, Canister, query } from 'azle'; export default Canister({ getBool: query([], bool, () => { return true; }), printBool: query([bool], bool, (bool) => { console.log(typeof bool); return bool; })\n}); Candid: service : () -> { getBool : () -> (bool) query; printBool : (bool) -> (bool) query;\n} dfx: dfx canister call candid_canister printBool '(true)'\n(true)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » bool » bool","id":"138","title":"bool"},"139":{"body":"The CandidType object empty corresponds to the Candid type empty , is inferred to be a TypeScript never, and has no JavaScript value at runtime. TypeScript or JavaScript: import { Canister, empty, query } from 'azle'; export default Canister({ getEmpty: query([], empty, () => { throw 'Anything you want'; }), // Note: It is impossible to call this function because it requires an argument // but there is no way to pass an \"empty\" value as an argument. printEmpty: query([empty], empty, (empty) => { console.log(typeof empty); throw 'Anything you want'; })\n}); Candid: service : () -> { getEmpty : () -> (empty) query; printEmpty : (empty) -> (empty) query;\n} dfx: dfx canister call candid_canister printEmpty '(\"You can put anything here\")'\nError: Failed to create argument blob.\nCaused by: Failed to create argument blob. Invalid data: Unable to serialize Candid values: type mismatch: \"You can put anything here\" cannot be of type empty","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » empty » empty","id":"139","title":"empty"},"14":{"body":"Azle supports instances of Node.js http.Server . listen() must be called on the server instance for Azle to use it to handle HTTP requests. Azle does not respect a port being passed into listen(). The port is set by the ICP replica (e.g. dfx start --host 127.0.0.1:8000), not by Azle. Here's an example of a very simple Node.js http.Server : import { createServer } from 'http'; const server = createServer((req, res) => { res.write('Hello World!'); res.end();\n}); server.listen();","breadcrumbs":"Servers » Node.js http.server","id":"14","title":"Node.js http.server"},"140":{"body":"The CandidType object float32 corresponds to the Candid type float32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, float32, query } from 'azle'; export default Canister({ getFloat32: query([], float32, () => { return Math.PI; }), printFloat32: query([float32], float32, (float32) => { console.log(typeof float32); return float32; })\n}); Candid: service : () -> { getFloat32 : () -> (float32) query; printFloat32 : (float32) -> (float32) query;\n} dfx: dfx canister call candid_canister printFloat32 '(3.1415927 : float32)'\n(3.1415927 : float32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » float32 » float32","id":"140","title":"float32"},"141":{"body":"The CandidType object float64 corresponds to the Candid type float64 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, float64, query } from 'azle'; export default Canister({ getFloat64: query([], float64, () => { return Math.E; }), printFloat64: query([float64], float64, (float64) => { console.log(typeof float64); return float64; })\n}); Candid: service : () -> { getFloat64 : () -> (float64) query; printFloat64 : (float64) -> (float64) query;\n} dfx: dfx canister call candid_canister printFloat64 '(2.718281828459045 : float64)'\n(2.718281828459045 : float64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » float64 » float64","id":"141","title":"float64"},"142":{"body":"Values created by the CandidType function Func correspond to the Candid type func , are inferred to be TypeScript [Principal, string] tuples, and will be decoded into JavaScript array with two elements at runtime. The first element is an @dfinity/principal and the second is a JavaScript string . The @dfinity/principal represents the principal of the canister/service where the function exists, and the string represents the function's name. A func acts as a callback, allowing the func receiver to know which canister instance and method must be used to call back. TypeScript or JavaScript: import { Canister, Func, Principal, query, text } from 'azle'; const BasicFunc = Func([text], text, 'query'); export default Canister({ getBasicFunc: query([], BasicFunc, () => { return [ Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'), 'getBasicFunc' ]; }), printBasicFunc: query([BasicFunc], BasicFunc, (basicFunc) => { console.log(typeof basicFunc); return basicFunc; })\n}); Candid: service : () -> { getBasicFunc : () -> (func (text) -> (text) query) query; printBasicFunc : (func (text) -> (text) query) -> ( func (text) -> (text) query, ) query;\n} dfx: dfx canister call candid_canister printBasicFunc '(func \"r7inp-6aaaa-aaaaa-aaabq-cai\".getBasicFunc)'\n(func \"r7inp-6aaaa-aaaaa-aaabq-cai\".getBasicFunc)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » func » func","id":"142","title":"func"},"143":{"body":"The CandidType object int corresponds to the Candid type int , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, int, query } from 'azle'; export default Canister({ getInt: query([], int, () => { return 170_141_183_460_469_231_731_687_303_715_884_105_727n; }), printInt: query([int], int, (int) => { console.log(typeof int); return int; })\n}); Candid: service : () -> { getInt : () -> (int) query; printInt : (int) -> (int) query;\n} dfx: dfx canister call candid_canister printInt '(170_141_183_460_469_231_731_687_303_715_884_105_727 : int)'\n(170_141_183_460_469_231_731_687_303_715_884_105_727 : int)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int » int","id":"143","title":"int"},"144":{"body":"The CandidType object int8 corresponds to the Candid type int8 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int8, query } from 'azle'; export default Canister({ getInt8: query([], int8, () => { return 127; }), printInt8: query([int8], int8, (int8) => { console.log(typeof int8); return int8; })\n}); Candid: service : () -> { getInt8 : () -> (int8) query; printInt8 : (int8) -> (int8) query;\n} dfx: dfx canister call candid_canister printInt8 '(127 : int8)'\n(127 : int8)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int8 » int8","id":"144","title":"int8"},"145":{"body":"The CandidType object int16 corresponds to the Candid type int16 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int16, query } from 'azle'; export default Canister({ getInt16: query([], int16, () => { return 32_767; }), printInt16: query([int16], int16, (int16) => { console.log(typeof int16); return int16; })\n}); Candid: service : () -> { getInt16 : () -> (int16) query; printInt16 : (int16) -> (int16) query;\n} dfx: dfx canister call candid_canister printInt16 '(32_767 : int16)'\n(32_767 : int16)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int16 » int16","id":"145","title":"int16"},"146":{"body":"The CandidType object int32 corresponds to the Candid type int32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int32, query } from 'azle'; export default Canister({ getInt32: query([], int32, () => { return 2_147_483_647; }), printInt32: query([int32], int32, (int32) => { console.log(typeof int32); return int32; })\n}); Candid: service : () -> { getInt32 : () -> (int32) query; printInt32 : (int32) -> (int32) query;\n} dfx: dfx canister call candid_canister printInt32 '(2_147_483_647 : int32)'\n(2_147_483_647 : int32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int32 » int32","id":"146","title":"int32"},"147":{"body":"The CandidType object int64 corresponds to the Candid type int64 , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, int64, query } from 'azle'; export default Canister({ getInt64: query([], int64, () => { return 9_223_372_036_854_775_807n; }), printInt64: query([int64], int64, (int64) => { console.log(typeof int64); return int64; })\n}); Candid: service : () -> { getInt64 : () -> (int64) query; printInt64 : (int64) -> (int64) query;\n} dfx: dfx canister call candid_canister printInt64 '(9_223_372_036_854_775_807 : int64)'\n(9_223_372_036_854_775_807 : int64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int64 » int64","id":"147","title":"int64"},"148":{"body":"The CandidType object nat corresponds to the Candid type nat , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, nat, query } from 'azle'; export default Canister({ getNat: query([], nat, () => { return 340_282_366_920_938_463_463_374_607_431_768_211_455n; }), printNat: query([nat], nat, (nat) => { console.log(typeof nat); return nat; })\n}); Candid: service : () -> { getNat : () -> (nat) query; printNat : (nat) -> (nat) query;\n} dfx: dfx canister call candid_canister printNat '(340_282_366_920_938_463_463_374_607_431_768_211_455 : nat)'\n(340_282_366_920_938_463_463_374_607_431_768_211_455 : nat)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat » nat","id":"148","title":"nat"},"149":{"body":"The CandidType object nat8 corresponds to the Candid type nat8 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat8, query } from 'azle'; export default Canister({ getNat8: query([], nat8, () => { return 255; }), printNat8: query([nat8], nat8, (nat8) => { console.log(typeof nat8); return nat8; })\n}); Candid: service : () -> { getNat8 : () -> (nat8) query; printNat8 : (nat8) -> (nat8) query;\n} dfx: dfx canister call candid_canister printNat8 '(255 : nat8)'\n(255 : nat8)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat8 » nat8","id":"149","title":"nat8"},"15":{"body":"Express is one of the most popular backend JavaScript web frameworks, and it's the recommended way to get started building servers in Azle. Here's the main code from the hello_world example : import express, { Request } from 'express'; let db = { hello: ''\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.json(db);\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.json(db);\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » Express","id":"15","title":"Express"},"150":{"body":"The CandidType object nat16 corresponds to the Candid type nat16 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat16, query } from 'azle'; export default Canister({ getNat16: query([], nat16, () => { return 65_535; }), printNat16: query([nat16], nat16, (nat16) => { console.log(typeof nat16); return nat16; })\n}); Candid: service : () -> { getNat16 : () -> (nat16) query; printNat16 : (nat16) -> (nat16) query;\n} dfx: dfx canister call candid_canister printNat16 '(65_535 : nat16)'\n(65_535 : nat16)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat16 » nat16","id":"150","title":"nat16"},"151":{"body":"The CandidType object nat32 corresponds to the Candid type nat32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat32, query } from 'azle'; export default Canister({ getNat32: query([], nat32, () => { return 4_294_967_295; }), printNat32: query([nat32], nat32, (nat32) => { console.log(typeof nat32); return nat32; })\n}); Candid: service : () -> { getNat32 : () -> (nat32) query; printNat32 : (nat32) -> (nat32) query;\n} dfx: dfx canister call candid_canister printNat32 '(4_294_967_295 : nat32)'\n(4_294_967_295 : nat32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat32 » nat32","id":"151","title":"nat32"},"152":{"body":"The CandidType object nat64 corresponds to the Candid type nat64 , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, nat64, query } from 'azle'; export default Canister({ getNat64: query([], nat64, () => { return 18_446_744_073_709_551_615n; }), printNat64: query([nat64], nat64, (nat64) => { console.log(typeof nat64); return nat64; })\n}); Candid: service : () -> { getNat64 : () -> (nat64) query; printNat64 : (nat64) -> (nat64) query;\n} dfx: dfx canister call candid_canister printNat64 '(18_446_744_073_709_551_615 : nat64)'\n(18_446_744_073_709_551_615 : nat64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat64 » nat64","id":"152","title":"nat64"},"153":{"body":"The CandidType object null corresponds to the Candid type null , is inferred to be a TypeScript null, and will be decoded into a JavaScript null at runtime. TypeScript or JavaScript: import { Canister, Null, query } from 'azle'; export default Canister({ getNull: query([], Null, () => { return null; }), printNull: query([Null], Null, (null_) => { console.log(typeof null_); return null_; })\n}); Candid: service : () -> { getNull : () -> (null) query; printNull : (null) -> (null) query;\n} dfx: dfx canister call candid_canister printNull '(null)'\n(null : null)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » null » null","id":"153","title":"null"},"154":{"body":"The CandidType object Opt corresponds to the Candid type opt , is inferred to be a TypeScript Opt, and will be decoded into a JavaScript Object at runtime. It is a variant with Some and None cases. At runtime if the value of the variant is Some, the Some property of the variant object will have a value of the enclosed Opt type at runtime. TypeScript or JavaScript: import { bool, Canister, None, Opt, query, Some } from 'azle'; export default Canister({ getOptSome: query([], Opt(bool), () => { return Some(true); // equivalent to { Some: true } }), getOptNone: query([], Opt(bool), () => { return None; //equivalent to { None: null} })\n}); Candid: service : () -> { getOptNone : () -> (opt bool) query; getOptSome : () -> (opt bool) query;\n} dfx: dfx canister call candid_canister getOptSome\n(opt true) dfx canister call candid_canister getOptNone\n(null)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » opt » opt","id":"154","title":"opt"},"155":{"body":"The CandidType object Principal corresponds to the Candid type principal , is inferred to be a TypeScript @dfinity/principal Principal, and will be decoded into an @dfinity/principal Principal at runtime. TypeScript or JavaScript: import { Canister, Principal, query } from 'azle'; export default Canister({ getPrincipal: query([], Principal, () => { return Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'); }), printPrincipal: query([Principal], Principal, (principal) => { console.log(typeof principal); return principal; })\n}); Candid: service : () -> { getPrincipal : () -> (principal) query; printPrincipal : (principal) -> (principal) query;\n} dfx: dfx canister call candid_canister printPrincipal '(principal \"rrkah-fqaaa-aaaaa-aaaaq-cai\")'\n(principal \"rrkah-fqaaa-aaaaa-aaaaq-cai\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » principal » principal","id":"155","title":"principal"},"156":{"body":"Objects created by the CandidType function Record correspond to the Candid record type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The shape of the object will match the object literal passed to the Record function. TypeScript or JavaScript: import { Canister, Principal, query, Record, text } from 'azle'; const User = Record({ id: Principal, username: text\n}); export default Canister({ getUser: query([], User, () => { return { id: Principal.fromUint8Array(Uint8Array.from([0])), username: 'lastmjs' }; }), printUser: query([User], User, (user) => { console.log(typeof user); return user; })\n}); Candid: type User = record { id : principal; username : text };\nservice : () -> { getUser : () -> (User) query; printUser : (User) -> (User) query;\n} dfx: dfx canister call candid_canister printUser '(record { id = principal \"2ibo7-dia\"; username = \"lastmjs\" })'\n(record { id = principal \"2ibo7-dia\"; username = \"lastmjs\" })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » record » record","id":"156","title":"record"},"157":{"body":"The CandidType object reserved corresponds to the Candid type reserved , is inferred to be a TypeScript any, and will be decoded into a JavaScript null at runtime. TypeScript or JavaScript: import { Canister, query, reserved } from 'azle'; export default Canister({ getReserved: query([], reserved, () => { return 'anything'; }), printReserved: query([reserved], reserved, (reserved) => { console.log(typeof reserved); return reserved; })\n}); Candid: service : () -> { getReserved : () -> (reserved) query; printReserved : (reserved) -> (reserved) query;\n} dfx: dfx canister call candid_canister printReserved '(null)'\n(null : reserved)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » reserved » reserved","id":"157","title":"reserved"},"158":{"body":"Values created by the CandidType function Canister correspond to the Candid service type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The properties of this object that match the keys of the service's query and update methods can be passed into ic.call and ic.notify to perform cross-canister calls. TypeScript or JavaScript: import { bool, Canister, ic, Principal, query, text, update } from 'azle'; const SomeCanister = Canister({ query1: query([], bool), update1: update([], text)\n}); export default Canister({ getService: query([], SomeCanister, () => { return SomeCanister(Principal.fromText('aaaaa-aa')); }), callService: update([SomeCanister], text, (service) => { return ic.call(service.update1); })\n}); Candid: type ManualReply = variant { Ok : text; Err : text };\nservice : () -> { callService : ( service { query1 : () -> (bool) query; update1 : () -> (text) }, ) -> (ManualReply); getService : () -> ( service { query1 : () -> (bool) query; update1 : () -> (text) }, ) query;\n} dfx: dfx canister call candid_canister getService\n(service \"aaaaa-aa\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » service » service","id":"158","title":"service"},"159":{"body":"The CandidType object text corresponds to the Candid type text , is inferred to be a TypeScript string, and will be decoded into a JavaScript String at runtime. TypeScript or JavaScript: import { Canister, query, text } from 'azle'; export default Canister({ getString: query([], text, () => { return 'Hello world!'; }), printString: query([text], text, (string) => { console.log(typeof string); return string; })\n}); Candid: service : () -> { getString : () -> (text) query; printString : (text) -> (text) query;\n} dfx: dfx canister call candid_canister printString '(\"Hello world!\")'\n(\"Hello world!\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » text » text","id":"159","title":"text"},"16":{"body":"When working with res.json you may run into errors because of attempting to send back JavaScript objects that are not strictly JSON. This can happen when trying to send back an object with a BigInt for example. Azle has created a special function called jsonStringify that will serialize many ICP-specific data structures to JSON for you: import { jsonStringify } from 'azle';\nimport express, { Request } from 'express'; let db = { bigInt: 0n\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.send(jsonStringify(db));\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.send(jsonStringify(db));\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » jsonStringify","id":"16","title":"jsonStringify"},"160":{"body":"Objects created by the CandidType function Variant correspond to the Candid variant type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The shape of the object will match the object literal passed to the Variant function, however it will contain only one of the enumerated properties. TypeScript or JavaScript: import { Canister, Null, query, Variant } from 'azle'; const Emotion = Variant({ Happy: Null, Indifferent: Null, Sad: Null\n}); const Reaction = Variant({ Fire: Null, ThumbsUp: Null, Emotion: Emotion\n}); export default Canister({ getReaction: query([], Reaction, () => { return { Fire: null }; }), printReaction: query([Reaction], Reaction, (reaction) => { console.log(typeof reaction); return reaction; })\n}); Candid: type Emotion = variant { Sad; Indifferent; Happy };\ntype Reaction = variant { Emotion : Emotion; Fire; ThumbsUp };\nservice : () -> { getReaction : () -> (Reaction) query; printReaction : (Reaction) -> (Reaction) query;\n} dfx: dfx canister call candid_canister printReaction '(variant { Fire })'\n(variant { Fire })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » variant » variant","id":"160","title":"variant"},"161":{"body":"The CandidType object Vec corresponds to the Candid type vec , is inferred to be a TypeScript T[], and will be decoded into a JavaScript array of the specified type at runtime (except for Vec which will become a Uint8Array, thus it is recommended to use the blob type instead of Vec). TypeScript or JavaScript: import { Canister, int32, Vec, query } from 'azle'; export default Canister({ getNumbers: query([], Vec(int32), () => { return [0, 1, 2, 3]; }), printNumbers: query([Vec(int32)], Vec(int32), (numbers) => { console.log(typeof numbers); return numbers; })\n}); Candid: service : () -> { getNumbers : () -> (vec int32) query; printNumbers : (vec int32) -> (vec int32) query;\n} dfx: dfx canister call candid_canister printNumbers '(vec { 0 : int32; 1 : int32; 2 : int32; 3 : int32 })'\n(vec { 0 : int32; 1 : int32; 2 : int32; 3 : int32 })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » vec » vec","id":"161","title":"vec"},"162":{"body":"candid decode candid encode canister balance canister balance 128 canister version canister id data certificate instruction counter is controller performance counter print set certified data time trap","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » Canister APIs","id":"162","title":"Canister APIs"},"163":{"body":"This section is a work in progress. Examples: call_raw candid_encoding import { blob, Canister, ic, query, text } from 'azle'; export default Canister({ // decodes Candid bytes to a Candid string candidDecode: query([blob], text, (candidEncoded) => { return ic.candidDecode(candidEncoded); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » candid decode » candid decode","id":"163","title":"candid decode"},"164":{"body":"This section is a work in progress. Examples: call_raw candid_encoding manual_reply notify_raw outgoing_http_requests import { blob, Canister, ic, query, text } from 'azle'; export default Canister({ // encodes a Candid string to Candid bytes candidEncode: query([text], blob, (candidString) => { return ic.candidEncode(candidString); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » candid encode » candid encode","id":"164","title":"candid encode"},"165":{"body":"This section is a work in progress. Examples: cycles ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the amount of cycles available in the canister canisterBalance: query([], nat64, () => { return ic.canisterBalance(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister balance » canister balance","id":"165","title":"canister balance"},"166":{"body":"This section is a work in progress. Examples: cycles ic_api import { Canister, ic, nat, query } from 'azle'; export default Canister({ // returns the amount of cycles available in the canister canisterBalance128: query([], nat, () => { return ic.canisterBalance128(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister balance 128 » canister balance 128","id":"166","title":"canister balance 128"},"167":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the canister's version number canisterVersion: query([], nat64, () => { return ic.canisterVersion(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister version » canister version","id":"167","title":"canister version"},"168":{"body":"This section is a work in progress. Examples: ethereum_json_rpc ic_api http_counter outgoing_http_requests whoami import { Canister, ic, Principal, query } from 'azle'; export default Canister({ // returns this canister's id id: query([], Principal, () => { return ic.id(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister id » canister id","id":"168","title":"canister id"},"169":{"body":"This section is a work in progress. Examples: ic_api import { blob, Canister, ic, Opt, query } from 'azle'; export default Canister({ // When called from a query call, returns the data certificate // authenticating certified_data set by this canister. Returns None if not // called from a query call. dataCertificate: query([], Opt(blob), () => { return ic.dataCertificate(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » data certificate » data certificate","id":"169","title":"data certificate"},"17":{"body":"If you need to add canister methods to your HTTP server, the Server function imported from azle allows you to do so. Here's an example of a very simple HTTP server: import { Server } from 'azle';\nimport express from 'express'; export default Server(() => { const app = express(); app.get('/http-query', (_req, res) => { res.send('http-query-server'); }); app.post('/http-update', (_req, res) => { res.send('http-update-server'); }); return app.listen();\n}); You can add canister methods like this: import { query, Server, text, update } from 'azle';\nimport express from 'express'; export default Server( () => { const app = express(); app.get('/http-query', (_req, res) => { res.send('http-query-server'); }); app.post('/http-update', (_req, res) => { res.send('http-update-server'); }); return app.listen(); }, { candidQuery: query([], text, () => { return 'candidQueryServer'; }), candidUpdate: update([], text, () => { return 'candidUpdateServer'; }) }\n); The default export of your main module must be the result of calling Server, and the callback argument to Server must return a Node.js http.Server . The main module is specified by the main property of your project's dfx.json file . The dfx.json file must be at the root directory of your project. The callback argument to Server can be asynchronous: import { Server } from 'azle';\nimport { createServer } from 'http'; export default Server(async () => { const message = await asynchronousHelloWorld(); return createServer((req, res) => { res.write(message); res.end(); });\n}); async function asynchronousHelloWorld() { // do some asynchronous task return 'Hello World Asynchronous!';\n}","breadcrumbs":"Servers » Server","id":"17","title":"Server"},"170":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // Returns the number of instructions that the canister executed since the // last entry point. instructionCounter: query([], nat64, () => { return ic.instructionCounter(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » instruction counter » instruction counter","id":"170","title":"instruction counter"},"171":{"body":"This section is a work in progress. Examples: ic_api import { bool, Canister, ic, Principal, query } from 'azle'; export default Canister({ // determines whether the given principal is a controller of the canister isController: query([Principal], bool, (principal) => { return ic.isController(principal); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » is controller » is controller","id":"171","title":"is controller"},"172":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ performanceCounter: query([], nat64, () => { return ic.performanceCounter(0); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » performance counter » performance counter","id":"172","title":"performance counter"},"173":{"body":"This section is a work in progress. Examples: ic_api null_example import { bool, Canister, ic, query, text } from 'azle'; export default Canister({ // prints a message through the local replica's output print: query([text], bool, (message) => { ic.print(message); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » print » print","id":"173","title":"print"},"174":{"body":"This section is a work in progress. Examples: ic_api import { blob, Canister, ic, update, Void } from 'azle'; export default Canister({ // sets up to 32 bytes of certified data setCertifiedData: update([blob], Void, (data) => { ic.setCertifiedData(data); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » set certified data » set certified data","id":"174","title":"set certified data"},"175":{"body":"This section is a work in progress. Examples: audio_recorder ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the current timestamp time: query([], nat64, () => { return ic.time(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » time » time","id":"175","title":"time"},"176":{"body":"This section is a work in progress. Examples: cross_canister_calls ethereum_json_rpc http_counter ic_api outgoing_http_requests threshold_ecdsa import { bool, Canister, ic, query, text } from 'azle'; export default Canister({ // traps with a message, stopping execution and discarding all state within the call trap: query([text], bool, (message) => { ic.trap(message); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » trap » trap","id":"176","title":"trap"},"177":{"body":"heartbeat http_request http_request_update init inspect message post upgrade pre upgrade query update","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » Canister Methods","id":"177","title":"Canister Methods"},"178":{"body":"This section is a work in progress. Examples: heartbeat run_time_errors import { Canister, heartbeat } from 'azle'; export default Canister({ heartbeat: heartbeat(() => { console.log('this runs ~1 time per second'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » heartbeat » heartbeat","id":"178","title":"heartbeat"},"179":{"body":"This section is a work in progress. Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, query, Record, text, Tuple, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request: query([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » http_request » http_request","id":"179","title":"http_request"},"18":{"body":"For a deeper understanding of possible limitations you may want to refer to The HTTP Gateway Protocol Specification . The top-level route /api is currently reserved by the replica locally The Transfer-Encoding header is not supported gzip responses most likely do not work HTTP requests are generally limited to ~2 MiB HTTP responses are generally limited to ~3 MiB You cannot set HTTP status codes in the 1xx range","breadcrumbs":"Servers » Limitations","id":"18","title":"Limitations"},"180":{"body":"This section is a work in progress. Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, Record, text, Tuple, update, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request_update: update([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » http_request_update » http_request","id":"180","title":"http_request"},"181":{"body":"This section is a work in progress. Examples: ethereum_json_rpc func_types init persistent-storage pre_and_post_upgrade whoami import { Canister, init } from 'azle'; export default Canister({ init: init([], () => { console.log('This runs once when the canister is first initialized'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » init » init","id":"181","title":"init"},"182":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { bool, Canister, ic, inspectMessage, update } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { console.log('inspectMessage called'); if (ic.methodName() === 'accessible') { ic.acceptMessage(); return; } if (ic.methodName() === 'inaccessible') { return; } throw `Method \"${ic.methodName()}\" not allowed`; }), accessible: update([], bool, () => { return true; }), inaccessible: update([], bool, () => { return false; }), alsoInaccessible: update([], bool, () => { return false; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » inspect message » inspect message","id":"182","title":"inspect message"},"183":{"body":"This section is a work in progress. Examples: pre_and_post_upgrade whoami import { Canister, postUpgrade } from 'azle'; export default Canister({ postUpgrade: postUpgrade([], () => { console.log('This runs after every canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » post upgrade » post upgrade","id":"183","title":"post upgrade"},"184":{"body":"This section is a work in progress. Examples: pre_and_post_upgrade import { Canister, preUpgrade } from 'azle'; export default Canister({ preUpgrade: preUpgrade(() => { console.log('This runs before every canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » pre upgrade » pre upgrade","id":"184","title":"pre upgrade"},"185":{"body":"This section is a work in progress. import { Canister, query, text } from 'azle'; export default Canister({ simpleQuery: query([], text, () => { return 'This is a query method'; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » query » query","id":"185","title":"query"},"186":{"body":"This section is a work in progress. import { Canister, query, text, update, Void } from 'azle'; let message = ''; export default Canister({ getMessage: query([], text, () => { return message; }), setMessage: update([text], Void, (newMessage) => { message = newMessage; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » update » update","id":"186","title":"update"},"187":{"body":"You can provide environment variables to Azle canisters by specifying their names in your dfx.json file and then using the process.env object in Azle. Be aware that the environment variables that you specify in your dfx.json file will be included in plain text in your canister's Wasm binary.","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » Environment Variables","id":"187","title":"Environment Variables"},"188":{"body":"Modify your dfx.json file with the env property to specify which environment variables you would like included in your Azle canister's binary. In this case, CANISTER1_PRINCIPAL and CANISTER2_PRINCIPAL will be included: { \"canisters\": { \"canister1\": { \"type\": \"custom\", \"main\": \"src/canister1/index.ts\", \"build\": \"npx azle canister1\", \"candid\": \"src/canister1/index.did\", \"wasm\": \".azle/canister1/canister1.wasm\", \"gzip\": true, \"declarations\": { \"output\": \"test/dfx_generated/canister1\", \"node_compatibility\": true }, \"env\": [\"CANISTER1_PRINCIPAL\", \"CANISTER2_PRINCIPAL\"] } }\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » dfx.json","id":"188","title":"dfx.json"},"189":{"body":"You can access the specified environment variables in Azle like so: import { Canister, query, text } from 'azle'; export default Canister({ canister1PrincipalEnvVar: query([], text, () => { return ( process.env.CANISTER1_PRINCIPAL ?? 'process.env.CANISTER1_PRINCIPAL is undefined' ); }), canister2PrincipalEnvVar: query([], text, () => { return ( process.env.CANISTER2_PRINCIPAL ?? 'process.env.CANISTER2_PRINCIPAL is undefined' ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » process.env","id":"189","title":"process.env"},"19":{"body":"You can automatically copy static assets (essentially files and folders) into your canister's filesystem during deploy by using the assets, assets_large and build_assets properties of the canister object in your project's dfx.json file. Here's an example that copies the src/frontend/dist directory on the deploying machine into the dist directory of the canister, using the assets and build_assets properties: { \"canisters\": { \"backend\": { \"type\": \"custom\", \"main\": \"src/backend/index.ts\", \"candid\": \"src/backend/index.did\", \"candid_gen\": \"http\", \"build\": \"npx azle backend\", \"wasm\": \".azle/backend/backend.wasm\", \"gzip\": true, \"assets\": [[\"src/frontend/dist\", \"dist\"]], \"build_assets\": \"npm run build\", \"metadata\": [ { \"name\": \"candid:service\", \"path\": \"src/backend/index.did\" }, { \"name\": \"cdk:name\", \"content\": \"azle\" } ] } }\n} The assets property is an array of tuples, where the first element of the tuple is the source directory on the deploying machine, and the second element of the tuple is the destination directory in the canister. Use assets for total assets under ~90 MiB in size. The build_assets property allows you to specify custom terminal commands that will run before Azle copies the assets into the canister. You can use build_assets to build your frontend code for example. In this case we are running npm run build, which refers to an npm script that we have specified in our package.json file. There is also an assets_large property that works similarly to the assets property, but allows for total assets up to ~2 GiB in size. We are working on increasing this limit further. Once you have loaded assets into your canister, they are accessible from that canister's filesystem. Here's an example of using the Express static middleware to serve a frontend from the canister's filesystem: import express from 'express'; const app = express(); app.use(express.static('/dist')); app.listen(); Assuming the /dist directory in the canister has an appropriate index.html file, this canister would serve a frontend at its URL when loaded in a web browser.","breadcrumbs":"Assets » Assets TL;DR","id":"19","title":"Assets TL;DR"},"190":{"body":"bitcoin_get_balance bitcoin_get_current_fee_percentiles bitcoin_get_utxos bitcoin_send_transaction canister_info canister_status create_canister delete_canister deposit_cycles ecdsa_public_key http_request install_code provisional_create_canister_with_cycles provisional_top_up_canister raw_rand sign_with_ecdsa start_canister stop_canister uninstall_code update_settings","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » Management Canister","id":"190","title":"Management Canister"},"191":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, None, text, update } from 'azle';\nimport { managementCanister, Satoshi } from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getBalance: update([text], Satoshi, async (address) => { return await ic.call(managementCanister.bitcoin_get_balance, { args: [ { address, min_confirmations: None, network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_balance » bitcoin_get_balance","id":"191","title":"bitcoin_get_balance"},"192":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, update, Vec } from 'azle';\nimport { managementCanister, MillisatoshiPerByte\n} from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getCurrentFeePercentiles: update([], Vec(MillisatoshiPerByte), async () => { return await ic.call( managementCanister.bitcoin_get_current_fee_percentiles, { args: [ { network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST } ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_current_fee_percentiles » bitcoin_get_current_fee_percentiles","id":"192","title":"bitcoin_get_current_fee_percentiles"},"193":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, None, text, update } from 'azle';\nimport { GetUtxosResult, managementCanister } from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getUtxos: update([text], GetUtxosResult, async (address) => { return await ic.call(managementCanister.bitcoin_get_utxos, { args: [ { address, filter: None, network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_utxos » bitcoin_get_utxos","id":"193","title":"bitcoin_get_utxos"},"194":{"body":"This section is a work in progress. Examples: import { blob, bool, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const BITCOIN_BASE_TRANSACTION_COST = 5_000_000_000n;\nconst BITCOIN_CYCLE_COST_PER_TRANSACTION_BYTE = 20_000_000n; export default Canister({ sendTransaction: update([blob], bool, async (transaction) => { const transactionFee = BITCOIN_BASE_TRANSACTION_COST + BigInt(transaction.length) * BITCOIN_CYCLE_COST_PER_TRANSACTION_BYTE; await ic.call(managementCanister.bitcoin_send_transaction, { args: [ { transaction, network: { Regtest: null } } ], cycles: transactionFee }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_send_transaction » bitcoin_send_transaction","id":"194","title":"bitcoin_send_transaction"},"195":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, update } from 'azle';\nimport { CanisterStatusArgs, CanisterStatusResult, managementCanister\n} from 'azle/canisters/management'; export default Canister({ getCanisterStatus: update( [CanisterStatusArgs], CanisterStatusResult, async (args) => { return await ic.call(managementCanister.canister_status, { args: [args] }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » canister_status » canister_status","id":"195","title":"canister_status"},"196":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, None, update } from 'azle';\nimport { CreateCanisterResult, managementCanister\n} from 'azle/canisters/management'; export default Canister({ executeCreateCanister: update([], CreateCanisterResult, async () => { return await ic.call(managementCanister.create_canister, { args: [{ settings: None }], cycles: 50_000_000_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » create_canister » create_canister","id":"196","title":"create_canister"},"197":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeDeleteCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.delete_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » delete_canister » delete_canister","id":"197","title":"delete_canister"},"198":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeDepositCycles: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.deposit_cycles, { args: [ { canister_id: canisterId } ], cycles: 10_000_000n }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » deposit_cycles » deposit_cycles","id":"198","title":"deposit_cycles"},"199":{"body":"This section is a work in progress. Examples: threshold_ecdsa import { blob, Canister, ic, None, Record, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const PublicKey = Record({ publicKey: blob\n}); export default Canister({ publicKey: update([], PublicKey, async () => { const caller = ic.caller().toUint8Array(); const publicKeyResult = await ic.call( managementCanister.ecdsa_public_key, { args: [ { canister_id: None, derivation_path: [caller], key_id: { curve: { secp256k1: null }, name: 'dfx_test_key' } } ] } ); return { publicKey: publicKeyResult.public_key }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » ecdsa_public_key » ecdsa_public_key","id":"199","title":"ecdsa_public_key"},"2":{"body":"Windows is only supported through a Linux virtual environment of some kind, such as WSL On Ubuntu/WSL: sudo apt-get install podman On Mac: brew install podman It's recommended to use nvm and Node.js 20: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash Restart your terminal and then run: nvm install 20 Check that the installation went smoothly by looking for clean output from the following command: node --version Install the dfx command line tools for managing ICP applications: DFX_VERSION=0.19.0 sh -ci \"$(curl -fsSL https://sdk.dfinity.org/install.sh)\" Check that the installation went smoothly by looking for clean output from the following command: dfx --version If after trying to run dfx --version you encounter an error such as dfx: command not found, you might need to add $HOME/bin to your path. Here's an example of doing this in your .bashrc: echo 'export PATH=\"$PATH:$HOME/bin\"' >> \"$HOME/.bashrc\"","breadcrumbs":"Get Started » Installation","id":"2","title":"Installation"},"20":{"body":"Azle canisters can import ic from azle and use ic.caller() to get the principal (public-key linked identifier) of the initiator of an HTTP request. HTTP requests are anonymous (principal 2vxsx-fae) by default, but authentication with web browsers (and maybe Node.js) can be done using a JWT-like API from azle/http_client. First you import toJwt from azle/http_client: import { toJwt } from 'azle/http_client'; Then you use fetch and construct an Authorization header using an @dfinity/agent Identity: const response = await fetch( `http://bkyz2-fmaaa-aaaaa-qaaaq-cai.localhost:8000/whoami`, { method: 'GET', headers: [['Authorization', toJwt(this.identity)]] }\n); Here's an example of the frontend of a simple web application using azle/http_client and Internet Identity : import { Identity } from '@dfinity/agent';\nimport { AuthClient } from '@dfinity/auth-client';\nimport { toJwt } from 'azle/http_client';\nimport { html, LitElement } from 'lit';\nimport { customElement, property } from 'lit/decorators.js'; @customElement('azle-app')\nexport class AzleApp extends LitElement { @property() identity: Identity | null = null; @property() whoami: string = ''; connectedCallback() { super.connectedCallback(); this.authenticate(); } async authenticate() { const authClient = await AuthClient.create(); const isAuthenticated = await authClient.isAuthenticated(); if (isAuthenticated === true) { this.handleIsAuthenticated(authClient); } else { await this.handleIsNotAuthenticated(authClient); } } handleIsAuthenticated(authClient: AuthClient) { this.identity = authClient.getIdentity(); } async handleIsNotAuthenticated(authClient: AuthClient) { await new Promise((resolve, reject) => { authClient.login({ identityProvider: import.meta.env.VITE_IDENTITY_PROVIDER, onSuccess: resolve as () => void, onError: reject, windowOpenerFeatures: `width=500,height=500` }); }); this.identity = authClient.getIdentity(); } async whoamiUnauthenticated() { const response = await fetch( `${import.meta.env.VITE_CANISTER_ORIGIN}/whoami` ); const responseText = await response.text(); this.whoami = responseText; } async whoamiAuthenticated() { const response = await fetch( `${import.meta.env.VITE_CANISTER_ORIGIN}/whoami`, { method: 'GET', headers: [['Authorization', toJwt(this.identity)]] } ); const responseText = await response.text(); this.whoami = responseText; } render() { return html`

Internet Identity

Whoami principal: ${this.whoami}

`; }\n} Here's an example of the backend of that same simple web application: import { ic } from 'azle';\nimport express from 'express'; const app = express(); app.get('/whoami', (req, res) => { res.send(ic.caller().toString());\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Authentication » Authentication TL;DR","id":"20","title":"Authentication TL;DR"},"200":{"body":"This section is a work in progress. Examples: ethereum_json_rpc outgoing_http_requests import { Canister, ic, None, Principal, query, Some, update } from 'azle';\nimport { HttpResponse, HttpTransformArgs, managementCanister\n} from 'azle/canisters/management'; export default Canister({ xkcd: update([], HttpResponse, async () => { return await ic.call(managementCanister.http_request, { args: [ { url: `https://xkcd.com/642/info.0.json`, max_response_bytes: Some(2_000n), method: { get: null }, headers: [], body: None, transform: Some({ function: [ic.id(), 'xkcdTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); }), xkcdTransform: query([HttpTransformArgs], HttpResponse, (args) => { return { ...args.response, headers: [] }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » http_request » http_request","id":"200","title":"http_request"},"201":{"body":"This section is a work in progress. Examples: management_canister import { blob, bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], bool, async (canisterId, wasmModule) => { await ic.call(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); return true; } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » install_code » install_code","id":"201","title":"install_code"},"202":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, None, update } from 'azle';\nimport { managementCanister, ProvisionalCreateCanisterWithCyclesResult\n} from 'azle/canisters/management'; export default Canister({ provisionalCreateCanisterWithCycles: update( [], ProvisionalCreateCanisterWithCyclesResult, async () => { return await ic.call( managementCanister.provisional_create_canister_with_cycles, { args: [ { amount: None, settings: None } ] } ); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » provisional_create_canister_with_cycles » provisional_create_canister_with_cycles","id":"202","title":"provisional_create_canister_with_cycles"},"203":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, nat, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ provisionalTopUpCanister: update( [Principal, nat], bool, async (canisterId, amount) => { await ic.call(managementCanister.provisional_top_up_canister, { args: [ { canister_id: canisterId, amount } ] }); return true; } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » provisional_top_up_canister » provisional_top_up_canister","id":"203","title":"provisional_top_up_canister"},"204":{"body":"This section is a work in progress. Examples: async/await heartbeat management_canister timers import { blob, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ getRawRand: update([], blob, async () => { return await ic.call(managementCanister.raw_rand); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » raw_rand » raw_rand","id":"204","title":"raw_rand"},"205":{"body":"This section is a work in progress. Examples: threshold_ecdsa import { blob, Canister, ic, Record, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const Signature = Record({ signature: blob\n}); export default Canister({ sign: update([blob], Signature, async (messageHash) => { if (messageHash.length !== 32) { ic.trap('messageHash must be 32 bytes'); } const caller = ic.caller().toUint8Array(); const signatureResult = await ic.call( managementCanister.sign_with_ecdsa, { args: [ { message_hash: messageHash, derivation_path: [caller], key_id: { curve: { secp256k1: null }, name: 'dfx_test_key' } } ], cycles: 10_000_000_000n } ); return { signature: signatureResult.signature }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » sign_with_ecdsa » sign_with_ecdsa","id":"205","title":"sign_with_ecdsa"},"206":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeStartCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.start_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » start_canister » start_canister","id":"206","title":"start_canister"},"207":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeStopCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.stop_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » stop_canister » stop_canister","id":"207","title":"stop_canister"},"208":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeUninstallCode: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.uninstall_code, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » uninstall_code » uninstall_code","id":"208","title":"uninstall_code"},"209":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, None, Principal, Some, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeUpdateSettings: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.update_settings, { args: [ { canister_id: canisterId, settings: { controllers: None, compute_allocation: Some(1n), memory_allocation: Some(3_000_000n), freezing_threshold: Some(2_000_000n) } } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » update_settings » update_settings","id":"209","title":"update_settings"},"21":{"body":"Examples: fetch_ic internet_identity","breadcrumbs":"Authentication » Authentication","id":"21","title":"Authentication"},"210":{"body":"Azle plugins allow developers to wrap Rust code in TypeScript/JavaScript APIs that can then be exposed to Azle canisters, providing a clean and simple developer experience with the underlying Rust code. Plugins are in a very early alpha state. You can create and use them now, but be aware that the API will be changing significantly in the near future. You can use the following example plugins as you create your own plugins:","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » Plugins","id":"210","title":"Plugins"},"211":{"body":"If you just want to create a plugin in the same repo as your project, see the plugins example .","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » Local plugin","id":"211","title":"Local plugin"},"212":{"body":"If you want to create a plugin that can be published and/or used with npm, see the ic-sqlite-plugin example .","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » npm plugin","id":"212","title":"npm plugin"},"213":{"body":"stable structures stable bytes stable grow stable read stable size stable write stable64 grow stable64 read stable64 size stable64 write","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » Stable Memory","id":"213","title":"Stable Memory"},"214":{"body":"This section is a work in progress. Examples: audio_recorder ethereum_json_rpc func_types http_counter inline_types persistent-storage pre_and_post_upgrade stable_structures import { bool, Canister, nat64, nat8, Opt, query, StableBTreeMap, text, Tuple, update, Vec\n} from 'azle'; const Key = nat8;\ntype Key = typeof Key.tsType; const Value = text;\ntype Value = typeof Value.tsType; let map = StableBTreeMap(0); export default Canister({ containsKey: query([Key], bool, (key) => { return map.containsKey(key); }), get: query([Key], Opt(Value), (key) => { return map.get(key); }), insert: update([Key, Value], Opt(Value), (key, value) => { return map.insert(key, value); }), isEmpty: query([], bool, () => { return map.isEmpty(); }), items: query([], Vec(Tuple(Key, Value)), () => { return map.items(); }), keys: query([], Vec(Key), () => { return Uint8Array.from(map.keys()); }), len: query([], nat64, () => { return map.len(); }), remove: update([Key], Opt(Value), (key) => { return map.remove(key); }), values: query([], Vec(Value), () => { return map.values(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable structures » stable structures","id":"214","title":"stable structures"},"215":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, query } from 'azle'; export default Canister({ stableBytes: query([], blob, () => { return ic.stableBytes(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable bytes » stable bytes","id":"215","title":"stable bytes"},"216":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat32, update } from 'azle'; export default Canister({ stableGrow: update([nat32], nat32, (newPages) => { return ic.stableGrow(newPages); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable grow » stable grow","id":"216","title":"stable grow"},"217":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat32, query } from 'azle'; export default Canister({ stableRead: query([nat32, nat32], blob, (offset, length) => { return ic.stableRead(offset, length); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable read » stable read","id":"217","title":"stable read"},"218":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat32, query } from 'azle'; export default Canister({ stableSize: query([], nat32, () => { return ic.stableSize(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable size » stable size","id":"218","title":"stable size"},"219":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat32, update, Void } from 'azle'; export default Canister({ stableWrite: update([nat32, blob], Void, (offset, buf) => { ic.stableWrite(offset, buf); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable write » stable write","id":"219","title":"stable write"},"22":{"body":"Authentication of ICP calls is done through signatures on messages. @dfinity/agent provides very nice abstractions for creating all of the required signatures in the correct formats when calling into canisters on ICP. Unfortunately this requires you to abandon traditional HTTP requests, as you must use the agent's APIs. Azle attempts to enable you to perform traditional HTTP requests with traditional libraries. Currently Azle focuses on fetch. When importing toJwt, azle/http_client will overwrite the global fetch function and will intercept fetch requests that have Authorization headers with an Identity as a value. Once intercepted, these requests are turned into @dfinity/agent requests that call the http_request and http_request_update canister methods directly, thus performing all of the required client-side authentication work. We are working to push for ICP to more natively understand JWTs for authentication, without the need to intercept fetch requests and convert them into agent requests.","breadcrumbs":"Authentication » Under-the-hood","id":"22","title":"Under-the-hood"},"220":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat64, update } from 'azle'; export default Canister({ stable64Grow: update([nat64], nat64, (newPages) => { return ic.stable64Grow(newPages); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 grow » stable64 grow","id":"220","title":"stable64 grow"},"221":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat64, query } from 'azle'; export default Canister({ stable64Read: query([nat64, nat64], blob, (offset, length) => { return ic.stable64Read(offset, length); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 read » stable64 read","id":"221","title":"stable64 read"},"222":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat64, query } from 'azle'; export default Canister({ stable64Size: query([], nat64, () => { return ic.stable64Size(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 size » stable64 size","id":"222","title":"stable64 size"},"223":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat64, update, Void } from 'azle'; export default Canister({ stable64Write: update([nat64, blob], Void, (offset, buf) => { ic.stable64Write(offset, buf); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 write » stable64 write","id":"223","title":"stable64 write"},"224":{"body":"clear timer set timer set timer interval","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » Timers","id":"224","title":"Timers"},"225":{"body":"This section is a work in progress. Examples: timers import { Canister, ic, TimerId, update, Void } from 'azle'; export default Canister({ clearTimer: update([TimerId], Void, (timerId) => { ic.clearTimer(timerId); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » clear timer » clear timer","id":"225","title":"clear timer"},"226":{"body":"This section is a work in progress. Examples: timers import { Canister, Duration, ic, TimerId, Tuple, update } from 'azle'; export default Canister({ setTimers: update([Duration], Tuple(TimerId, TimerId), (delay) => { const functionTimerId = ic.setTimer(delay, callback); const capturedValue = '🚩'; const closureTimerId = ic.setTimer(delay, () => { console.log(`closure called and captured value ${capturedValue}`); }); return [functionTimerId, closureTimerId]; })\n}); function callback() { console.log('callback called');\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » set timer » set timer","id":"226","title":"set timer"},"227":{"body":"This section is a work in progress. Examples: timers import { Canister, Duration, ic, TimerId, Tuple, update } from 'azle'; export default Canister({ setTimerIntervals: update( [Duration], Tuple(TimerId, TimerId), (interval) => { const functionTimerId = ic.setTimerInterval(interval, callback); const capturedValue = '🚩'; const closureTimerId = ic.setTimerInterval(interval, () => { console.log( `closure called and captured value ${capturedValue}` ); }); return [functionTimerId, closureTimerId]; } )\n}); function callback() { console.log('callback called');\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » set timer interval » set timer interval","id":"227","title":"set timer interval"},"228":{"body":"The IC currently limits Wasm binaries to a relatively small size of ~2MiB (with some caveats). You are likely to hit this limit as your Azle canisters grow in size. Azle provides some automatic optimizations to help you deal with this limit. It is hoped that the IC-imposed limit will be greatly increased sometime in 2023. To optimize the Wasm binary of an Azle canister, you can add the opt_level property to your dfx.json with the following options: \"0\", \"1\", \"2\", \"3\", or \"4\". \"0\" is the default option if opt_level is not specified. Each option is intended to reduce the size of your Wasm binary as the value increases. Each option is likely to take longer to compile than the previous option. It is recommended to start at \"1\" and increase only as necessary. Here's an example using opt_level \"1\": { \"canisters\": { \"hello_world\": { \"type\": \"custom\", \"main\": \"src/index.ts\", \"build\": \"npx azle hello_world\", \"candid\": \"src/index.did\", \"wasm\": \".azle/hello_world/hello_world.wasm.gz\", \"opt_level\": \"1\" } }\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Wasm Binary Optimization » Wasm Binary Optimization","id":"228","title":"Wasm Binary Optimization"},"23":{"body":"If your terminal logs ever say did not produce a response or response failed classification=Status code: 502 Bad Gateway, it most likely means that your canister has thrown an error and halted execution for that call. Use console.log and try/catch liberally to track down problems and reveal error information. If your error logs do not have useful messages, use try/catch with a console.log of the catch error argument to reveal the underlying error message.","breadcrumbs":"Debugging » Debugging TL;DR","id":"23","title":"Debugging TL;DR"},"24":{"body":"console.log and try/catch Canister did not produce a response No error message Final Compiled and Bundled JavaScript Azle currently has less-than-elegant error reporting. We hope to improve this significantly in the future. In the meantime, consider the following tips when trying to debug your application.","breadcrumbs":"Debugging » Debugging","id":"24","title":"Debugging"},"25":{"body":"At the highest level, the most important tip is this: use console.log and try/catch liberally to track down problems and reveal error information.","breadcrumbs":"Debugging » console.log and try/catch","id":"25","title":"console.log and try/catch"},"26":{"body":"If you ever see an error that looks like this: Replica Error: reject code CanisterError, reject message IC0506: Canister bkyz2-fmaaa-aaaaa-qaaaq-cai did not produce a response, error code Some(\"IC0506\") or this: 2024-04-17T15:01:39.194377Z WARN icx_proxy_dev::proxy::agent: Replica Error\n2024-04-17T15:01:39.194565Z ERROR tower_http::trace::on_failure: response failed classification=Status code: 502 Bad Gateway latency=61 ms it most likely means that your canister has thrown an error and halted execution for that call. First check the replica's logs for any errors messages. If there are no useful error messages, use console.log and try/catch liberally to track down the source of the error and to reveal more information about the error. Don't be surprised if you need to console.log after each of your program's statements (including dependencies found in node_modules) to find out where the error is coming from. And don't be surprised if you need to use try/catch with a console.log of the catch error argument to reveal useful error messaging.","breadcrumbs":"Debugging » Canister did not produce a response","id":"26","title":"Canister did not produce a response"},"27":{"body":"You might find yourself in a situation where an error is reported without a useful message like this: \n\n\n\nError\n\n\n
    at <anonymous> (azle_main:110643)
   at handle (azle_main:73283)
   at next (azle_main:73452)
   at dispatch (azle_main:73432)
   at handle (azle_main:73283)
   at <anonymous> (azle_main:73655)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at expressInit (azle_main:73910)
   at handle (azle_main:73283)
   at trim_prefix (azle_main:73684)
   at <anonymous> (azle_main:73657)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at query3 (azle_main:73938)
   at handle (azle_main:73283)
   at trim_prefix (azle_main:73684)
   at <anonymous> (azle_main:73657)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at handle (azle_main:73587)
   at handle (azle_main:76233)
   at app2 (azle_main:78091)
   at call (native)
   at emitTwo (azle_main:9782)
   at emit2 (azle_main:10023)
   at httpHandler (azle_main:87618)
\n\n or like this: 2024-04-17 14:35:30.433501980 UTC: [Canister bkyz2-fmaaa-aaaaa-qaaaq-cai] \" at (azle_main:110643)\\n at handle (azle_main:73283)\\n at next (azle_main:73452)\\n at dispatch (azle_main:73432)\\n at handle (azle_main:73283)\\n at (azle_main:73655)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at expressInit (azle_main:73910)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at query3 (azle_main:73938)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at handle (azle_main:73587)\\n at handle (azle_main:76233)\\n at app2 (azle_main:78091)\\n at call (native)\\n at emitTwo (azle_main:9782)\\n at emit2 (azle_main:10023)\\n at httpHandler (azle_main:87618)\\n\"\n2024-04-17T14:35:31.983590Z ERROR tower_http::trace::on_failure: response failed classification=Status code: 500 Internal Server Error latency=101 ms\n2024-04-17 14:36:34.652587412 UTC: [Canister bkyz2-fmaaa-aaaaa-qaaaq-cai] \" at (azle_main:110643)\\n at handle (azle_main:73283)\\n at next (azle_main:73452)\\n at dispatch (azle_main:73432)\\n at handle (azle_main:73283)\\n at (azle_main:73655)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at expressInit (azle_main:73910)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at query3 (azle_main:73938)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at handle (azle_main:73587)\\n at handle (azle_main:76233)\\n at app2 (azle_main:78091)\\n at call (native)\\n at emitTwo (azle_main:9782)\\n at emit2 (azle_main:10023)\\n at httpHandler (azle_main:87618)\\n\" In these situations you might be able to use try/catch with a console.log of the catch error argument to reveal the underlying error message. For example, this code without a try/catch will log errors without the message This is the error text: import express from 'express'; const app = express(); app.get('/hello-world', (_req, res) => { throw new Error('This is the error text'); res.send('Hello World!');\n}); app.listen(); You can get the message to print in the replica terminal like this: import express from 'express'; const app = express(); app.get('/hello-world', (_req, res) => { try { throw new Error('This is the error text'); res.send('Hello World!'); } catch (error) { console.log(error); }\n}); app.listen();","breadcrumbs":"Debugging » No error message","id":"27","title":"No error message"},"28":{"body":"Azle compiles and bundles your TypeScript/JavaScript into a final JavaScript file to be included and executed inside of your canister. Inspecting this final JavaScript code may help you to debug your application. When you see something like (azle_main:110643) in your error stack traces, it is a reference to the final compiled and bundled JavaScript file that is actually deployed with and executed by the canister. The right-hand side of azle_main e.g. :110643 is the line number in that file. You can find the file at [project_name]/.azle/[canister_name]/canister/src/main.js. If you have the AZLE_AUTORELOAD environment variable set to true then you should instead look at [project_name]/.azle/[canister_name]/canister/src/main_reloaded.js","breadcrumbs":"Debugging » Final Compiled and Bundled JavaScript","id":"28","title":"Final Compiled and Bundled JavaScript"},"29":{"body":"There are a number of limitations that you are likely to run into while you develop with Azle on ICP. These are generally the most limiting: 5 billion instruction limit for query calls (HTTP GET requests) (~1 second of computation) 20 billion instruction limit for update calls (HTTP POST/etc requests) (~5 seconds of computation) 2 MiB request size limit 3 MiB response size limit 4 GiB heap limit High request latency relative to traditional web applications (think seconds not milliseconds) High costs relative to traditional web applications (think ~10x traditional web costs) Read more here for in-depth information on current ICP limitations.","breadcrumbs":"Limitations » Limitations TL;DR","id":"29","title":"Limitations TL;DR"},"3":{"body":"npx azle new hello_world\ncd hello_world npm install dfx start --clean --host 127.0.0.1:8000 In a separate terminal in the hello_world directory: dfx deploy If you are building an HTTP-based canister and would like your canister to autoreload on file changes (DO NOT deploy to mainnet with autoreload enabled): AZLE_AUTORELOAD=true dfx deploy If you have problems deploying see Common deployment issues . View your frontend in a web browser at http://[canisterId].localhost:8000. To obtain your application's [canisterId]: dfx canister id backend Communicate with your canister using any HTTP client library, for example using curl: curl http://[canisterId].localhost:8000/db\ncurl -X POST -H \"Content-Type: application/json\" -d \"{ \\\"hello\\\": \\\"world\\\" }\" http://[canisterId].localhost:8000/db/update","breadcrumbs":"Get Started » Deployment","id":"3","title":"Deployment"},"30":{"body":"Autoreload Environment Variables Native Compilation","breadcrumbs":"Reference » Reference","id":"30","title":"Reference"},"31":{"body":"Deploying to mainnet with AZLE_AUTORELOAD=true will expose your canister to arbitrary untrusted JavaScript code execution You can turn on automatic reloading of your canister's final compiled JavaScript by using the AZLE_AUTORELOAD environment variable during deploy: AZLE_AUTORELOAD=true dfx deploy The autoreload feature watches all .ts and .js files recursively in the directory with your dfx.json file (the root directory of your project), excluding files found in .azle, .dfx, and node_modules. Autoreload only works properly if you do not change the methods of your canister. HTTP-based canisters will generally work well with autoreload as the query and update methods http_request and http_request_update will not need to change often. Candid-based canisters with explicit query and update methods may require manual deploys more often. Autoreload will not reload assets uploaded through the assets property of your dfx.json. It is extremely important to keep in mind that setting AZLE_AUTORELOAD=true will create an update method in your canister called reload_js that has no authorization built into it. If you deploy this to mainnet, anyone will be able to call this method and change the JavaScript of your canister.","breadcrumbs":"Reference » Autoreload » Autoreload","id":"31","title":"Autoreload"},"32":{"body":"AZLE_AUTORELOAD AZLE_DOCKERFILE_HASH AZLE_IDENTITY_STORAGE_MODE AZLE_INSTRUCTION_COUNT AZLE_PROPTEST_NUM_RUNS AZLE_PROPTEST_PATH AZLE_PROPTEST_QUIET AZLE_PROPTEST_SEED AZLE_PROPTEST_VERBOSE AZLE_TEST_FETCH AZLE_USE_DOCKERFILE AZLE_VERBOSE AZLE_WASMEDGE_QUICKJS_DIR","breadcrumbs":"Reference » Environment Variables » Environment Variables","id":"32","title":"Environment Variables"},"33":{"body":"Set this to true to enable autoreloading of your TypeScript/JavaScript code when making any changes to .ts or .js files in your project.","breadcrumbs":"Reference » Environment Variables » AZLE_AUTORELOAD","id":"33","title":"AZLE_AUTORELOAD"},"34":{"body":"Set this to the hash that you would like Azle to use when determining the container image, container, and wasmedge-quickjs directory names. The container image file and wasmedge-quickjs directory will be stored at ~/.config/azle. The hash is the final part of each of those names.","breadcrumbs":"Reference » Environment Variables » AZLE_DOCKERFILE_HASH","id":"34","title":"AZLE_DOCKERFILE_HASH"},"35":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_IDENTITY_STORAGE_MODE","id":"35","title":"AZLE_IDENTITY_STORAGE_MODE"},"36":{"body":"Set this to true to see rough instruction counts just before JavaScript execution completes for calls.","breadcrumbs":"Reference » Environment Variables » AZLE_INSTRUCTION_COUNT","id":"36","title":"AZLE_INSTRUCTION_COUNT"},"37":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_NUM_RUNS","id":"37","title":"AZLE_PROPTEST_NUM_RUNS"},"38":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_PATH","id":"38","title":"AZLE_PROPTEST_PATH"},"39":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_QUIET","id":"39","title":"AZLE_PROPTEST_QUIET"},"4":{"body":"There are many Azle examples in the examples directory . We recommend starting with the following: apollo_server audio_and_video autoreload ethers ethers_base express fetch_ic file_protocol fs hello_world http_outcall_fetch hybrid_canister ic_evm_rpc internet_identity large_files sqlite tfjs web_assembly","breadcrumbs":"Examples » Examples","id":"4","title":"Examples"},"40":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_SEED","id":"40","title":"AZLE_PROPTEST_SEED"},"41":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_VERBOSE","id":"41","title":"AZLE_PROPTEST_VERBOSE"},"42":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_TEST_FETCH","id":"42","title":"AZLE_TEST_FETCH"},"43":{"body":"Set this to true to force Azle to build the container image locally from the internal Dockerfile instead of attempting to download the container image.","breadcrumbs":"Reference » Environment Variables » AZLE_USE_DOCKERFILE","id":"43","title":"AZLE_USE_DOCKERFILE"},"44":{"body":"Set this to true to enable more logging output during dfx deploy.","breadcrumbs":"Reference » Environment Variables » AZLE_VERBOSE","id":"44","title":"AZLE_VERBOSE"},"45":{"body":"Set this to the path that you would like Azle to use to find the wasmedge-quickjs directory. The default is ~/.config/azle/wasmedge-quickjs_[current Dockerfile hash].","breadcrumbs":"Reference » Environment Variables » AZLE_WASMEDGE_QUICKJS_DIR","id":"45","title":"AZLE_WASMEDGE_QUICKJS_DIR"},"46":{"body":"Add the --native-compilation option to the command in the build property of your canister object in your dfx.json file. Make sure you install the correct dependencies for your project's version of Azle.","breadcrumbs":"Reference » Native Compilation » Native Compilation TL;DR","id":"46","title":"Native Compilation TL;DR"},"47":{"body":"Examples: key_value_store primitive_types stable_structures Azle uses a container image and Podman to simplify the development environment experience. Because of this, Azle only requires dfx, node/npm, and podman to be installed on the developer's machine. But this setup isn't always desirable. For example, Podman has trouble running inside of a Docker container. If you would like to skip the container and run Azle's build process directly on your machine, you can do so as follows: Add the --native-compilation option to the command in the build property of your canister object in your dfx.json file, like this: npx azle canister_name --native-compilation. Install prerequisites: sudo apt-get update\nsudo apt-get install clang\nsudo apt-get install build-essential Install Rust: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.73.0 --profile=minimal Install wasm32-wasi: rustup target add wasm32-wasi Install wasi2ic: cargo install --git https://github.com/wasm-forge/wasi2ic --rev 806c3558aad24224852a9582f018178402cb3679 Download and rename wasmedge-quickjs: mkdir -p ~/.config/azle\ncd ~/.config/azle\ngit clone https://github.com/demergent-labs/wasmedge-quickjs\ncd wasmedge-quickjs\ngit checkout c21ff69f442998e4cda4619166e23a9bc91418be\ncd -\nmv wasmedge-quickjs wasmedge-quickjs_$(npx azle@0.21.1 dockerfile-hash) Keep in mind that much of this setup is Azle version-specific. The installation steps above are accurate as of version 0.21.1 of Azle. If your Azle project uses a different version of Azle then you might need to make changes to these instructions to ensure correct compilation and execution. If you are struggling to get --native-compilation to work, it may be helpful for you to view the following files from the Azle repository: Dockerfile test.yml , search for --native-compilation","breadcrumbs":"Reference » Native Compilation » Native Compilation","id":"47","title":"Native Compilation"},"48":{"body":"This entire section of the documentation may be out of date Azle is currently going through a transition to give higher priority to utilizing HTTP, REST, JSON, and other familiar web technologies. This is in contrast to having previously focused on ICP-specific technologies like Candid and explicitly creating Canister objects with query and update methods. We are calling these two paradigms HTTP-based and Candid-based. Many concepts from the Candid-based documentation are still applicable in the HTTP-based paradigm. The HTTP-based paradigm simply focuses on changing the communication and serialization strategies to be more web-focused and less custom.","breadcrumbs":"Old Candid-based Documentation » Old Candid-based Documentation","id":"48","title":"Old Candid-based Documentation"},"49":{"body":"Azle is a TypeScript and JavaScript Canister Development Kit (CDK) for the Internet Computer (IC). In other words, it's a TypeScript/JavaScript runtime for building applications ( canisters ) on the IC. npm package GitHub repo Discord channel","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Azle (Beta)","id":"49","title":"Azle (Beta)"},"5":{"body":"Starting the local replica Deploying to the local replica Interacting with your canister Deploying to mainnet Common deployment issues There are two main ICP environments that you will generally interact with: the local replica and mainnet . We recommend using the dfx command line tools to deploy to these environments. Please note that not all dfx commands are shown here. See the dfx CLI reference for more information.","breadcrumbs":"Deployment » Deployment","id":"5","title":"Deployment"},"50":{"body":"Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Disclaimer","id":"50","title":"Disclaimer"},"51":{"body":"Azle is currently developed by Demergent Labs , a for-profit company with a grant from DFINITY . Demergent Labs' vision is to accelerate the adoption of Web3, the Internet Computer, and sustainable open source.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Demergent Labs","id":"51","title":"Demergent Labs"},"52":{"body":"Azle and the IC provide unique benefits and drawbacks, and both are not currently suitable for all application use-cases. The following information will help you to determine when Azle and the IC might be beneficial for your use-case.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Benefits and drawbacks","id":"52","title":"Benefits and drawbacks"},"53":{"body":"Azle intends to be a full TypeScript and JavaScript environment for the IC (a decentralized cloud platform), with support for all of the TypeScript and JavaScript language and as many relevant environment APIs as possible. These environment APIs will be similar to those available in the Node.js and web browser environments. One of the core benefits of Azle is that it allows web developers to bring their TypeScript or JavaScript skills to the IC. For example, Azle allows the use of various npm packages and VS Code intellisense. As for the IC, we believe its main benefits can be broken down into the following categories: Ownership Security Developer Experience Most of these benefits stem from the decentralized nature of the IC, though the IC is best thought of as a progressively decentralizing cloud platform. As opposed to traditional cloud platforms, its goal is to be owned and controlled by many independent entities. Ownership Full-stack group ownership Autonomous ownership Permanent APIs Credible neutrality Reduced platform risk Full-stack group ownership The IC allows you to build applications that are controlled directly and only (with some caveats) by a group of people. This is in opposition to most cloud applications written today, which must be under the control of a very limited number of people and often a single legal entity that answers directly to a cloud provider, which itself is a single legal entity. In the blockchain world, group-owned applications are known as DAOs . As opposed to DAOs built on most blockchains, the IC allows full-stack applications to be controlled by groups. This means that the group fully controls the running instances of the frontend and the backend code. Autonomous ownership In addition to allowing applications to be owned by groups of people, the IC also allows applications to be owned by no one. This essentially creates autonomous applications or everlasting processes that execute indefinitely. The IC will essentially allow such an application to run indefinitely, unless it depletes its balance of cycles, or the NNS votes to shut it down, neither of which is inevitable. Permanent APIs Because most web APIs are owned and operated by individual entities, their fate is tied to that of their owners. If their owners go out of business, then those APIs may cease to exist. If their owners decide that they do not like or agree with certain users, they may restrict their access. In the end, they may decide to shut down or restrict access for arbitrary reasons. Because the IC allows for group and autonomous ownership of cloud software, the IC is able to produce potentially permanent web APIs. A decentralized group of independent entities will find it difficult to censor API consumers or shut down an API. An autonomous API would take those difficulties to the extreme, as it would continue operating as long as consumers were willing to pay for it. Credible neutrality Group and autonomous ownership makes it possible to build neutral cloud software on the IC. This type of software would allow independent parties to coordinate with reduced trust in each other or a single third-party coordinator. This removes the risk of the third-party coordinator acting in its own self-interest against the interests of the coordinating participants. The coordinating participants would also find it difficult to implement changes that would benefit themselves to the detriment of other participants. Examples could include mobile app stores, ecommerce marketplaces, and podcast directories. Reduced platform risk Because the IC is not owned or controlled by any one entity or individual, the risk of being deplatformed is reduced. This is in opposition to most cloud platforms, where the cloud provider itself generally has the power to arbitrarily remove users from its platform. While deplatforming can still occur on the IC, the only endogenous means of forcefully taking down an application is through an NNS vote. Security Built-in replication Built-in authentication Built-in firewall/port management Built-in sandboxing Threshold protocols Verifiable source code Blockchain integration Built-in replication Replication has many benefits that stem from reducing various central points of failure. The IC is at its core a Byzantine Fault Tolerant replicated compute environment. Applications are deployed to subnets which are composed of nodes running replicas. Each replica is an independent replicated state machine that executes an application's state transitions (usually initiated with HTTP requests) and persists the results. This replication provides a high level of security out-of-the-box. It is also the foundation of a number of protocols that provide threshold cryptographic operations to IC applications. Built-in authentication IC client tooling makes it easy to sign and send messages to the IC, and Internet Identity provides a novel approach to self-custody of private keys. The IC automatically authenticates messages with the public key of the signer, and provides a compact representation of that public key, called a principal, to the application. The principal can be used for authorization purposes. This removes many authentication concerns from the developer. Built-in firewall/port management The concept of ports and various other low-level network infrastructure on the IC is abstracted away from the developer. This can greatly reduce application complexity thus minimizing the chance of introducing vulnerabilities through incorrect configurations. Canisters expose endpoints through various methods, usually query or update methods. Because authentication is also built-in, much of the remaining vulnerability surface area is minimized to implementing correct authorization rules in the canister method endpoints. Built-in sandboxing Canisters have at least two layers of sandboxing to protect colocated canisters from each other. All canisters are at their core Wasm modules and thus inherit the built-in Wasm sandbox. In case there is any bug in the underlying implementation of the Wasm execution environment (or a vulnerability in the imported host functionality), there is also an OS-level sandbox. Developers need not do anything to take advantage of these sandboxes. Threshold protocols The IC provides a number of threshold protocols that allow groups of independent nodes to perform cryptographic operations. These protocols remove central points of failure while providing familiar and useful cryptographic operations to developers. Included are ECDSA , BLS , VRF-like , and in the future threshold key derivation . Verifiable source code IC applications (canisters) are compiled into Wasm and deployed to the IC as Wasm modules. The IC hashes each canister's Wasm binary and stores it for public retrieval. The Wasm binary hash can be retrieved and compared with the hash of an independently compiled Wasm binary derived from available source code. If the hashes match, then one can know with a high degree of certainty that the application is executing the Wasm binary that was compiled from that source code. Blockchain integration When compared with web APIs built for the same purpose, the IC provides a high degree of security when integrating with various other blockchains. It has a direct client integration with Bitcoin, allowing applications to query its state with BFT guarantees. A similar integration is coming for Ethereum. In addition to these blockchain client integrations, a threshold ECDSA protocol (tECDSA) allows the IC to create keys and sign transactions on various ECDSA chains . These chains include Bitcoin and Ethereum, and in the future the protocol may be extended to allow interaction with various EdDSA chains . These direct integrations combined with tECDSA provide a much more secure way to provide blockchain functionality to end users than creating and storing their private keys on traditional cloud infrastructure. Developer experience Built-in devops Orthogonal persistence Built-in devops The IC provides many devops benefits automatically. Though currently limited in its scalability, the protocol attempts to remove the need for developers to concern themselves with concepts such as autoscaling, load balancing, uptime, sandboxing, and firewalls/port management. Correctly constructed canisters have a simple deploy process and automatically inherit these devops capabilities up unto the current scaling limits of the IC. DFINITY engineers are constantly working to remove scalability bottlenecks. Orthogonal persistence The IC automatically persists its heap. This creates an extremely convenient way for developers to store application state, by simply writing into global variables in their programming language of choice. This is a great way to get started. If a canister upgrades its code, swapping out its Wasm binary, then the heap must be cleared. To overcome this limitation, there is a special area of memory called stable memory that persists across these canister upgrades. Special stable data structures provide a familiar API that allows writing into stable memory directly. All of this together provides the foundation for a very simple persistence experience for the developer. The persistence tools now available and coming to the IC may be simpler than their equivalents on traditional cloud infrastructure.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Benefits","id":"53","title":"Benefits"},"54":{"body":"It's important to note that both Azle and the IC are early-stage projects. The IC officially launched in May of 2021, and Azle reached beta in April of 2022. Azle Some of Azle's main drawbacks can be summarized as follows: Beta Security risks Missing APIs Beta Azle reached beta in April of 2022. It's an immature project that may have unforeseen bugs and other issues. We're working constantly to improve it. We hope to get to a production-ready 1.0 in 2024. The following are the major blockers to 1.0: Extensive automated property test coverage Multiple independent security reviews/audits Broad npm package support Security risks As discussed earlier, these are some things to keep in mind: Azle does not yet have extensive automated property tests Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to the IC Missing APIs Azle is not Node.js nor is it V8 running in a web browser. It is using a JavaScript interpreter running in a very new and very different environment. APIs from the Node.js and web browser ecosystems may not be present in Azle. Our goal is to support as many of these APIs as possible over time. IC Some of the IC's main drawbacks can be summarized as follows: Early High latencies Limited and expensive compute resources Limited scalability Lack of privacy NNS risk Early The IC launched officially in May of 2021. As a relatively new project with an extremely ambitious vision, you can expect a small community, immature tooling, and an unproven track record. Much has been delivered, but many promises are yet to be fulfilled. High latencies Any requests that change state on the IC must go through consensus, thus you can expect latencies of a few seconds for these types of requests. When canisters need to communicate with each other across subnets or under heavy load, these latencies can be even longer. Under these circumstances, in the worst case latencies will build up linearly. For example, if canister A calls canister B calls canister C, and these canisters are all on different subnets or under heavy load, then you might need to multiply the latency by the total number of calls. Limited and expensive compute resources CPU usage, data storage, and network usage may be more expensive than the equivalent usage on traditional cloud platforms. Combining these costs with the high latencies explained above, it becomes readily apparent that the IC is currently not built for high-performance computing. Limited scalability The IC might not be able to scale to the needs of your application. It is constantly seeking to improve scalability bottlenecks, but it will probably not be able to onboard millions of users to your traditional web application. Lack of privacy You should assume that all of your application data (unless it is end-to-end encrypted) is accessible to multiple third-parties with no direct relationship and limited commitment to you. Currently all canister state sits unencrypted on node operator's machines. Application-layer access controls for data are possible, but motivated node operators will have an easy time getting access to your data. NNS risk The NNS has the ability to uninstall any canister and can generally change anything about the IC protocol. The NNS uses a simple liquid democracy based on coin/token voting and follower relationships. At the time of this writing most of the voting power on the NNS follows DFINITY for protocol changes, effectively giving DFINITY write control to the protocol while those follower relationships remain in place. The NNS must mature and decentralize to provide practical and realistic protections to canisters and their users.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Drawbacks","id":"54","title":"Drawbacks"},"55":{"body":"The Internet Computer (IC) is a decentralized cloud platform. Actually, it is better thought of as a progressively decentralizing cloud platform. Its full vision is yet to be fulfilled. It aims to be owned and operated by many independent entities in many geographies and legal jurisdictions throughout the world. This is in opposition to most traditional cloud platforms today, which are generally owned and operated by one overarching legal entity. The IC is composed of computer hardware nodes running the IC protocol software. Each running IC protocol software process is known as a replica. Nodes are assigned into groups known as subnets. Each subnet attempts to maximize its decentralization of nodes according to factors such as data center location and node operator independence. The subnets vary in size. Generally speaking the larger the size of the subnet the more secure it will be. Subnets currently range in size from 13 to 40 nodes, with most subnets having 13 nodes. IC applications, known as canisters, are deployed to specific subnets. They are then accessible through Internet Protocol requests such as HTTP. Each subnet replicates all canisters across all of its replicas. A consensus protocol is run by the replicas to ensure Byzantine Fault Tolerance . View the IC Dashboard to explore all data centers, subnets, node operators, and many other aspects of the IC.","breadcrumbs":"Old Candid-based Documentation » Internet Computer Overview » Internet Computer Overview","id":"55","title":"Internet Computer Overview"},"56":{"body":"Canisters are Internet Computer (IC) applications. They are the encapsulation of your code and state, and are essentially Wasm modules. State can be stored on the 4 GiB heap or in a larger 96 GiB location called stable memory. You can store state on the heap using your language's native global variables. You can store state in stable memory using low-level APIs or special stable data structures that behave similarly to native language data structures. State changes must go through a process called consensus. The consensus process ensures that state changes are Byzantine Fault Tolerant . This process takes a few seconds to complete. Operations on canister state are exposed to users through canister methods. These methods can be invoked through HTTP requests. Query methods allow state to be read and are low-latency. Update methods allow state to be changed and are higher-latency. Update methods take a few seconds to complete because of the consensus process.","breadcrumbs":"Old Candid-based Documentation » Canisters Overview » Canisters Overview","id":"56","title":"Canisters Overview"},"57":{"body":"Windows is only supported through a Linux virtual environment of some kind, such as WSL On Ubuntu/WSL: sudo apt-get install podman On Mac: brew install podman It's recommended to use nvm and Node.js 20: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash Restart your terminal and then run: nvm install 20 Check that the installation went smoothly by looking for clean output from the following command: node --version Install the dfx command line tools for managing ICP applications: DFX_VERSION=0.16.1 sh -ci \"$(curl -fsSL https://sdk.dfinity.org/install.sh)\" Check that the installation went smoothly by looking for clean output from the following command: dfx --version If after trying to run dfx --version you encounter an error such as dfx: command not found, you might need to add $HOME/bin to your path. Here's an example of doing this in your .bashrc: echo 'export PATH=\"$PATH:$HOME/bin\"' >> \"$HOME/.bashrc\"","breadcrumbs":"Old Candid-based Documentation » Installation » Installation","id":"57","title":"Installation"},"58":{"body":"Quick start Methodical start The project directory and file structure index.ts tsconfig.json dfx.json Local deployment Common deployment issues Interacting with your canister from the command line Interacting with your canister from the web UI Let's build your first application (canister) with Azle! Before embarking please ensure you've followed all of the installation instructions , especially noting the build dependencies . We'll build a simple Hello World canister that shows the basics of importing Azle, exposing a query method, exposing an update method, and storing some state in a global variable. We'll then interact with it from the command line and from our web browser.","breadcrumbs":"Old Candid-based Documentation » Hello World » Hello World","id":"58","title":"Hello World"},"59":{"body":"We are going to use the Azle new command which creates a simple example project. First use the new command to create a new project called azle_hello_world: npx azle new azle_hello_world Now let's go inside of our project: cd azle_hello_world We should install Azle and all of its dependencies: npm install Start up your local replica: dfx start In another terminal, deploy your canister: dfx deploy azle_hello_world Call the setMessage method: dfx canister call azle_hello_world setMessage '(\"Hello world!\")' Call the getMessage method: dfx canister call azle_hello_world getMessage If you run into an error during deployment, see the common deployment issues section . See the official azle_hello_world example for more information.","breadcrumbs":"Old Candid-based Documentation » Hello World » Quick Start","id":"59","title":"Quick Start"},"6":{"body":"We recommend running your local replica in its own terminal and on a port of your choosing: dfx start --host 127.0.0.1:8000 Alternatively you can start the local replica as a background process: dfx start --background --host 127.0.0.1:8000 If you want to stop a local replica running in the background: dfx stop If you ever see this kind of error after dfx stop: Error: Failed to kill all processes. Remaining: 627221 626923 627260 Then try this: sudo kill -9 627221\nsudo kill -9 626923\nsudo kill -9 627260 If your replica starts behaving strangely, we recommend starting the replica clean, which will clean the dfx state of your project: dfx start --clean --host 127.0.0.1:8000","breadcrumbs":"Deployment » Starting the local replica","id":"6","title":"Starting the local replica"},"60":{"body":"","breadcrumbs":"Old Candid-based Documentation » Hello World » Methodical start","id":"60","title":"Methodical start"},"61":{"body":"Assuming you're starting completely from scratch, run these commands to setup your project's directory and file structure: mkdir azle_hello_world\ncd azle_hello_world mkdir src touch src/index.ts\ntouch tsconfig.json\ntouch dfx.json Now install Azle, which will create your package.json and package-lock.json files: npm install azle Open up azle_hello_world in your text editor (we recommend VS Code ).","breadcrumbs":"Old Candid-based Documentation » Hello World » The project directory and file structure","id":"61","title":"The project directory and file structure"},"62":{"body":"Here's the main code of the project, which you should put in the azle_hello_world/src/index.ts file of your canister: import { Canister, query, text, update, Void } from 'azle'; // This is a global variable that is stored on the heap\nlet message = ''; export default Canister({ // Query calls complete quickly because they do not go through consensus getMessage: query([], text, () => { return message; }), // Update calls take a few seconds to complete // This is because they persist state changes and go through consensus setMessage: update([text], Void, (newMessage) => { message = newMessage; // This change will be persisted })\n}); Let's discuss each section of the code. import { Canister, query, text, update, Void } from 'azle'; The code starts off by importing Canister, query, text, update and Void from azle. The azle module provides most of the Internet Computer (IC) APIs for your canister. // This is a global variable that is stored on the heap\nlet message = ''; We have created a global variable to store the state of our application. This variable is in scope to all of the functions defined in this module. We have set it equal to an empty string. export default Canister({ ...\n}); The Canister function allows us to export our canister's definition to the Azle IC environment. // Query calls complete quickly because they do not go through consensus\ngetMessage: query([], text, () => { return message;\n}), We are exposing a canister query method here. This method simply returns our global message variable. We use a CandidType object called text to instruct Azle to encode the return value as a Candid text value. When query methods are called they execute quickly because they do not have to go through consensus. // Update calls take a few seconds to complete\n// This is because they persist state changes and go through consensus\nsetMessage: update([text], Void, (newMessage) => { message = newMessage; // This change will be persisted\n}); We are exposing an update method here. This method accepts a string from the caller and will store it in our global message variable. We use a CandidType object called text to instruct Azle to decode the newMessage parameter from a Candid text value to a JavaScript string value. Azle will infer the TypeScript type for newMessage. We use a CandidType object called Void to instruct Azle to encode the return value as the absence of a Candid value. When update methods are called they take a few seconds to complete. This is because they persist changes and go through consensus. A majority of nodes in a subnet must agree on all state changes introduced in calls to update methods. That's it! We've created a very simple getter/setter Hello World application. But no Hello World project is complete without actually yelling Hello world! To do that, we'll need to setup the rest of our project.","breadcrumbs":"Old Candid-based Documentation » Hello World » index.ts","id":"62","title":"index.ts"},"63":{"body":"Create the following in azle_hello_world/tsconfig.json: { \"compilerOptions\": { \"strict\": true, \"target\": \"ES2020\", \"moduleResolution\": \"node\", \"allowJs\": true, \"outDir\": \"HACK_BECAUSE_OF_ALLOW_JS\" }\n}","breadcrumbs":"Old Candid-based Documentation » Hello World » tsconfig.json","id":"63","title":"tsconfig.json"},"64":{"body":"Create the following in azle_hello_world/dfx.json: { \"canisters\": { \"azle_hello_world\": { \"type\": \"custom\", \"main\": \"src/index.ts\", \"candid\": \"src/index.did\", \"build\": \"npx azle azle_hello_world\", \"wasm\": \".azle/azle_hello_world/azle_hello_world.wasm\", \"gzip\": true } }\n}","breadcrumbs":"Old Candid-based Documentation » Hello World » dfx.json","id":"64","title":"dfx.json"},"65":{"body":"Let's deploy to our local replica. First startup the replica: dfx start --background Then deploy the canister: dfx deploy","breadcrumbs":"Old Candid-based Documentation » Hello World » Local deployment","id":"65","title":"Local deployment"},"66":{"body":"If you run into an error during deployment, see the common deployment issues section .","breadcrumbs":"Old Candid-based Documentation » Hello World » Common deployment issues","id":"66","title":"Common deployment issues"},"67":{"body":"Once we've deployed we can ask for our message: dfx canister call azle_hello_world getMessage We should see (\"\") representing an empty message. Now let's yell Hello World!: dfx canister call azle_hello_world setMessage '(\"Hello World!\")' Retrieve the message: dfx canister call azle_hello_world getMessage We should see (\"Hello World!\").","breadcrumbs":"Old Candid-based Documentation » Hello World » Interacting with your canister from the command line","id":"67","title":"Interacting with your canister from the command line"},"68":{"body":"After deploying your canister, you should see output similar to the following in your terminal: Deployed canisters.\nURLs: Backend canister via Candid interface: azle_hello_world: http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai Open up http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai or the equivalent URL from your terminal to access the web UI and interact with your canister.","breadcrumbs":"Old Candid-based Documentation » Hello World » Interacting with your canister from the web UI","id":"68","title":"Interacting with your canister from the web UI"},"69":{"body":"Starting the local replica Deploying to the local replica Interacting with your canister Deploying to mainnet Common deployment issues There are two main Internet Computer (IC) environments that you will generally interact with: the local replica and mainnet. When developing on your local machine, our recommended flow is to start up a local replica in your project's root directoy and then deploy to it for local testing.","breadcrumbs":"Old Candid-based Documentation » Deployment » Deployment","id":"69","title":"Deployment"},"7":{"body":"To deploy all canisters defined in your dfx.json: dfx deploy If you are building an HTTP-based canister and would like your canister to autoreload on file changes (DO NOT deploy to mainnet with autoreload enabled): AZLE_AUTORELOAD=true dfx deploy To deploy an individual canister: dfx deploy [canisterName]","breadcrumbs":"Deployment » Deploying to the local replica","id":"7","title":"Deploying to the local replica"},"70":{"body":"Open a terminal and navigate to your project's root directory: dfx start Alternatively you can start the local replica as a background process: dfx start --background If you want to stop a local replica running in the background: dfx stop If you ever see this error after dfx stop: Error: Failed to kill all processes. Remaining: 627221 626923 627260 Then try this: sudo kill -9 627221\nsudo kill -9 626923\nsudo kill -9 627260 If your replica starts behaving strangely, we recommend starting the replica clean, which will clean the dfx state of your project: dfx start --clean","breadcrumbs":"Old Candid-based Documentation » Deployment » Starting the local replica","id":"70","title":"Starting the local replica"},"71":{"body":"To deploy all canisters defined in your dfx.json: dfx deploy To deploy an individual canister: dfx deploy canister_name","breadcrumbs":"Old Candid-based Documentation » Deployment » Deploying to the local replica","id":"71","title":"Deploying to the local replica"},"72":{"body":"As a developer you can generally interact with your canister in three ways: dfx command line dfx web UI @dfinity/agent","breadcrumbs":"Old Candid-based Documentation » Deployment » Interacting with your canister","id":"72","title":"Interacting with your canister"},"73":{"body":"You can see a more complete reference here . The commands you are likely to use most frequently are: # assume a canister named my_canister # builds and deploys all canisters specified in dfx.json\ndfx deploy # builds all canisters specified in dfx.json\ndfx build # builds and deploys my_canister\ndfx deploy my_canister # builds my_canister\ndfx build my_canister # removes the Wasm binary and state of my_canister\ndfx uninstall-code my_canister # calls the methodName method on my_canister with a string argument\ndfx canister call my_canister methodName '(\"This is a Candid string argument\")'","breadcrumbs":"Old Candid-based Documentation » Deployment » dfx command line","id":"73","title":"dfx command line"},"74":{"body":"After deploying your canister, you should see output similar to the following in your terminal: Deployed canisters.\nURLs: Backend canister via Candid interface: my_canister: http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai Open up http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai to access the web UI.","breadcrumbs":"Old Candid-based Documentation » Deployment » dfx web UI","id":"74","title":"dfx web UI"},"75":{"body":"@dfinity/agent is the TypeScript/JavaScript client library for interacting with canisters on the IC. If you are building a client web application, this is probably what you'll want to use. There are other agents for other languages as well: Java Python Rust","breadcrumbs":"Old Candid-based Documentation » Deployment » @dfinity/agent","id":"75","title":"@dfinity/agent"},"76":{"body":"Assuming you are setup with cycles , then you are ready to deploy to mainnet. To deploy all canisters defined in your dfx.json: dfx deploy --network ic To deploy an individual canister: dfx deploy --network ic canister_name","breadcrumbs":"Old Candid-based Documentation » Deployment » Deploying to mainnet","id":"76","title":"Deploying to mainnet"},"77":{"body":"If you run into an error during deployment, try the following: Ensure that you have followed the instructions correctly in the installation chapter , especially noting the build dependencies Start the whole deployment process from scratch by running the following commands: dfx stop or simply terminate dfx in your terminal, dfx start --clean, npx azle clean, dfx deploy Look for more error output by adding the --verbose flag to the build command in your dfx.json file like so: \"build\": \"npx azle build hello_world --verbose Look for errors in each of the files in ~/.config/azle/rust/[rust_version]/logs Reach out in the Discord channel","breadcrumbs":"Old Candid-based Documentation » Deployment » Common deployment issues","id":"77","title":"Common deployment issues"},"78":{"body":"Azle has many example projects showing nearly all Azle APIs. They can be found in the examples directory of the Azle GitHub repository . We'll highlight a few of them and some others here: Query Update Primitive Types Stable Structures Cycles Cross Canister Calls Management Canister Outgoing HTTP Requests Incoming HTTP Requests Pre and Post Upgrade Timers Multisig Vault ICRC-1 IC Chainlink Data Feeds Bitcoin ckBTC","breadcrumbs":"Old Candid-based Documentation » Examples » Examples","id":"78","title":"Examples"},"79":{"body":"","breadcrumbs":"Old Candid-based Documentation » Query Methods » Query Methods","id":"79","title":"Query Methods"},"8":{"body":"You will generally interact with your canister through an HTTP client such as curl, fetch, or a web browser. The URL of your canister locally will look like this: http://[canisterId].localhost:[replicaPort]. Azle will print your canister's URL in the terminal after a successful deploy. # You can obtain the canisterId like this\ndfx canister id [canisterName] # You can obtain the replicaPort like this\ndfx info webserver-port # An example of performing a GET request to a canister\ncurl http://a3shf-5eaaa-aaaaa-qaafa-cai.localhost:8000 # An example of performing a POST request to a canister\ncurl -X POST -H \"Content-Type: application/json\" -d \"{ \\\"hello\\\": \\\"world\\\" }\" http://a3shf-5eaaa-aaaaa-qaafa-cai.localhost:8000","breadcrumbs":"Deployment » Interacting with your canister","id":"8","title":"Interacting with your canister"},"80":{"body":"Created with the query function Read-only Executed on a single node No consensus Latency on the order of ~100 milliseconds 5 billion Wasm instruction limit 4 GiB heap limit ~32k queries per second per canister The most basic way to expose your canister's functionality publicly is through a query method. Here's an example of a simple query method named getString: import { Canister, query, text } from 'azle'; export default Canister({ getString: query([], text, () => { return 'This is a query method!'; })\n}); Query methods are defined inside of a call to Canister using the query function. The first parameter to query is an array of CandidType objects that will be used to decode the Candid bytes of the arguments sent from the client when calling your query method. The second parameter to query is a CandidType object used to encode the return value of your function to Candid bytes to then be sent back to the client. The third parameter to query is the function that receives the decoded arguments, performs some computation, and then returns a value to be encoded. The TypeScript signature of this function (parameter and return types) will be inferred from the CandidType arguments in the first and second parameters to query. getString can be called from the outside world through the IC's HTTP API. You'll usually invoke this API from the dfx command line, dfx web UI, or an agent . From the dfx command line you can call it like this: dfx canister call my_canister getString Query methods are read-only. They do not persist any state changes. Take a look at the following example: import { Canister, query, text, Void } from 'azle'; let db: { [key: string]: string;\n} = {}; export default Canister({ set: query([text, text], Void, (key, value) => { db[key] = value; })\n}); Calling set will perform the operation of setting the key property on the db object to value, but after the call finishes that change will be discarded. This is because query methods are executed on a single node machine and do not go through consensus . This results in lower latencies, perhaps on the order of 100 milliseconds. There is a limit to how much computation can be done in a single call to a query method. The current query call limit is 5 billion Wasm instructions . Here's an example of a query method that runs the risk of reaching the limit: import { Canister, nat32, query, text } from 'azle'; export default Canister({ pyramid: query([nat32], text, (levels) => { return new Array(levels).fill(0).reduce((acc, _, index) => { const asterisks = new Array(index + 1).fill('*').join(''); return `${acc}${asterisks}\\n`; }, ''); })\n}); From the dfx command line you can call pyramid like this: dfx canister call my_canister pyramid '(1_000)' With an argument of 1_000, pyramid will fail with an error ...exceeded the instruction limit for single message execution. Keep in mind that each query method invocation has up to 4 GiB of heap available. In terms of query scalability, an individual canister likely has an upper bound of ~36k queries per second .","breadcrumbs":"Old Candid-based Documentation » Query Methods » TL;DR","id":"80","title":"TL;DR"},"81":{"body":"","breadcrumbs":"Old Candid-based Documentation » Update Methods » Update Methods","id":"81","title":"Update Methods"},"82":{"body":"Created with the update function Read-write Executed on many nodes Consensus Latency ~2-5 seconds 20 billion Wasm instruction limit 4 GiB heap limit 96 GiB stable memory limit ~900 updates per second per canister Update methods are similar to query methods, but state changes can be persisted. Here's an example of a simple update method: import { Canister, nat64, update } from 'azle'; let counter = 0n; export default Canister({ increment: update([], nat64, () => { return counter++; })\n}); Calling increment will return the current value of counter and then increase its value by 1. Because counter is a global variable, the change will be persisted to the heap, and subsequent query and update calls will have access to the new counter value. Because the Internet Computer (IC) persists changes with certain fault tolerance guarantees, update calls are executed on many nodes and go through consensus . This leads to latencies of ~2-5 seconds per update call. Due to the latency and other expenses involved with update methods, it is best to use them only when necessary. Look at the following example: import { Canister, query, text, update, Void } from 'azle'; let message = ''; export default Canister({ getMessage: query([], text, () => { return message; }), setMessage: update([text], Void, (newMessage) => { message = newMessage; })\n}); You'll notice that we use an update method, setMessage, only to perform the change to the global message variable. We use getMessage, a query method, to read the message. Keep in mind that the heap is limited to 4 GiB, and thus there is an upper bound to global variable storage capacity. You can imagine how a simple database like the following would eventually run out of memory with too many entries: import { Canister, None, Opt, query, Some, text, update, Void } from 'azle'; type Db = { [key: string]: string;\n}; let db: Db = {}; export default Canister({ get: query([text], Opt(text), (key) => { const value = db[key]; return value !== undefined ? Some(value) : None; }), set: update([text, text], Void, (key, value) => { db[key] = value; })\n}); If you need more than 4 GiB of storage, consider taking advantage of the 96 GiB of stable memory. Stable structures like StableBTreeMap give you a nice API for interacting with stable memory. These data structures will be covered in more detail later . Here's a simple example: import { Canister, Opt, query, StableBTreeMap, text, update, Void } from 'azle'; let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); })\n}); So far we have only seen how state changes can be persisted. State changes can also be discarded by implicit or explicit traps. A trap is an immediate stop to execution with the ability to provide a message to the execution environment. Traps can be useful for ensuring that multiple operations are either all completed or all disregarded, or in other words atomic. Keep in mind that these guarantees do not hold once cross-canister calls are introduced, but that's a more advanced topic covered later . Here's an example of how to trap and ensure atomic changes to your database: import { Canister, ic, Opt, query, Record, StableBTreeMap, text, update, Vec, Void\n} from 'azle'; const Entry = Record({ key: text, value: text\n}); let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); }), setMany: update([Vec(Entry)], Void, (entries) => { entries.forEach((entry) => { if (entry.key === 'trap') { ic.trap('explicit trap'); } db.insert(entry.key, entry.value); }); })\n}); In addition to ic.trap, an explicit JavaScript throw or any unhandled exception will also trap. There is a limit to how much computation can be done in a single call to an update method. The current update call limit is 20 billion Wasm instructions . If we modify our database example, we can introduce an update method that runs the risk of reaching the limit: import { Canister, nat64, Opt, query, StableBTreeMap, text, update, Void\n} from 'azle'; let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); }), setMany: update([nat64], Void, (numEntries) => { for (let i = 0; i < numEntries; i++) { db.insert(i.toString(), i.toString()); } })\n}); From the dfx command line you can call setMany like this: dfx canister call my_canister setMany '(10_000)' With an argument of 10_000, setMany will fail with an error ...exceeded the instruction limit for single message execution. In terms of update scalability, an individual canister likely has an upper bound of ~900 updates per second .","breadcrumbs":"Old Candid-based Documentation » Update Methods » TL;DR","id":"82","title":"TL;DR"},"83":{"body":"text blob nat nat8 nat16 nat32 nat64 int int8 int16 int32 int64 float32 float64 bool null vec opt record variant func service principal reserved empty Candid is an interface description language created by DFINITY . It can be used to define interfaces between services (canisters), allowing canisters and clients written in various languages to easily interact with each other. This interaction occurs through the serialization/encoding and deserialization/decoding of runtime values to and from Candid bytes. Azle performs automatic encoding and decoding of JavaScript values to and from Candid bytes through the use of various CandidType objects. For example, CandidType objects are used when defining the parameter and return types of your query and update methods. They are also used to define the keys and values of a StableBTreeMap. It's important to note that the CandidType objects decode Candid bytes into specific JavaScript runtime data structures that may differ in behavior from the description of the actual Candid type. For example, a float32 Candid type is a JavaScript Number , a nat64 is a JavaScript BigInt , and an int is also a JavaScript BigInt . Keep this in mind as it may result in unexpected behavior. Each CandidType object and its equivalent JavaScript runtime value is explained in more detail in The Azle Book Candid reference . A more canonical reference of all Candid types available on the Internet Computer (IC) can be found here . The following is a simple example showing how to import and use many of the CandidType objects available in Azle: import { blob, bool, Canister, float32, float64, Func, int, int16, int32, int64, int8, nat, nat16, nat32, nat64, nat8, None, Null, Opt, Principal, query, Record, Recursive, text, update, Variant, Vec\n} from 'azle'; const MyCanister = Canister({ query: query([], bool), update: update([], text)\n}); const Candid = Record({ text: text, blob: blob, nat: nat, nat64: nat64, nat32: nat32, nat16: nat16, nat8: nat8, int: int, int64: int64, int32: int32, int16: int16, int8: int8, float64: float64, float32: float32, bool: bool, null: Null, vec: Vec(text), opt: Opt(nat), record: Record({ firstName: text, lastName: text, age: nat8 }), variant: Variant({ Tag1: Null, Tag2: Null, Tag3: int }), func: Recursive(() => Func([], Candid, 'query')), canister: Canister({ query: query([], bool), update: update([], text) }), principal: Principal\n}); export default Canister({ candidTypes: query([], Candid, () => { return { text: 'text', blob: Uint8Array.from([]), nat: 340_282_366_920_938_463_463_374_607_431_768_211_455n, nat64: 18_446_744_073_709_551_615n, nat32: 4_294_967_295, nat16: 65_535, nat8: 255, int: 170_141_183_460_469_231_731_687_303_715_884_105_727n, int64: 9_223_372_036_854_775_807n, int32: 2_147_483_647, int16: 32_767, int8: 127, float64: Math.E, float32: Math.PI, bool: true, null: null, vec: ['has one element'], opt: None, record: { firstName: 'John', lastName: 'Doe', age: 35 }, variant: { Tag1: null }, func: [ Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'), 'candidTypes' ], canister: MyCanister(Principal.fromText('aaaaa-aa')), principal: Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai') }; })\n}); Calling candidTypes with dfx will return: ( record { func = func \"rrkah-fqaaa-aaaaa-aaaaq-cai\".candidTypes; text = \"text\"; nat16 = 65_535 : nat16; nat32 = 4_294_967_295 : nat32; nat64 = 18_446_744_073_709_551_615 : nat64; record = record { age = 35 : nat8; lastName = \"Doe\"; firstName = \"John\" }; int = 170_141_183_460_469_231_731_687_303_715_884_105_727 : int; nat = 340_282_366_920_938_463_463_374_607_431_768_211_455 : nat; opt = null; vec = vec { \"has one element\" }; variant = variant { Tag1 }; nat8 = 255 : nat8; canister = service \"aaaaa-aa\"; int16 = 32_767 : int16; int32 = 2_147_483_647 : int32; int64 = 9_223_372_036_854_775_807 : int64; null = null : null; blob = vec {}; bool = true; principal = principal \"ryjl3-tyaaa-aaaaa-aaaba-cai\"; int8 = 127 : int8; float32 = 3.1415927 : float32; float64 = 2.718281828459045 : float64; },\n)","breadcrumbs":"Old Candid-based Documentation » Candid » Candid","id":"83","title":"Candid"},"84":{"body":"","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Stable Structures","id":"84","title":"Stable Structures"},"85":{"body":"96 GiB of stable memory Persistent across upgrades Familiar API Must specify memory id No migrations per memory id Stable structures are data structures with familiar APIs that allow write and read access to stable memory. Stable memory is a separate memory location from the heap that currently allows up to 96 GiB of binary storage. Stable memory persists automatically across upgrades. Persistence on the Internet Computer (IC) is very important to understand. When a canister is upgraded (its code is changed after being initially deployed) its heap is wiped. This includes all global variables. On the other hand, anything stored in stable memory will be preserved. Writing and reading to and from stable memory can be done with a low-level API , but it is generally easier and preferable to use stable structures. Azle currently provides one stable structure called StableBTreeMap. It's similar to a JavaScript Map and has most of the common operations you'd expect such as reading, inserting, and removing values. Here's how to define a simple StableBTreeMap: import { nat8, StableBTreeMap, text } from 'azle'; let map = StableBTreeMap(0); This is a StableBTreeMap with a key of type nat8 and a value of type text. Unless you want a default type of any for your key and value, then you must explicitly type your StableBTreeMap with type arguments. StableBTreeMap works by encoding and decoding values under-the-hood, storing and retrieving these values in bytes in stable memory. When writing to and reading from a StableBTreeMap, by default the stableJson Serializable object is used to encode JS values into bytes and to decode JS values from bytes. stableJson uses JSON.stringify and JSON.parse with a custom replacer and reviver to handle many Candid and other values that you will most likely use in your canisters. You may use other Serializable objects besides stableJson, and you can even create your own. Simply pass in a Serializable object as the second and third parameters to your StableBTreeMap. The second parameter is the key Serializable object and the third parameter is the value Serializable object. For example, the following StableBTreeMap uses the nat8 and text CandidType objects from Azle as Serializable objects. These Serializable objects will encode and decode to and from Candid bytes: import { nat8, StableBTreeMap, text } from 'azle'; let map = StableBTreeMap(0, nat8, text); All CandidType objects imported from azle are Serializable objects. A Serializable object simply has a toBytes method that takes a JS value and returns a Uint8Array, and a fromBytes method that takes a Uint8Array and returns a JS value. Here's an example of how to create your own simple JSON Serializable: export interface Serializable { toBytes: (data: any) => Uint8Array; fromBytes: (bytes: Uint8Array) => any;\n} export function StableSimpleJson(): Serializable { return { toBytes(data: any) { const result = JSON.stringify(data); return Uint8Array.from(Buffer.from(result)); }, fromBytes(bytes: Uint8Array) { return JSON.parse(Buffer.from(bytes).toString()); } };\n} This StableBTreeMap also has a memory id of 0. Each StableBTreeMap instance must have a unique memory id between 0 and 254. Once a memory id is allocated, it cannot be used with a different StableBTreeMap. This means you can't create another StableBTreeMap using the same memory id, and you can't change the key or value types of an existing StableBTreeMap. This problem will be addressed to some extent . Here's an example showing all of the basic StableBTreeMap operations: import { bool, Canister, nat64, nat8, Opt, query, StableBTreeMap, text, Tuple, update, Vec\n} from 'azle'; const Key = nat8;\ntype Key = typeof Key.tsType; const Value = text;\ntype Value = typeof Value.tsType; let map = StableBTreeMap(0); export default Canister({ containsKey: query([Key], bool, (key) => { return map.containsKey(key); }), get: query([Key], Opt(Value), (key) => { return map.get(key); }), insert: update([Key, Value], Opt(Value), (key, value) => { return map.insert(key, value); }), isEmpty: query([], bool, () => { return map.isEmpty(); }), items: query([], Vec(Tuple(Key, Value)), () => { return map.items(); }), keys: query([], Vec(Key), () => { return Uint8Array.from(map.keys()); }), len: query([], nat64, () => { return map.len(); }), remove: update([Key], Opt(Value), (key) => { return map.remove(key); }), values: query([], Vec(Value), () => { return map.values(); })\n}); With these basic operations you can build more complex CRUD database applications: import { blob, Canister, ic, Err, nat64, Ok, Opt, Principal, query, Record, Result, StableBTreeMap, text, update, Variant, Vec\n} from 'azle'; const User = Record({ id: Principal, createdAt: nat64, recordingIds: Vec(Principal), username: text\n});\ntype User = typeof User.tsType; const Recording = Record({ id: Principal, audio: blob, createdAt: nat64, name: text, userId: Principal\n});\ntype Recording = typeof Recording.tsType; const AudioRecorderError = Variant({ RecordingDoesNotExist: Principal, UserDoesNotExist: Principal\n});\ntype AudioRecorderError = typeof AudioRecorderError.tsType; let users = StableBTreeMap(0);\nlet recordings = StableBTreeMap(1); export default Canister({ createUser: update([text], User, (username) => { const id = generateId(); const user: User = { id, createdAt: ic.time(), recordingIds: [], username }; users.insert(user.id, user); return user; }), readUsers: query([], Vec(User), () => { return users.values(); }), readUserById: query([Principal], Opt(User), (id) => { return users.get(id); }), deleteUser: update([Principal], Result(User, AudioRecorderError), (id) => { const userOpt = users.get(id); if ('None' in userOpt) { return Err({ UserDoesNotExist: id }); } const user = userOpt.Some; user.recordingIds.forEach((recordingId) => { recordings.remove(recordingId); }); users.remove(user.id); return Ok(user); }), createRecording: update( [blob, text, Principal], Result(Recording, AudioRecorderError), (audio, name, userId) => { const userOpt = users.get(userId); if ('None' in userOpt) { return Err({ UserDoesNotExist: userId }); } const user = userOpt.Some; const id = generateId(); const recording: Recording = { id, audio, createdAt: ic.time(), name, userId }; recordings.insert(recording.id, recording); const updatedUser: User = { ...user, recordingIds: [...user.recordingIds, recording.id] }; users.insert(updatedUser.id, updatedUser); return Ok(recording); } ), readRecordings: query([], Vec(Recording), () => { return recordings.values(); }), readRecordingById: query([Principal], Opt(Recording), (id) => { return recordings.get(id); }), deleteRecording: update( [Principal], Result(Recording, AudioRecorderError), (id) => { const recordingOpt = recordings.get(id); if ('None' in recordingOpt) { return Err({ RecordingDoesNotExist: id }); } const recording = recordingOpt.Some; const userOpt = users.get(recording.userId); if ('None' in userOpt) { return Err({ UserDoesNotExist: recording.userId }); } const user = userOpt.Some; const updatedUser: User = { ...user, recordingIds: user.recordingIds.filter( (recordingId) => recordingId.toText() !== recording.id.toText() ) }; users.insert(updatedUser.id, updatedUser); recordings.remove(id); return Ok(recording); } )\n}); function generateId(): Principal { const randomBytes = new Array(29) .fill(0) .map((_) => Math.floor(Math.random() * 256)); return Principal.fromUint8Array(Uint8Array.from(randomBytes));\n} The example above shows a very basic audio recording backend application. There are two types of entities that need to be stored, User and Recording. These are represented as Candid records. Each entity gets its own StableBTreeMap: import { blob, Canister, ic, Err, nat64, Ok, Opt, Principal, query, Record, Result, StableBTreeMap, text, update, Variant, Vec\n} from 'azle'; const User = Record({ id: Principal, createdAt: nat64, recordingIds: Vec(Principal), username: text\n});\ntype User = typeof User.tsType; const Recording = Record({ id: Principal, audio: blob, createdAt: nat64, name: text, userId: Principal\n});\ntype Recording = typeof Recording.tsType; const AudioRecorderError = Variant({ RecordingDoesNotExist: Principal, UserDoesNotExist: Principal\n});\ntype AudioRecorderError = typeof AudioRecorderError.tsType; let users = StableBTreeMap(0);\nlet recordings = StableBTreeMap(1); Notice that each StableBTreeMap has a unique memory id. You can begin to create basic database CRUD functionality by creating one StableBTreeMap per entity. It's up to you to create functionality for querying, filtering, and relations. StableBTreeMap is not a full-featured database solution, but a fundamental building block that may enable you to achieve more advanced database functionality. Demergent Labs plans to deeply explore database solutions on the IC in the future.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » TL;DR","id":"85","title":"TL;DR"},"86":{"body":"","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Caveats","id":"86","title":"Caveats"},"87":{"body":"It seems to be only some float64 values cannot be successfully stored and retrieved with a StableBTreeMap using stableJson because of this bug with JSON.parse: https://github.com/bellard/quickjs/issues/206","breadcrumbs":"Old Candid-based Documentation » Stable Structures » float64 values","id":"87","title":"float64 values"},"88":{"body":"Azle's Candid encoding/decoding implementation is currently not well optimized, and Candid may not be the most optimal encoding format overall, so you may experience heavy instruction usage when performing many StableBTreeMap operations in succession. A rough idea of the overhead from our preliminary testing is probably 1-2 million instructions for a full Candid encoding and decoding of values per StableBTreeMap operation. For these reasons we recommend using the stableJson Serializable object (the default) instead of CandidType Serializable objects.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » CandidType Performance","id":"88","title":"CandidType Performance"},"89":{"body":"Migrations must be performed manually by reading the values out of one StableBTreeMap and writing them into another. Once a StableBTreeMap is initialized to a specific memory id, that memory id cannot be changed unless the canister is completely wiped and initialized again.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Migrations","id":"89","title":"Migrations"},"9":{"body":"Assuming you are setup with a cycles wallet , then you are ready to deploy to mainnet. To deploy all canisters defined in your dfx.json: dfx deploy --network ic To deploy an individual canister: dfx deploy --network ic [canisterName] The URL of your canister on mainnet will look like this: https://[canisterId].raw.icp0.io.","breadcrumbs":"Deployment » Deploying to mainnet","id":"9","title":"Deploying to mainnet"},"90":{"body":"Canister values do not currently work with the default stableJson implementation. If you must persist Canisters, consider using the Canister CandidType object as your Serializable object in your StableBTreeMap, or create a custom replacer or reviver for stableJson that handles Canister.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Canister","id":"90","title":"Canister"},"91":{"body":"Examples: async_await bitcoin composite_queries cross_canister_calls cycles ethereum_json_rpc func_types heartbeat inline_types ledger_canister management_canister outgoing_http_requests threshold_ecdsa rejections timers tuple_types whoami Canisters are generally able to call the query or update methods of other canisters in any subnet. We refer to these types of calls as cross-canister calls. A cross-canister call begins with a definition of the canister to be called. Imagine a simple canister called token_canister: import { Canister, ic, nat64, Opt, Principal, StableBTreeMap, update\n} from 'azle'; let accounts = StableBTreeMap(0); export default Canister({ transfer: update([Principal, nat64], nat64, (to, amount) => { const from = ic.caller(); const fromBalance = getBalance(accounts.get(from)); const toBalance = getBalance(accounts.get(to)); accounts.insert(from, fromBalance - amount); accounts.insert(to, toBalance + amount); return amount; })\n}); function getBalance(accountOpt: Opt): nat64 { if ('None' in accountOpt) { return 0n; } else { return accountOpt.Some; }\n} Now that you have the canister definition, you can import and instantiate it in another canister: import { Canister, ic, nat64, Principal, update } from 'azle';\nimport TokenCanister from './token_canister'; const tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); If you don't have the actual definition of the token canister with the canister method implementations, you can always create your own canister definition without method implementations: import { Canister, ic, nat64, Principal, update } from 'azle'; const TokenCanister = Canister({ transfer: update([Principal, nat64], nat64)\n}); const tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); The IC guarantees that cross-canister calls will return. This means that, generally speaking, you will always receive a response from ic.call. If there are errors during the call, ic.call will throw. Wrapping your cross-canister call in a try...catch allows you to handle these errors. Let's add to our example code and explore adding some practical error-handling to stop people from stealing tokens. token_canister: import { Canister, ic, nat64, Opt, Principal, StableBTreeMap, update\n} from 'azle'; let accounts = StableBTreeMap(0); export default Canister({ transfer: update([Principal, nat64], nat64, (to, amount) => { const from = ic.caller(); const fromBalance = getBalance(accounts.get(from)); if (amount > fromBalance) { throw new Error(`${from} has an insufficient balance`); } const toBalance = getBalance(accounts.get(to)); accounts.insert(from, fromBalance - amount); accounts.insert(to, toBalance + amount); return amount; })\n}); function getBalance(accountOpt: Opt): nat64 { if ('None' in accountOpt) { return 0n; } else { return accountOpt.Some; }\n} payout_canister: import { Canister, ic, nat64, Principal, update } from 'azle';\nimport TokenCanister from './index'; const tokenCanister = TokenCanister( Principal.fromText('bkyz2-fmaaa-aaaaa-qaaaq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { try { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); } catch (error) { console.log(error); } return 0n; })\n}); Throwing will allow you to express error conditions and halt execution, but you may find embracing the Result variant as a better solution for error handling because of its composability and predictability. So far we have only shown a cross-canister call from an update method. Update methods can call other update methods or query methods (but not composite query methods as discussed below). If an update method calls a query method, that query method will be called in replicated mode. Replicated mode engages the consensus process, but for queries the state will still be discarded. Cross-canister calls can also be initiated from query methods. These are known as composite queries, and in Azle they are simply async query methods. Composite queries can call other composite query methods and regular query methods. Composite queries cannot call update methods. Here's an example of a composite query method: import { bool, Canister, ic, Principal, query } from 'azle'; const SomeCanister = Canister({ queryForBoolean: query([], bool)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ querySomeCanister: query([], bool, async () => { return await ic.call(someCanister.queryForBoolean); })\n}); You can expect cross-canister calls within the same subnet to take up to a few seconds to complete, and cross-canister calls across subnets take about double that time . Composite queries should be much faster, similar to query calls in latency. If you don't need to wait for your cross-canister call to return, you can use notify: import { Canister, ic, Principal, update, Void } from 'azle'; const SomeCanister = Canister({ receiveNotification: update([], Void)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ sendNotification: update([], Void, () => { return ic.notify(someCanister.receiveNotification); })\n}); If you need to send cycles with your cross-canister call, you can add cycles to the config object of ic.notify: import { Canister, ic, Principal, update, Void } from 'azle'; const SomeCanister = Canister({ receiveNotification: update([], Void)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ sendNotification: update([], Void, () => { return ic.notify(someCanister.receiveNotification, { cycles: 1_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Cross-canister » Cross-canister","id":"91","title":"Cross-canister"},"92":{"body":"This chapter is a work in progress.","breadcrumbs":"Old Candid-based Documentation » HTTP » HTTP","id":"92","title":"HTTP"},"93":{"body":"Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, query, Record, text, Tuple, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request: query([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » HTTP » Incoming HTTP requests","id":"93","title":"Incoming HTTP requests"},"94":{"body":"Examples: ethereum_json_rpc outgoing_http_requests import { Canister, ic, init, nat32, Principal, query, Some, StableBTreeMap, text, update\n} from 'azle';\nimport { HttpResponse, HttpTransformArgs, managementCanister\n} from 'azle/canisters/management'; let stableStorage = StableBTreeMap(0); export default Canister({ init: init([text], (ethereumUrl) => { stableStorage.insert('ethereumUrl', ethereumUrl); }), ethGetBalance: update([text], text, async (ethereumAddress) => { const urlOpt = stableStorage.get('ethereumUrl'); if ('None' in urlOpt) { throw new Error('ethereumUrl is not defined'); } const url = urlOpt.Some; const httpResponse = await ic.call(managementCanister.http_request, { args: [ { url, max_response_bytes: Some(2_000n), method: { post: null }, headers: [], body: Some( Buffer.from( JSON.stringify({ jsonrpc: '2.0', method: 'eth_getBalance', params: [ethereumAddress, 'earliest'], id: 1 }), 'utf-8' ) ), transform: Some({ function: [ic.id(), 'ethTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); return Buffer.from(httpResponse.body.buffer).toString('utf-8'); }), ethGetBlockByNumber: update([nat32], text, async (number) => { const urlOpt = stableStorage.get('ethereumUrl'); if ('None' in urlOpt) { throw new Error('ethereumUrl is not defined'); } const url = urlOpt.Some; const httpResponse = await ic.call(managementCanister.http_request, { args: [ { url, max_response_bytes: Some(2_000n), method: { post: null }, headers: [], body: Some( Buffer.from( JSON.stringify({ jsonrpc: '2.0', method: 'eth_getBlockByNumber', params: [`0x${number.toString(16)}`, false], id: 1 }), 'utf-8' ) ), transform: Some({ function: [ic.id(), 'ethTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); return Buffer.from(httpResponse.body.buffer).toString('utf-8'); }), ethTransform: query([HttpTransformArgs], HttpResponse, (args) => { return { ...args.response, headers: [] }; })\n});","breadcrumbs":"Old Candid-based Documentation » HTTP » Outgoing HTTP requests","id":"94","title":"Outgoing HTTP requests"},"95":{"body":"This chapter is a work in progress. You can access the management canister like this: import { blob, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ randomBytes: update([], blob, async () => { return await ic.call(managementCanister.raw_rand); })\n}); See the management canister reference section for more information.","breadcrumbs":"Old Candid-based Documentation » Management Canister » Management Canister","id":"95","title":"Management Canister"},"96":{"body":"This chapter is a work in progress. import { Canister, init, postUpgrade, preUpgrade } from 'azle'; export default Canister({ init: init([], () => { console.log('runs on first canister install'); }), preUpgrade: preUpgrade(() => { console.log('runs before canister upgrade'); }), postUpgrade: postUpgrade([], () => { console.log('runs after canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Canister Lifecycle » Canister Lifecycle","id":"96","title":"Canister Lifecycle"},"97":{"body":"This chapter is a work in progress. import { blob, bool, Canister, Duration, ic, int8, query, Record, text, TimerId, update, Void\n} from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const StatusReport = Record({ single: bool, inline: int8, capture: text, repeat: int8, singleCrossCanister: blob, repeatCrossCanister: blob\n}); const TimerIds = Record({ single: TimerId, inline: TimerId, capture: TimerId, repeat: TimerId, singleCrossCanister: TimerId, repeatCrossCanister: TimerId\n}); let statusReport: typeof StatusReport = { single: false, inline: 0, capture: '', repeat: 0, singleCrossCanister: Uint8Array.from([]), repeatCrossCanister: Uint8Array.from([])\n}; export default Canister({ clearTimer: update([TimerId], Void, (timerId) => { ic.clearTimer(timerId); console.log(`timer ${timerId} cancelled`); }), setTimers: update([Duration, Duration], TimerIds, (delay, interval) => { const capturedValue = '🚩'; const singleId = ic.setTimer(delay, oneTimeTimerCallback); const inlineId = ic.setTimer(delay, () => { statusReport.inline = 1; console.log('Inline timer called'); }); const captureId = ic.setTimer(delay, () => { statusReport.capture = capturedValue; console.log(`Timer captured value ${capturedValue}`); }); const repeatId = ic.setTimerInterval(interval, () => { statusReport.repeat++; console.log(`Repeating timer. Call ${statusReport.repeat}`); }); const singleCrossCanisterId = ic.setTimer( delay, singleCrossCanisterTimerCallback ); const repeatCrossCanisterId = ic.setTimerInterval( interval, repeatCrossCanisterTimerCallback ); return { single: singleId, inline: inlineId, capture: captureId, repeat: repeatId, singleCrossCanister: singleCrossCanisterId, repeatCrossCanister: repeatCrossCanisterId }; }), statusReport: query([], StatusReport, () => { return statusReport; })\n}); function oneTimeTimerCallback() { statusReport.single = true; console.log('oneTimeTimerCallback called');\n} async function singleCrossCanisterTimerCallback() { console.log('singleCrossCanisterTimerCallback'); statusReport.singleCrossCanister = await ic.call( managementCanister.raw_rand );\n} async function repeatCrossCanisterTimerCallback() { console.log('repeatCrossCanisterTimerCallback'); statusReport.repeatCrossCanister = Uint8Array.from([ ...statusReport.repeatCrossCanister, ...(await ic.call(managementCanister.raw_rand)) ]);\n}","breadcrumbs":"Old Candid-based Documentation » Timers » Timers","id":"97","title":"Timers"},"98":{"body":"This chapter is a work in progress. Cycles are essentially units of computational resources such as bandwidth, memory, and CPU instructions. Costs are generally metered on the Internet Computer (IC) by cycles. You can see a breakdown of all cycle costs here . Currently queries do not have any cycle costs. Most important to you will probably be update costs. TODO break down some cycle scenarios maybe? Perhaps we should show some of our analyses for different types of applications. Maybe show how to send and receive cycles, exactly how to do it. Show all of the APIs for sending or receiving cycles? Perhaps we don't need to do that here, since each API will show this information. Maybe here we just show the basic concept of cycles, link to the main cycles cost page, and show a few examples of how to break down these costs or estimate these costs.","breadcrumbs":"Old Candid-based Documentation » Cycles » Cycles","id":"98","title":"Cycles"},"99":{"body":"","breadcrumbs":"Old Candid-based Documentation » Caveats » Caveats","id":"99","title":"Caveats"}},"length":229,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772}}},"df":6,"docs":{"137":{"tf":2.0},"161":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"129":{"tf":1.0},"16":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"x":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"6":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"1":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"'":{"*":{"'":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":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":{"80":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"134":{"tf":1.0}}},"5":{"df":1,"docs":{"134":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"29":{"tf":1.0}}}},"1":{"0":{"6":{"4":{"3":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"134":{"tf":1.0}}},"4":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"134":{"tf":1.0}}},"7":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"6":{"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":2,"docs":{"144":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"8":{"df":9,"docs":{"111":{"tf":2.449489742783178},"117":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.4142135623730951}}},"4":{":":{"3":{"5":{":":{"3":{"0":{".":{"4":{"3":{"3":{"5":{"0":{"1":{"9":{"8":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"3":{"4":{".":{"6":{"5":{"2":{"5":{"8":{"7":{"4":{"1":{"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"_":{"1":{"4":{"1":{"_":{"1":{"8":{"3":{"_":{"4":{"6":{"0":{"_":{"4":{"6":{"9":{"_":{"2":{"3":{"1":{"_":{"7":{"3":{"1":{"_":{"6":{"8":{"7":{"_":{"3":{"0":{"3":{"_":{"7":{"1":{"5":{"_":{"8":{"8":{"4":{"_":{"1":{"0":{"5":{"_":{"7":{"2":{"7":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"143":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"27":{"tf":1.4142135623730951}},"t":{"1":{"4":{":":{"3":{"5":{":":{"3":{"1":{".":{"9":{"8":{"3":{"5":{"9":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"1":{":":{"3":{"9":{".":{"1":{"9":{"4":{"3":{"7":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"_":{"4":{"4":{"6":{"_":{"7":{"4":{"4":{"_":{"0":{"7":{"3":{"_":{"7":{"0":{"9":{"_":{"5":{"5":{"1":{"_":{"6":{"1":{"5":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"152":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"161":{"tf":1.7320508075688772},"178":{"tf":1.0},"228":{"tf":2.0},"29":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"2":{".":{"0":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"7":{"1":{"8":{"2":{"8":{"1":{"8":{"2":{"8":{"4":{"5":{"9":{"0":{"4":{"5":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"228":{"tf":1.0}}},"4":{"df":4,"docs":{"0":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"54":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"57":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}},"5":{"4":{"df":1,"docs":{"85":{"tf":1.0}}},"5":{"df":2,"docs":{"149":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"4":{"7":{"_":{"4":{"8":{"3":{"_":{"6":{"4":{"7":{"df":2,"docs":{"146":{"tf":1.7320508075688772},"83":{"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":8,"docs":{"103":{"tf":1.0},"161":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0},"82":{"tf":1.4142135623730951},"88":{"tf":1.0}},"i":{"a":{"a":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"7":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0}}},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"3":{".":{"1":{"4":{"1":{"5":{"9":{"2":{"7":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"7":{"6":{"7":{"df":2,"docs":{"145":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"174":{"tf":1.0},"205":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"3":{"df":1,"docs":{"134":{"tf":1.0}}},"4":{"0":{"_":{"2":{"8":{"2":{"_":{"3":{"6":{"6":{"_":{"9":{"2":{"0":{"_":{"9":{"3":{"8":{"_":{"4":{"6":{"3":{"_":{"4":{"6":{"3":{"_":{"3":{"7":{"4":{"_":{"6":{"0":{"7":{"_":{"4":{"3":{"1":{"_":{"7":{"6":{"8":{"_":{"2":{"1":{"1":{"_":{"4":{"5":{"5":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"6":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":4,"docs":{"161":{"tf":1.7320508075688772},"18":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}},"2":{"df":1,"docs":{"135":{"tf":1.0}}},"_":{"2":{"9":{"4":{"_":{"9":{"6":{"7":{"_":{"2":{"9":{"5":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"83":{"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":5,"docs":{"228":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772}}},"5":{"0":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}},"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":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"a":{"a":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"2":{"6":{"9":{"2":{"3":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"1":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"_":{"5":{"3":{"5":{"df":2,"docs":{"150":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"a":{"a":{"a":{"a":{"df":3,"docs":{"115":{"tf":1.0},"142":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"6":{"c":{"3":{"5":{"5":{"8":{"a":{"a":{"d":{"2":{"4":{"2":{"2":{"4":{"8":{"5":{"2":{"a":{"9":{"5":{"8":{"2":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"1":{"7":{"8":{"4":{"0":{"2":{"c":{"b":{"3":{"6":{"7":{"9":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"27":{"tf":1.0},"94":{"tf":2.0}}},"9":{"0":{"0":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":1,"docs":{"19":{"tf":1.0}}},"6":{"df":3,"docs":{"56":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"_":{"2":{"2":{"3":{"_":{"3":{"7":{"2":{"_":{"0":{"3":{"6":{"_":{"8":{"5":{"4":{"_":{"7":{"7":{"5":{"_":{"8":{"0":{"7":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"147":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}},"_":{"df":1,"docs":{"80":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"17":{"tf":2.0},"27":{"tf":1.4142135623730951}}}}}},"a":{"a":{"a":{"a":{"a":{"df":14,"docs":{"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"68":{"tf":2.0},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"91":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"q":{"df":5,"docs":{"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"b":{"a":{"df":5,"docs":{"129":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{},"q":{"df":3,"docs":{"115":{"tf":1.0},"142":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"158":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"82":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"13":{"tf":1.0},"182":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"}":{"$":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"142":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"28":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"57":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"df":2,"docs":{"77":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":1,"docs":{"83":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"22":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"62":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"210":{"tf":1.0},"53":{"tf":3.7416573867739413},"56":{"tf":1.4142135623730951},"62":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"j":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.0},"182":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"70":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"47":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"115":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"91":{"tf":3.872983346207417}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"212":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":2.8284271247461903}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"59":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"139":{"tf":2.0},"157":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":21,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"13":{"tf":1.0},"162":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"210":{"tf":1.4142135623730951},"22":{"tf":1.0},"53":{"tf":3.4641016151377544},"54":{"tf":2.0},"56":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"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":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"'":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":8,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"53":{"tf":1.0}},"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":{"3":{"tf":1.0},"53":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":21,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":4.123105625617661},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"75":{"tf":1.0},"85":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"y":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"1":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"2":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"3":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"4":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":27,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"128":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"139":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"2":{"9":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"0":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"(":{"(":{"a":{"c":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"142":{"tf":1.0},"161":{"tf":1.0},"19":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":3.4641016151377544},"31":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"17":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"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":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"175":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"85":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"85":{"tf":2.6457513110645907}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":2.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"53":{"tf":2.23606797749979}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":2.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"df":8,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":2.449489742783178}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.23606797749979},"33":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"111":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"53":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":34,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":3.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":2.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"187":{"tf":1.0},"210":{"tf":1.0}}},"y":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":160,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":2.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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":2.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.8284271247461903},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":3.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":3.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":2.0},"85":{"tf":2.8284271247461903},"91":{"tf":3.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"'":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"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":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"188":{"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":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":2.23606797749979},"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"@":{"0":{".":{"2":{"1":{".":{"1":{"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":{}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}}},"df":4,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"59":{"tf":2.6457513110645907},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"32":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"36":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"1":{"0":{"0":{"2":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"6":{"4":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"2":{"8":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"5":{"5":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"1":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"6":{"1":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"32":{"tf":1.0},"37":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"39":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"32":{"tf":1.0},"40":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"41":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"44":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"45":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"142":{"tf":1.0},"16":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"d":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"162":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"53":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"48":{"tf":2.449489742783178},"54":{"tf":1.0},"7":{"tf":1.0}}},"h":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"58":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"54":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"161":{"tf":1.0},"54":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"184":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"85":{"tf":1.0},"91":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"104":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"91":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.4142135623730951},"53":{"tf":2.6457513110645907}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"a":{"df":6,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"100":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"91":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"83":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"228":{"tf":2.0},"53":{"tf":2.23606797749979},"73":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"109":{"tf":2.23606797749979},"115":{"tf":1.0},"118":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"53":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"53":{"tf":1.0}},"o":{"b":{"df":31,"docs":{"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"137":{"tf":3.4641016151377544},"139":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"194":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"93":{"tf":2.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"53":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"179":{"tf":2.0},"180":{"tf":2.0},"200":{"tf":1.0},"27":{"tf":1.4142135623730951},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"l":{"df":29,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"121":{"tf":2.0},"135":{"tf":2.0},"136":{"tf":1.0},"138":{"tf":3.4641016151377544},"154":{"tf":1.7320508075688772},"158":{"tf":2.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"214":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"52":{"tf":1.0},"54":{"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":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"g":{"df":4,"docs":{"105":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.0},"228":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.0},"77":{"tf":2.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"31":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":3.7416573867739413},"54":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":2.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"2":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"6":{"9":{"df":0,"docs":{},"f":{"4":{"4":{"2":{"9":{"9":{"8":{"df":0,"docs":{},"e":{"4":{"c":{"d":{"a":{"4":{"6":{"1":{"9":{"1":{"6":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"a":{"9":{"b":{"c":{"9":{"1":{"4":{"1":{"8":{"b":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"\"":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"91":{"tf":2.449489742783178}}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"142":{"tf":1.0},"17":{"tf":1.4142135623730951},"179":{"tf":2.0},"180":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"93":{"tf":2.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":66,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.449489742783178},"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},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"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.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":2.0},"17":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"22":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979},"62":{"tf":3.1622776601683795},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":3.3166247903554},"82":{"tf":3.0},"83":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":4.58257569495584},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"111":{"tf":1.0},"120":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":46,"docs":{"103":{"tf":1.7320508075688772},"106":{"tf":1.0},"11":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":2.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.0},"68":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":3.4641016151377544},"85":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"103":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":169,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"150":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":2.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":2.449489742783178},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":2.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":2.8284271247461903},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":2.0},"31":{"tf":2.449489742783178},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":3.0},"54":{"tf":2.8284271247461903},"55":{"tf":1.4142135623730951},"56":{"tf":2.0},"58":{"tf":2.0},"59":{"tf":1.7320508075688772},"62":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":2.23606797749979},"69":{"tf":1.0},"7":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"8":{"tf":2.449489742783178},"80":{"tf":3.3166247903554},"82":{"tf":4.0},"83":{"tf":3.0},"85":{"tf":2.6457513110645907},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979},"91":{"tf":6.324555320336759},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979},"96":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":10,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.7320508075688772},"31":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"188":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"190":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"47":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"190":{"tf":1.0},"195":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"165":{"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":{"26":{"tf":1.0}}}}}}},"i":{"d":{"df":14,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"97":{"tf":2.23606797749979}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"154":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"228":{"tf":1.0},"53":{"tf":1.0},"86":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"3":{"tf":1.0},"47":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.0}},"k":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"49":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"162":{"tf":1.0},"169":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"174":{"tf":1.4142135623730951}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"n":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":15,"docs":{"210":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"62":{"tf":2.449489742783178},"7":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":2.6457513110645907},"85":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"57":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":3,"docs":{"107":{"tf":1.0},"110":{"tf":2.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"210":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"53":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}},"u":{"d":{"df":3,"docs":{"53":{"tf":3.3166247903554},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":19,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"210":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"53":{"tf":2.6457513110645907},"56":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"73":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"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":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}}},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"228":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.449489742783178},"53":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"36":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.449489742783178},"73":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}},"x":{"df":2,"docs":{"53":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"107":{"tf":1.0},"29":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"34":{"tf":1.0},"47":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"62":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"i":{"d":{"df":3,"docs":{"24":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"n":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}}}}},"`":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":23,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}}}}}}}},"df":6,"docs":{"227":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}}}},"df":35,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"179":{"tf":2.8284271247461903},"180":{"tf":2.8284271247461903},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"20":{"tf":2.8284271247461903},"205":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":4.898979485566356},"91":{"tf":4.0},"93":{"tf":2.8284271247461903},"94":{"tf":2.449489742783178},"97":{"tf":3.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"160":{"tf":1.0},"34":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"162":{"tf":1.0},"171":{"tf":1.4142135623730951},"209":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":2.0},"19":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"11":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"54":{"tf":1.0},"98":{"tf":2.6457513110645907}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"162":{"tf":1.4142135623730951},"170":{"tf":1.0},"172":{"tf":1.0},"82":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"54":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":2.449489742783178},"90":{"tf":1.0},"91":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"176":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"158":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":3.3166247903554}}}}},"u":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"47":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"13":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":8,"docs":{"11":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":30,"docs":{"111":{"tf":2.449489742783178},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":2.23606797749979},"127":{"tf":2.23606797749979},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":2.0},"94":{"tf":1.4142135623730951},"98":{"tf":3.1622776601683795}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979}}}},"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":{"169":{"tf":1.0}}}}}}}},"df":17,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"139":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"82":{"tf":2.449489742783178}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"228":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"23":{"tf":1.0},"24":{"tf":1.4142135623730951},"28":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":31,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"62":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":123,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.8284271247461903},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"62":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"62":{"tf":1.0},"91":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":1.7320508075688772},"85":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"26":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"df":0,"docs":{},"y":{"df":32,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":2.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":2.449489742783178},"31":{"tf":2.23606797749979},"44":{"tf":1.0},"5":{"tf":2.23606797749979},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"65":{"tf":2.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"7":{"tf":2.6457513110645907},"71":{"tf":2.23606797749979},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"76":{"tf":2.449489742783178},"77":{"tf":2.0},"8":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":2.449489742783178}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":1.0},"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"210":{"tf":1.4142135623730951},"29":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":3.1622776601683795},"69":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":2.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"11":{"tf":2.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"6":{".":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":52,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"2":{"tf":2.0},"3":{"tf":2.0},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"57":{"tf":2.0},"59":{"tf":2.0},"6":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.6457513110645907},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"i":{"a":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"l":{"\\":{"0":{"0":{"\\":{"0":{"0":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"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":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"4":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"78":{"tf":1.0}}}},"y":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"176":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"100":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"10":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"54":{"tf":1.0},"62":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"52":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"28":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"228":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"62":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"54":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"83":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"108":{"tf":1.0},"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}},"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"131":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":3.605551275463989},"62":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"7":{"tf":1.0},"85":{"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":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"154":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"162":{"tf":1.0},"164":{"tf":1.4142135623730951},"18":{"tf":1.0},"62":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"103":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"53":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"10":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"53":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"170":{"tf":1.0},"82":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"188":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"102":{"tf":1.7320508075688772},"106":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"54":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"154":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"158":{"tf":1.0},"85":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.7320508075688772},"139":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":3.605551275463989},"27":{"tf":3.3166247903554},"28":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":2.449489742783178}}}}}},"s":{"2":{"0":{"2":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":9,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}}},"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":{"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"53":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":110,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979},"83":{"tf":1.7320508075688772},"85":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"161":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"170":{"tf":1.0},"176":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":2.0},"62":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979},"91":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"54":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"54":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"210":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772},"88":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"82":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"55":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":120,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":2.0},"91":{"tf":2.8284271247461903},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"210":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"16":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"27":{"tf":2.449489742783178},"4":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"31":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"139":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"121":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"82":{"tf":1.0},"91":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"13":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"78":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":19,"docs":{"0":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"19":{"tf":2.0},"28":{"tf":2.0},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}}}}},"l":{"(":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"193":{"tf":1.0},"85":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"24":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":1.0},"34":{"tf":1.0}}}},"d":{"df":6,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"160":{"tf":2.23606797749979}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"142":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.4142135623730951},"96":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}},"x":{"df":2,"docs":{"10":{"tf":1.0},"103":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"136":{"tf":1.0},"140":{"tf":3.7416573867739413},"83":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"136":{"tf":1.0},"141":{"tf":3.7416573867739413},"83":{"tf":2.6457513110645907},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":1,"docs":{"69":{"tf":1.0}}}}},"m":{"a":{"a":{"a":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":27,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"210":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.449489742783178},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"df":6,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"a":{"a":{"a":{"df":5,"docs":{"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"101":{"tf":1.0}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":2.23606797749979}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"4":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":5,"docs":{"110":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"n":{"c":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"115":{"tf":1.0},"181":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":6,"docs":{"136":{"tf":1.0},"142":{"tf":3.3166247903554},"179":{"tf":1.0},"180":{"tf":1.0},"83":{"tf":2.6457513110645907},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"142":{"tf":1.0}}},"df":23,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"85":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"210":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":13,"docs":{"18":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"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":1,"docs":{"191":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"m":{"b":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.4142135623730951},"80":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"i":{"b":{"df":6,"docs":{"19":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"49":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":2.23606797749979},"82":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":8,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":1.0}},"o":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"53":{"tf":3.3166247903554},"55":{"tf":1.0}}}},"w":{"df":4,"docs":{"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"220":{"tf":1.0},"228":{"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":{"53":{"tf":1.0},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"64":{"tf":1.0}}}}}},"h":{"1":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"28":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":6,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":4.242640687119285},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"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":1,"docs":{"10":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":2.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"48":{"tf":1.0},"55":{"tf":1.0}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"179":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"22":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"29":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.23606797749979},"204":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"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":6,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"228":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"8":{"tf":1.0}}}},"p":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"228":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":14,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"228":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"91":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":8,"docs":{"139":{"tf":1.4142135623730951},"29":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"103":{"tf":1.0},"135":{"tf":1.0},"29":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":2,"docs":{"22":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"228":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"17":{"tf":1.0}}}}}}}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"/":{"?":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"214":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":4,"docs":{"177":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":8,"docs":{"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"190":{"tf":1.0},"200":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"df":24,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":2.0}}}}}}}}},"s":{":":{"/":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"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":{"/":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"2":{"0":{"6":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"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":{}},"s":{"d":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"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":{},"h":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"k":{"c":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"6":{"4":{"2":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"0":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"c":{"'":{"df":2,"docs":{"54":{"tf":1.0},"80":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"120":{"tf":1.0},"158":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"91":{"tf":2.0},"97":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"118":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"204":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"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":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"135":{"tf":1.0}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"168":{"tf":1.0},"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"121":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.0},"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":2,"docs":{"123":{"tf":1.0},"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"d":{"1":{"2":{"8":{"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":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"158":{"tf":1.0},"91":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"130":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"173":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"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":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.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":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"227":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"97":{"tf":1.0}}}}}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"222":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"218":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"175":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"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":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"0":{"5":{"0":{"6":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":16,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":99,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":5.477225575051661},"54":{"tf":3.0},"55":{"tf":2.6457513110645907},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":2.0},"9":{"tf":1.4142135623730951},"91":{"tf":3.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"p":{"df":12,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"r":{"c":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}}},"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":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"\"":{">":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":2.23606797749979},"162":{"tf":1.0},"168":{"tf":1.7320508075688772},"3":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":4.58257569495584},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"104":{"tf":1.0},"53":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":131,"docs":{"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.4142135623730951},"119":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"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.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.7320508075688772},"85":{"tf":2.6457513110645907},"91":{"tf":3.3166247903554},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"228":{"tf":1.0}},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"24":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"101":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.7320508075688772},"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"78":{"tf":1.0},"93":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"19":{"tf":1.0},"228":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"58":{"tf":1.0},"62":{"tf":1.0}}}},"df":2,"docs":{"80":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":7,"docs":{"53":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":1,"docs":{"8":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"95":{"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":1,"docs":{"53":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"115":{"tf":2.0},"177":{"tf":1.0},"181":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}},"i":{"df":6,"docs":{"181":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"115":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"28":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"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":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"177":{"tf":1.0},"182":{"tf":1.0},"28":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"2":{"tf":2.6457513110645907},"201":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":3.0},"57":{"tf":2.6457513110645907},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"77":{"tf":1.0},"96":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"161":{"tf":1.0},"28":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"36":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"1":{"6":{"df":3,"docs":{"136":{"tf":1.0},"145":{"tf":3.7416573867739413},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"3":{"2":{"df":4,"docs":{"136":{"tf":1.0},"146":{"tf":3.7416573867739413},"161":{"tf":3.4641016151377544},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"136":{"tf":1.0},"147":{"tf":3.7416573867739413},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"136":{"tf":1.0},"144":{"tf":3.7416573867739413},"83":{"tf":2.6457513110645907},"97":{"tf":1.7320508075688772}}},"df":4,"docs":{"135":{"tf":2.0},"136":{"tf":1.0},"143":{"tf":3.7416573867739413},"83":{"tf":3.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"107":{"tf":1.0},"109":{"tf":1.7320508075688772},"53":{"tf":2.6457513110645907}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"n":{"d":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"f":{"a":{"c":{"df":4,"docs":{"68":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"27":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"107":{"tf":1.0},"20":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"224":{"tf":1.0},"227":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"53":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"56":{"tf":1.0},"80":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"77":{"tf":1.0}}}}},"t":{"'":{"df":7,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"75":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":2.0},"31":{"tf":1.7320508075688772},"36":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.449489742783178},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}},"s":{"df":5,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"85":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"85":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"16":{"tf":1.4142135623730951},"48":{"tf":1.0},"85":{"tf":1.0}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.7320508075688772}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"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":8,"docs":{"158":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":2.6457513110645907},"53":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"85":{"tf":3.3166247903554}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"6":{"tf":2.0},"70":{"tf":2.0}}}},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"142":{"tf":1.0},"53":{"tf":1.0}},"n":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"51":{"tf":1.7320508075688772},"85":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}},"m":{"df":0,"docs":{},"j":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"29":{"tf":1.0},"54":{"tf":2.6457513110645907},"56":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"91":{"tf":1.0}},"y":{"=":{"1":{"0":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"114":{"tf":1.0},"217":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"24":{"tf":1.0},"48":{"tf":1.0}}}},"t":{"'":{"df":6,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"25":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":1.0},"228":{"tf":2.0},"29":{"tf":3.0},"53":{"tf":2.0},"54":{"tf":2.23606797749979},"80":{"tf":2.449489742783178},"82":{"tf":2.8284271247461903}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":10,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"k":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}}}},"o":{"a":{"d":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.0},"43":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.0},"65":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"7":{"tf":1.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"8":{"tf":1.0}}},"t":{"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"101":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"228":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"57":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":4,"docs":{"135":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"t":{";":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"98":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"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":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"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":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0}}}}}}}},"df":5,"docs":{"131":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"31":{"tf":1.0},"89":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"p":{"(":{"(":{"_":{"df":1,"docs":{"85":{"tf":1.0}}},"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":2.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"h":{".":{"df":2,"docs":{"141":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"140":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}},"y":{"b":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"106":{"tf":1.0},"213":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"82":{"tf":2.0},"85":{"tf":3.872983346207417},"89":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":2.23606797749979},"53":{"tf":1.4142135623730951},"62":{"tf":2.8284271247461903},"67":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}}},"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"df":37,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"142":{"tf":1.0},"158":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":2.23606797749979},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":2.6457513110645907},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":3.1622776601683795},"81":{"tf":1.0},"82":{"tf":2.8284271247461903},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":4.123105625617661},"93":{"tf":1.0},"94":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"b":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"29":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":6,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"102":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"188":{"tf":1.0},"82":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"62":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0}}}}},"s":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}},"g":{"df":7,"docs":{"111":{"tf":2.449489742783178},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.7320508075688772},"82":{"tf":1.0}},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}},"v":{"df":1,"docs":{"47":{"tf":1.0}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":3.0},"74":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"205":{"tf":1.0},"34":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.0}}}},"t":{"1":{"6":{"df":6,"docs":{"136":{"tf":1.0},"150":{"tf":3.7416573867739413},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"136":{"tf":1.0},"151":{"tf":3.7416573867739413},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":2.6457513110645907},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{">":{"(":{"0":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"115":{"tf":2.23606797749979},"116":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"136":{"tf":1.0},"152":{"tf":3.7416573867739413},"165":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"91":{"tf":4.358898943540674}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"149":{"tf":3.7416573867739413},"214":{"tf":1.4142135623730951},"83":{"tf":3.0},"85":{"tf":2.6457513110645907}}},"df":7,"docs":{"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"136":{"tf":1.0},"148":{"tf":3.7416573867739413},"166":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951}},"e":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":5.196152422706632}}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":5.196152422706632}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"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":{"228":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"110":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"31":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"109":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}},"w":{"df":11,"docs":{"134":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":2.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"186":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"216":{"tf":1.0},"220":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":3.4641016151377544}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"n":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":2.449489742783178}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":11,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"2":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":2.6457513110645907},"57":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"154":{"tf":2.0},"169":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":2.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"139":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.0}},"i":{"df":5,"docs":{"111":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"91":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"129":{"tf":1.0},"164":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}},"w":{"df":7,"docs":{"110":{"tf":1.0},"210":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"101":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"3":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}},"x":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"153":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.0},"153":{"tf":3.872983346207417},"154":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":2.6457513110645907},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"83":{"tf":3.605551275463989},"94":{"tf":1.4142135623730951}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"167":{"tf":1.0},"170":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"103":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"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.7320508075688772},"155":{"tf":1.0},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"161":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":2.23606797749979},"85":{"tf":3.3166247903554},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":2,"docs":{"158":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}},"df":7,"docs":{"15":{"tf":1.0},"160":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"101":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"104":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"154":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"6":{"4":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"154":{"tf":1.0}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":2.0}}}}}}}},"df":11,"docs":{"136":{"tf":1.0},"154":{"tf":2.8284271247461903},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"85":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"228":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"135":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":1,"docs":{"53":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"78":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"200":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"173":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":1,"docs":{"54":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":2.8284271247461903}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":2.23606797749979},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"62":{"tf":1.0},"80":{"tf":2.23606797749979},"83":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"53":{"tf":1.7320508075688772},"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"139":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{"$":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"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":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":1.0}}}},"y":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"130":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"r":{"df":5,"docs":{"178":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"158":{"tf":1.0},"162":{"tf":1.0},"172":{"tf":1.0},"22":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"80":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"181":{"tf":1.0},"214":{"tf":1.0},"53":{"tf":2.6457513110645907},"62":{"tf":2.23606797749979},"80":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}},"n":{"df":1,"docs":{"85":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"53":{"tf":2.6457513110645907},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772}}}}}}},"o":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"170":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"53":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"18":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":6,"docs":{"177":{"tf":1.0},"183":{"tf":1.0},"3":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"183":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"54":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"177":{"tf":1.0},"184":{"tf":1.0},"27":{"tf":1.0},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"228":{"tf":1.0}},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":3,"docs":{"142":{"tf":1.0},"155":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":3,"docs":{"129":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":29,"docs":{"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"129":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"155":{"tf":4.0},"156":{"tf":2.23606797749979},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"53":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"85":{"tf":3.872983346207417},"91":{"tf":2.8284271247461903},"94":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":2.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"162":{"tf":1.0},"173":{"tf":1.7320508075688772},"27":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}},"df":1,"docs":{"143":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":1,"docs":{"148":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.7320508075688772}}},"m":{"b":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"54":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"85":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":2.0},"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"77":{"tf":1.0},"91":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.4142135623730951},"53":{"tf":1.0}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":87,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{".":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"11":{"tf":1.4142135623730951},"17":{"tf":1.0},"211":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"154":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.449489742783178},"20":{"tf":1.7320508075688772},"228":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":1.7320508075688772},"55":{"tf":2.0}}}}},"df":1,"docs":{"47":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":3.7416573867739413},"54":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":1.0},"202":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"53":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"212":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":2,"docs":{"139":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"q":{"a":{"a":{"a":{"df":0,"docs":{},"q":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":73,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":2.8284271247461903},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.23606797749979},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.6457513110645907},"159":{"tf":2.0},"160":{"tf":2.0},"161":{"tf":2.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.0},"17":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":2.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"200":{"tf":1.0},"214":{"tf":2.449489742783178},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":3.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":4.898979485566356},"82":{"tf":3.0},"83":{"tf":2.8284271247461903},"85":{"tf":3.3166247903554},"91":{"tf":4.358898943540674},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"y":{"(":{"[":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"137":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"179":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":1,"docs":{"143":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"151":{"tf":1.0},"217":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"152":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"155":{"tf":1.0},"171":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"159":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"j":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":2.0}},"s":{"_":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"18":{"tf":1.0},"55":{"tf":1.0}}}},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"190":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"111":{"tf":2.449489742783178},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"160":{"tf":3.1622776601683795}}}}}}},"d":{"df":9,"docs":{"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"221":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":2.0},"89":{"tf":1.0}},"i":{"df":3,"docs":{"54":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"101":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"142":{"tf":1.0},"80":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.0},"124":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":2,"docs":{"123":{"tf":1.0},"125":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"129":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"15":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":13,"docs":{"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"156":{"tf":3.0},"179":{"tf":2.449489742783178},"180":{"tf":2.449489742783178},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"54":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":3.0},"85":{"tf":4.358898943540674},"93":{"tf":2.449489742783178},"97":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"1":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"85":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":1,"docs":{"85":{"tf":2.449489742783178}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":7,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"20":{"tf":1.0},"27":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"106":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"5":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"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":{"54":{"tf":1.7320508075688772}}}}}}}}}}},"df":3,"docs":{"228":{"tf":1.0},"29":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"214":{"tf":1.0},"53":{"tf":2.449489742783178},"73":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"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":1,"docs":{"97":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"'":{"df":2,"docs":{"173":{"tf":1.0},"26":{"tf":1.0}}},"df":16,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"5":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"53":{"tf":2.449489742783178},"55":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":3,"docs":{"111":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":2,"docs":{"211":{"tf":1.0},"49":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"78":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.0},"93":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"108":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"29":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"139":{"tf":1.0},"22":{"tf":1.7320508075688772},"31":{"tf":1.0},"47":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"b":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"d":{"b":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"14":{"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":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"136":{"tf":1.0},"157":{"tf":3.605551275463989},"18":{"tf":1.0},"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"20":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":8,"docs":{"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":1.0},"91":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":2.0}}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"df":2,"docs":{"48":{"tf":1.0},"62":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":6,"docs":{"17":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"105":{"tf":1.0},"53":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":104,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"17":{"tf":2.6457513110645907},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.23606797749979},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":3.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"62":{"tf":2.23606797749979},"80":{"tf":2.449489742783178},"82":{"tf":2.6457513110645907},"83":{"tf":1.7320508075688772},"85":{"tf":5.196152422706632},"91":{"tf":3.872983346207417},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"v":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}}}},"f":{"df":1,"docs":{"10":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"28":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"53":{"tf":2.0},"54":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"31":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"36":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":27,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"49":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"210":{"tf":1.4142135623730951},"47":{"tf":1.0},"75":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"53":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"54":{"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":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"10":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":1,"docs":{"47":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"142":{"tf":1.0},"178":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"80":{"tf":2.0},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"199":{"tf":1.0},"205":{"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":85,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"100":{"tf":1.0},"50":{"tf":1.4142135623730951},"53":{"tf":2.23606797749979},"54":{"tf":2.0},"55":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"13":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":1,"docs":{"54":{"tf":1.0}}},"m":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}},"n":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"d":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"127":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"16":{"tf":1.4142135623730951},"53":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"139":{"tf":1.0},"16":{"tf":1.0},"48":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"103":{"tf":1.0},"85":{"tf":3.4641016151377544},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}}}}}}}},"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":4.0},"27":{"tf":1.0}}}},"i":{"c":{"df":28,"docs":{"110":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":2.6457513110645907},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"83":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":22,"docs":{"14":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.4142135623730951},"18":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"209":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"115":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"0":{".":{"3":{"9":{".":{"7":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"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":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"58":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"98":{"tf":2.449489742783178}},"n":{"df":2,"docs":{"5":{"tf":1.0},"91":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":2.0},"22":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"205":{"tf":1.0}}}}}}}}}}}}},"df":2,"docs":{"205":{"tf":1.0},"53":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"24":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"53":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"210":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":6,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.7320508075688772},"80":{"tf":2.0},"82":{"tf":1.4142135623730951},"97":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"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":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"111":{"tf":1.0},"114":{"tf":1.0},"19":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"218":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"228":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"0":{"5":{"0":{"6":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"2":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"154":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"91":{"tf":3.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"55":{"tf":1.0},"91":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":10,"docs":{"10":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"73":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"212":{"tf":1.0},"4":{"tf":1.0}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"228":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"11":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"106":{"tf":1.0},"213":{"tf":2.6457513110645907},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":3.1622776601683795}},"e":{"6":{"4":{"df":5,"docs":{"213":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"222":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0}}}}}}}},"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":2,"docs":{"214":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":2.0},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}}}},"df":12,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"214":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.0},"85":{"tf":4.795831523312719},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"218":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"28":{"tf":1.0},"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"6":{"tf":2.6457513110645907},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"77":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"176":{"tf":1.0},"210":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"56":{"tf":3.0},"58":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":2.0},"70":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"18":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"97":{"tf":2.449489742783178}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"47":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"10":{"tf":1.0},"176":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"181":{"tf":1.0},"214":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"105":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.7320508075688772},"58":{"tf":1.0},"62":{"tf":2.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"142":{"tf":1.7320508075688772},"159":{"tf":2.23606797749979},"163":{"tf":1.0},"164":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"62":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.7320508075688772},"16":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"108":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":3.0},"62":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"102":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":5,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"101":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"135":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"83":{"tf":1.0}}},"3":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"228":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"63":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"161":{"tf":1.0}},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":2.0},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":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":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{">":{"(":{"0":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":2.0},"117":{"tf":2.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"142":{"tf":2.8284271247461903},"156":{"tf":1.7320508075688772},"158":{"tf":2.6457513110645907},"159":{"tf":3.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.7320508075688772},"173":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":2.6457513110645907},"180":{"tf":2.6457513110645907},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":1.0},"214":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":3.0},"80":{"tf":2.449489742783178},"82":{"tf":3.4641016151377544},"83":{"tf":3.4641016151377544},"85":{"tf":3.7416573867739413},"93":{"tf":2.6457513110645907},"94":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"j":{"df":1,"docs":{"4":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"62":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}},"k":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"r":{"d":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"102":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"104":{"tf":1.0},"53":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"53":{"tf":1.0},"55":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"72":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":8,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"53":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"173":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":2.449489742783178},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"w":{"df":7,"docs":{"121":{"tf":1.0},"139":{"tf":1.4142135623730951},"182":{"tf":1.0},"27":{"tf":1.4142135623730951},"82":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"161":{"tf":1.0},"22":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"82":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"162":{"tf":1.0},"175":{"tf":1.4142135623730951},"178":{"tf":1.0},"54":{"tf":1.7320508075688772},"91":{"tf":1.0}},"r":{"df":10,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":2.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.7320508075688772}},"i":{"d":{"df":4,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"97":{"tf":3.3166247903554}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"1":{".":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":2.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"53":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":2.23606797749979},"91":{"tf":3.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"91":{"tf":1.4142135623730951},"93":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"1":{".":{"7":{"3":{".":{"0":{"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":5,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0}}}},"p":{"df":1,"docs":{"18":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}}},"k":{"df":4,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"115":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"91":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"162":{"tf":1.0},"176":{"tf":1.7320508075688772},"82":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":31,"docs":{"11":{"tf":1.0},"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"83":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"y":{".":{".":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.7320508075688772},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":7,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0}}}},"y":{"a":{"a":{"a":{"df":5,"docs":{"129":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":46,"docs":{"11":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.7320508075688772},"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.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"214":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":3.872983346207417},"91":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":7,"docs":{"115":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"214":{"tf":1.4142135623730951},"85":{"tf":2.8284271247461903},"97":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"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":5,"docs":{"210":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":31,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"62":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"58":{"tf":1.0},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"80":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"[":{"8":{"3":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"6":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}}},"df":3,"docs":{"137":{"tf":1.4142135623730951},"161":{"tf":1.0},"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"r":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"210":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"73":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"52":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"50":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":72,"docs":{"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"174":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.0},"186":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"62":{"tf":2.8284271247461903},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":4.58257569495584},"83":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"91":{"tf":4.123105625617661},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"[":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"174":{"tf":1.0},"194":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"220":{"tf":1.0},"223":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":9,"docs":{"115":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"186":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"62":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"209":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"174":{"tf":1.0},"19":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"177":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"13":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"94":{"tf":2.0}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"105":{"tf":1.0},"54":{"tf":1.7320508075688772},"88":{"tf":1.0}}}},"df":53,"docs":{"0":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"161":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":2.23606797749979},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"85":{"tf":2.8284271247461903},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},">":{"(":{"0":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"85":{"tf":2.23606797749979}}}}}}}}}}}}}},"df":5,"docs":{"156":{"tf":3.1622776601683795},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"85":{"tf":4.358898943540674}},"i":{"d":{"df":1,"docs":{"85":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":2.23606797749979},"85":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"85":{"tf":2.449489742783178}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"v":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":20,"docs":{"105":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"142":{"tf":1.0},"154":{"tf":1.4142135623730951},"158":{"tf":1.0},"214":{"tf":2.6457513110645907},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"62":{"tf":2.449489742783178},"80":{"tf":2.23606797749979},"82":{"tf":3.7416573867739413},"83":{"tf":2.0},"85":{"tf":4.358898943540674},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},">":{"(":{"0":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"106":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"135":{"tf":2.23606797749979},"136":{"tf":1.0},"154":{"tf":1.7320508075688772},"158":{"tf":1.0},"160":{"tf":3.3166247903554},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"85":{"tf":2.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"55":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.6457513110645907},"83":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"136":{"tf":1.0},"137":{"tf":2.0},"161":{"tf":3.0},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.6457513110645907},"85":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"85":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"162":{"tf":1.0},"167":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":2,"docs":{"68":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"3":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":3.4641016151377544},"91":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.0}}}},"s":{"df":2,"docs":{"53":{"tf":1.0},"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"139":{"tf":1.4142135623730951},"18":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"m":{"3":{"2":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":2.23606797749979},"53":{"tf":3.1622776601683795},"56":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":2.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"139":{"tf":1.0},"15":{"tf":1.0},"53":{"tf":1.7320508075688772},"72":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"58":{"tf":1.4142135623730951},"62":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":1,"docs":{"54":{"tf":1.0}}},"v":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}},"b":{"3":{"df":1,"docs":{"51":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"31":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"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":{"0":{"tf":1.0},"171":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":7,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":2.0},"91":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"77":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"5":{"0":{"0":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"176":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.7320508075688772},"62":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"49":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":96,"docs":{"101":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"l":{"d":{"df":14,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":2.0},"3":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.7320508075688772},"67":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"210":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"x":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"k":{"c":{"d":{"df":1,"docs":{"200":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":4,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":1,"docs":{"61":{"tf":1.0}}},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772}}},"df":6,"docs":{"137":{"tf":2.0},"161":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"129":{"tf":1.0},"16":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"x":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"6":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"1":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"'":{"*":{"'":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":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":{"80":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"134":{"tf":1.0}}},"5":{"df":1,"docs":{"134":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"29":{"tf":1.0}}}},"1":{"0":{"6":{"4":{"3":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"134":{"tf":1.0}}},"4":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"134":{"tf":1.0}}},"7":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"6":{"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":2,"docs":{"144":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"8":{"df":9,"docs":{"111":{"tf":2.449489742783178},"117":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"162":{"tf":1.0},"166":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.4142135623730951}}},"4":{":":{"3":{"5":{":":{"3":{"0":{".":{"4":{"3":{"3":{"5":{"0":{"1":{"9":{"8":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{"3":{"4":{".":{"6":{"5":{"2":{"5":{"8":{"7":{"4":{"1":{"2":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"_":{"1":{"4":{"1":{"_":{"1":{"8":{"3":{"_":{"4":{"6":{"0":{"_":{"4":{"6":{"9":{"_":{"2":{"3":{"1":{"_":{"7":{"3":{"1":{"_":{"6":{"8":{"7":{"_":{"3":{"0":{"3":{"_":{"7":{"1":{"5":{"_":{"8":{"8":{"4":{"_":{"1":{"0":{"5":{"_":{"7":{"2":{"7":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"143":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"27":{"tf":1.4142135623730951}},"t":{"1":{"4":{":":{"3":{"5":{":":{"3":{"1":{".":{"9":{"8":{"3":{"5":{"9":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"1":{":":{"3":{"9":{".":{"1":{"9":{"4":{"3":{"7":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"26":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"_":{"4":{"4":{"6":{"_":{"7":{"4":{"4":{"_":{"0":{"7":{"3":{"_":{"7":{"0":{"9":{"_":{"5":{"5":{"1":{"_":{"6":{"1":{"5":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"152":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"103":{"tf":1.0},"161":{"tf":1.7320508075688772},"178":{"tf":1.0},"228":{"tf":2.0},"29":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"2":{".":{"0":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"7":{"1":{"8":{"2":{"8":{"1":{"8":{"2":{"8":{"4":{"5":{"9":{"0":{"4":{"5":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"228":{"tf":1.0}}},"4":{"df":4,"docs":{"0":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"54":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"57":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}},"5":{"4":{"df":1,"docs":{"85":{"tf":1.0}}},"5":{"df":2,"docs":{"149":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"4":{"7":{"_":{"4":{"8":{"3":{"_":{"6":{"4":{"7":{"df":2,"docs":{"146":{"tf":1.7320508075688772},"83":{"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":8,"docs":{"103":{"tf":1.0},"161":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0},"82":{"tf":1.4142135623730951},"88":{"tf":1.0}},"i":{"a":{"a":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"7":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"228":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0}}},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"3":{".":{"1":{"4":{"1":{"5":{"9":{"2":{"7":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"7":{"6":{"7":{"df":2,"docs":{"145":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"174":{"tf":1.0},"205":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"3":{"df":1,"docs":{"134":{"tf":1.0}}},"4":{"0":{"_":{"2":{"8":{"2":{"_":{"3":{"6":{"6":{"_":{"9":{"2":{"0":{"_":{"9":{"3":{"8":{"_":{"4":{"6":{"3":{"_":{"4":{"6":{"3":{"_":{"3":{"7":{"4":{"_":{"6":{"0":{"7":{"_":{"4":{"3":{"1":{"_":{"7":{"6":{"8":{"_":{"2":{"1":{"1":{"_":{"4":{"5":{"5":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"6":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":4,"docs":{"161":{"tf":1.7320508075688772},"18":{"tf":1.0},"228":{"tf":1.0},"29":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}},"2":{"df":1,"docs":{"135":{"tf":1.0}}},"_":{"2":{"9":{"4":{"_":{"9":{"6":{"7":{"_":{"2":{"9":{"5":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"83":{"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":5,"docs":{"228":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772}}},"5":{"0":{"0":{"df":1,"docs":{"27":{"tf":1.0}}},"2":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"196":{"tf":1.0}}}},"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":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"a":{"a":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"2":{"6":{"9":{"2":{"3":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"1":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"_":{"5":{"3":{"5":{"df":2,"docs":{"150":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"a":{"a":{"a":{"a":{"df":3,"docs":{"115":{"tf":1.0},"142":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"6":{"c":{"3":{"5":{"5":{"8":{"a":{"a":{"d":{"2":{"4":{"2":{"2":{"4":{"8":{"5":{"2":{"a":{"9":{"5":{"8":{"2":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"1":{"7":{"8":{"4":{"0":{"2":{"c":{"b":{"3":{"6":{"7":{"9":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"27":{"tf":1.0},"94":{"tf":2.0}}},"9":{"0":{"0":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}},"df":1,"docs":{"19":{"tf":1.0}}},"6":{"df":3,"docs":{"56":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"_":{"2":{"2":{"3":{"_":{"3":{"7":{"2":{"_":{"0":{"3":{"6":{"_":{"8":{"5":{"4":{"_":{"7":{"7":{"5":{"_":{"8":{"0":{"7":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"83":{"tf":1.0}},"n":{"df":2,"docs":{"147":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}},"_":{"df":1,"docs":{"80":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"17":{"tf":2.0},"27":{"tf":1.4142135623730951}}}}}},"a":{"a":{"a":{"a":{"a":{"df":14,"docs":{"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"158":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"68":{"tf":2.0},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"91":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"q":{"df":5,"docs":{"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}},"b":{"a":{"df":5,"docs":{"129":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{},"q":{"df":3,"docs":{"115":{"tf":1.0},"142":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"158":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"82":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"51":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"13":{"tf":1.0},"182":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"}":{"$":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"142":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"28":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"57":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"df":2,"docs":{"77":{"tf":1.0},"91":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"89":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":1,"docs":{"83":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"22":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"62":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"17":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"210":{"tf":1.0},"53":{"tf":3.7416573867739413},"56":{"tf":1.4142135623730951},"62":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}},"j":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.0},"182":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"70":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"47":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"115":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"91":{"tf":3.872983346207417}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"212":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":2.8284271247461903}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"59":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"139":{"tf":2.0},"157":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":59,"docs":{"101":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.0},"106":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"210":{"tf":1.4142135623730951},"22":{"tf":1.0},"53":{"tf":3.4641016151377544},"54":{"tf":2.0},"56":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"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":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"'":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":8,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"53":{"tf":1.0}},"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":{"3":{"tf":1.0},"53":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":21,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":4.123105625617661},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.4142135623730951},"75":{"tf":1.0},"85":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"y":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"1":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"2":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"3":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"4":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":27,"docs":{"111":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"128":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"139":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":2.0},"82":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"2":{"9":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"0":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"(":{"(":{"a":{"c":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"142":{"tf":1.0},"161":{"tf":1.0},"19":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"67":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":3.7416573867739413},"31":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"55":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"17":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"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":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"43":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"175":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"85":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"85":{"tf":2.6457513110645907}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":2.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"169":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":1.7320508075688772},"22":{"tf":2.0},"53":{"tf":2.23606797749979}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":2.0},"83":{"tf":1.0},"85":{"tf":1.0}}}},"df":8,"docs":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":2.449489742783178}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.6457513110645907},"33":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"111":{"tf":1.4142135623730951},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"53":{"tf":1.7320508075688772},"80":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":34,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"17":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":3.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":2.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"187":{"tf":1.0},"210":{"tf":1.0}}},"y":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":160,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":2.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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":2.0},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.8284271247461903},"48":{"tf":1.0},"49":{"tf":2.0},"50":{"tf":2.23606797749979},"51":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"53":{"tf":2.0},"54":{"tf":3.1622776601683795},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"62":{"tf":3.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":2.0},"85":{"tf":2.8284271247461903},"91":{"tf":3.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"'":{"df":4,"docs":{"0":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"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":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"188":{"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":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":2.23606797749979},"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"@":{"0":{".":{"2":{"1":{".":{"1":{"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":{}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}}},"df":4,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"59":{"tf":2.6457513110645907},"61":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"32":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"36":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"1":{"0":{"0":{"2":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"6":{"4":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"2":{"8":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"5":{"5":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"1":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"6":{"1":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"32":{"tf":1.0},"37":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"32":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"41":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"32":{"tf":1.0},"42":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"32":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"32":{"tf":1.0},"44":{"tf":1.4142135623730951}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"142":{"tf":1.0},"16":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"6":{"tf":1.7320508075688772},"65":{"tf":1.0},"70":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"d":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"162":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":184,"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.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},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"48":{"tf":2.8284271247461903},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"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},"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},"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},"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}}},"h":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"108":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"58":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.0},"98":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"54":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"161":{"tf":1.0},"54":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"184":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"85":{"tf":1.0},"91":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"104":{"tf":1.0},"56":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"91":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.7320508075688772},"53":{"tf":2.8284271247461903}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"a":{"df":9,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"100":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"91":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"83":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"29":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"228":{"tf":2.449489742783178},"53":{"tf":2.23606797749979},"73":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":13,"docs":{"106":{"tf":1.0},"107":{"tf":2.23606797749979},"108":{"tf":1.0},"109":{"tf":2.6457513110645907},"110":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"53":{"tf":1.4142135623730951},"78":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"53":{"tf":1.0}},"o":{"b":{"df":31,"docs":{"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"137":{"tf":3.7416573867739413},"139":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"169":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"194":{"tf":1.0},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"93":{"tf":2.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"53":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"179":{"tf":2.0},"180":{"tf":2.0},"200":{"tf":1.0},"27":{"tf":1.4142135623730951},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":2.23606797749979},"83":{"tf":1.0}}},"l":{"df":29,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"121":{"tf":2.0},"135":{"tf":2.0},"136":{"tf":1.0},"138":{"tf":3.7416573867739413},"154":{"tf":1.7320508075688772},"158":{"tf":2.0},"171":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.0},"194":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"214":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"52":{"tf":1.0},"54":{"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":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"g":{"df":4,"docs":{"105":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"87":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.0},"228":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"49":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.0},"73":{"tf":2.449489742783178},"75":{"tf":1.0},"77":{"tf":2.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"31":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":3.7416573867739413},"54":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"24":{"tf":1.0},"28":{"tf":2.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":2.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"2":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"6":{"9":{"df":0,"docs":{},"f":{"4":{"4":{"2":{"9":{"9":{"8":{"df":0,"docs":{},"e":{"4":{"c":{"d":{"a":{"4":{"6":{"1":{"9":{"1":{"6":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"a":{"9":{"b":{"c":{"9":{"1":{"4":{"1":{"8":{"b":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"\"":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"0":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"91":{"tf":2.449489742783178}}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"142":{"tf":1.0},"17":{"tf":1.4142135623730951},"179":{"tf":2.0},"180":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"93":{"tf":2.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":83,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":2.8284271247461903},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":2.0},"118":{"tf":2.0},"119":{"tf":2.0},"120":{"tf":1.4142135623730951},"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},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"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.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":2.0},"17":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"22":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"59":{"tf":2.23606797749979},"62":{"tf":3.1622776601683795},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":3.3166247903554},"82":{"tf":3.0},"83":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":4.58257569495584},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"111":{"tf":1.0},"120":{"tf":2.0},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":184,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":2.23606797749979},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.4142135623730951},"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},"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},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":2.0},"137":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":2.23606797749979},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":2.0},"160":{"tf":2.0},"161":{"tf":2.0},"162":{"tf":1.7320508075688772},"163":{"tf":2.449489742783178},"164":{"tf":2.449489742783178},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"31":{"tf":1.0},"48":{"tf":2.449489742783178},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"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.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":3.872983346207417},"84":{"tf":1.0},"85":{"tf":2.0},"86":{"tf":1.0},"87":{"tf":1.0},"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}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"163":{"tf":1.0},"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"103":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":169,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"150":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":2.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":2.449489742783178},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"162":{"tf":2.6457513110645907},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":2.6457513110645907},"166":{"tf":2.6457513110645907},"167":{"tf":2.449489742783178},"168":{"tf":2.449489742783178},"169":{"tf":2.0},"17":{"tf":1.4142135623730951},"170":{"tf":2.0},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":2.0},"182":{"tf":1.7320508075688772},"183":{"tf":2.0},"184":{"tf":2.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":2.8284271247461903},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"210":{"tf":1.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"3":{"tf":2.0},"31":{"tf":2.449489742783178},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":3.0},"54":{"tf":2.8284271247461903},"55":{"tf":1.4142135623730951},"56":{"tf":2.449489742783178},"58":{"tf":2.0},"59":{"tf":1.7320508075688772},"62":{"tf":3.0},"64":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":2.23606797749979},"68":{"tf":2.449489742783178},"69":{"tf":1.0},"7":{"tf":2.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":2.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"8":{"tf":2.6457513110645907},"80":{"tf":3.3166247903554},"82":{"tf":4.0},"83":{"tf":3.0},"85":{"tf":2.6457513110645907},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":2.449489742783178},"91":{"tf":6.48074069840786},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":2.6457513110645907},"96":{"tf":2.8284271247461903},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":10,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.7320508075688772},"31":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"188":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"188":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"189":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"190":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"47":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"190":{"tf":1.0},"195":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"165":{"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":{"26":{"tf":1.0}}}}}}},"i":{"d":{"df":14,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"97":{"tf":2.23606797749979}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"47":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"154":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"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},"228":{"tf":1.0},"53":{"tf":1.0},"86":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"3":{"tf":1.0},"47":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.0}},"k":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"49":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"82":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"162":{"tf":1.0},"169":{"tf":2.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"162":{"tf":1.0},"174":{"tf":2.0}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"n":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":15,"docs":{"210":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"62":{"tf":2.449489742783178},"7":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":2.6457513110645907},"85":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"10":{"tf":1.0},"13":{"tf":1.0},"77":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"57":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":3,"docs":{"107":{"tf":1.0},"110":{"tf":2.23606797749979},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"210":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.4142135623730951},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"53":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"47":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}},"u":{"d":{"df":3,"docs":{"53":{"tf":3.3166247903554},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":19,"docs":{"111":{"tf":1.0},"132":{"tf":1.7320508075688772},"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"210":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"53":{"tf":2.6457513110645907},"56":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"73":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"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":{"54":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"26":{"tf":1.0},"53":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"3":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"48":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}}},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"228":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":2.8284271247461903},"53":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"36":{"tf":1.0},"56":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":2.449489742783178},"73":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}},"x":{"df":2,"docs":{"53":{"tf":1.0},"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"107":{"tf":1.0},"29":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"34":{"tf":1.0},"47":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"62":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"i":{"d":{"df":3,"docs":{"24":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"n":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0}}}}}},"`":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"27":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":23,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}}}}}}}},"df":6,"docs":{"227":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}}}},"df":35,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"135":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"179":{"tf":2.8284271247461903},"180":{"tf":2.8284271247461903},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"20":{"tf":2.8284271247461903},"205":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":4.898979485566356},"91":{"tf":4.0},"93":{"tf":2.8284271247461903},"94":{"tf":2.449489742783178},"97":{"tf":3.0}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"160":{"tf":1.0},"34":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"162":{"tf":1.0},"171":{"tf":2.0},"209":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"0":{"tf":2.0},"19":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"77":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"11":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"54":{"tf":1.0},"98":{"tf":2.6457513110645907}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"162":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"172":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"54":{"tf":1.0},"98":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"11":{"tf":1.0},"110":{"tf":1.0},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":2.449489742783178},"90":{"tf":1.0},"91":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"196":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"176":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"158":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":3.605551275463989}}}}},"u":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"47":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"13":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":8,"docs":{"11":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"48":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":30,"docs":{"111":{"tf":2.449489742783178},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"122":{"tf":2.23606797749979},"123":{"tf":2.23606797749979},"124":{"tf":2.23606797749979},"125":{"tf":2.23606797749979},"126":{"tf":2.6457513110645907},"127":{"tf":2.6457513110645907},"128":{"tf":1.0},"130":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"53":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":2.0},"94":{"tf":1.4142135623730951},"98":{"tf":3.4641016151377544}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979}}}},"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":{"169":{"tf":1.0}}}}}}}},"df":17,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":2.0},"114":{"tf":2.0},"139":{"tf":1.0},"16":{"tf":1.0},"162":{"tf":1.4142135623730951},"169":{"tf":2.0},"174":{"tf":2.23606797749979},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"80":{"tf":1.4142135623730951},"82":{"tf":2.449489742783178}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"228":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":31,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.0},"62":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":123,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"62":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.8284271247461903},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"62":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"85":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"62":{"tf":1.0},"91":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"197":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"51":{"tf":2.0},"85":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"26":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"df":0,"docs":{},"y":{"df":36,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"28":{"tf":1.0},"3":{"tf":2.6457513110645907},"31":{"tf":2.23606797749979},"44":{"tf":1.0},"5":{"tf":2.6457513110645907},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"6":{"tf":1.0},"65":{"tf":2.23606797749979},"66":{"tf":2.0},"67":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":2.6457513110645907},"7":{"tf":3.0},"70":{"tf":1.0},"71":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":2.23606797749979},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"76":{"tf":2.8284271247461903},"77":{"tf":2.449489742783178},"8":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":2.8284271247461903}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":1.0},"198":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"29":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"82":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"171":{"tf":1.0},"34":{"tf":1.0},"52":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"210":{"tf":1.4142135623730951},"29":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":3.1622776601683795},"69":{"tf":1.0},"72":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":2.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"11":{"tf":2.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"19":{"tf":1.0},"228":{"tf":1.0},"31":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"6":{".":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":52,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"2":{"tf":2.0},"3":{"tf":2.0},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.7320508075688772},"57":{"tf":2.0},"59":{"tf":2.0},"6":{"tf":2.449489742783178},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.8284271247461903},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"i":{"a":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"l":{"\\":{"0":{"0":{"\\":{"0":{"0":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}},"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":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"109":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"4":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":1.0}}}},"y":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"176":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"100":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"10":{"tf":1.0},"49":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"54":{"tf":1.0},"62":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":182,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"48":{"tf":2.23606797749979},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.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},"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}}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"52":{"tf":1.7320508075688772},"54":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"82":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"28":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"228":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"62":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"54":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"83":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"108":{"tf":1.0},"53":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}}}},"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"24":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"131":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":3.872983346207417},"62":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"44":{"tf":1.0},"7":{"tf":1.0},"85":{"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":{"56":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"154":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"162":{"tf":1.0},"164":{"tf":2.0},"18":{"tf":1.0},"62":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"103":{"tf":2.0},"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"103":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"53":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"10":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"53":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"170":{"tf":1.0},"82":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"82":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"188":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":31,"docs":{"102":{"tf":2.0},"106":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"2":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"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},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"54":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"154":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"158":{"tf":1.0},"85":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.7320508075688772},"139":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":2.23606797749979},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":3.605551275463989},"27":{"tf":3.4641016151377544},"28":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"66":{"tf":1.0},"70":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":2.449489742783178}}}}}},"s":{"2":{"0":{"2":{"0":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"19":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"98":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":9,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}}},"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":{"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"53":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":110,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979},"8":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979},"83":{"tf":1.7320508075688772},"85":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"161":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"170":{"tf":1.0},"176":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":2.0},"62":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.23606797749979},"91":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"102":{"tf":1.0},"54":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"54":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"210":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.7320508075688772},"88":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"54":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"82":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"48":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"55":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":120,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":2.0},"91":{"tf":2.8284271247461903},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"210":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":11,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"16":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"27":{"tf":2.449489742783178},"4":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"31":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"139":{"tf":1.4142135623730951},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"121":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"82":{"tf":1.0},"91":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"13":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"78":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":19,"docs":{"0":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"19":{"tf":2.0},"28":{"tf":2.0},"3":{"tf":1.0},"31":{"tf":1.7320508075688772},"33":{"tf":1.0},"34":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":2.0},"62":{"tf":1.0},"7":{"tf":1.0},"77":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}}}}},"l":{"(":{"0":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"193":{"tf":1.0},"85":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"24":{"tf":1.0},"28":{"tf":2.23606797749979},"31":{"tf":1.0},"34":{"tf":1.0}}}},"d":{"df":6,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"160":{"tf":2.23606797749979}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"142":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.4142135623730951},"96":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}},"x":{"df":2,"docs":{"10":{"tf":1.0},"103":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"136":{"tf":1.0},"140":{"tf":4.0},"83":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"105":{"tf":1.7320508075688772},"136":{"tf":1.0},"141":{"tf":4.0},"83":{"tf":2.6457513110645907},"87":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":1,"docs":{"69":{"tf":1.0}}}}},"m":{"a":{"a":{"a":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"48":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":27,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"210":{"tf":1.0},"228":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0},"47":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":2.449489742783178},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"df":6,"docs":{"2":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0},"57":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"a":{"a":{"a":{"df":5,"docs":{"142":{"tf":1.0},"155":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"101":{"tf":1.0}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":2.23606797749979}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"4":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"55":{"tf":1.0}}}}},"l":{"df":5,"docs":{"110":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}},"n":{"c":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"115":{"tf":1.0},"181":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":6,"docs":{"136":{"tf":1.0},"142":{"tf":3.605551275463989},"179":{"tf":1.0},"180":{"tf":1.0},"83":{"tf":2.6457513110645907},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"142":{"tf":1.0}}},"df":23,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"85":{"tf":2.23606797749979},"91":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"210":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":13,"docs":{"18":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"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":1,"docs":{"191":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":2,"docs":{"54":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"148":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"m":{"b":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.4142135623730951},"80":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"i":{"b":{"df":6,"docs":{"19":{"tf":1.0},"29":{"tf":1.0},"56":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"49":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"48":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}},"n":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":2.23606797749979},"82":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":8,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":1.0}},"o":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"51":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"53":{"tf":3.3166247903554},"55":{"tf":1.0}}}},"w":{"df":4,"docs":{"213":{"tf":1.4142135623730951},"216":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"228":{"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":{"53":{"tf":1.0},"82":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"64":{"tf":1.0}}}}}},"h":{"1":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":3,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"28":{"tf":1.0},"85":{"tf":1.0}},"l":{"df":6,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"27":{"tf":4.242640687119285},"85":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"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":1,"docs":{"10":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":2.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"48":{"tf":1.0},"55":{"tf":1.0}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"27":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"179":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"22":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"29":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":2.6457513110645907},"204":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}},"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":6,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"228":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"8":{"tf":1.0}}}},"p":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"228":{"tf":1.0},"28":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":14,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"228":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"91":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":8,"docs":{"139":{"tf":1.4142135623730951},"29":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"135":{"tf":1.0},"29":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"48":{"tf":1.0},"56":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"228":{"tf":1.0},"24":{"tf":1.0},"54":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":2.0},"17":{"tf":1.0}}}}}}}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"/":{"?":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":2,"docs":{"68":{"tf":1.4142135623730951},"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"214":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":4,"docs":{"177":{"tf":1.0},"180":{"tf":1.4142135623730951},"22":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}}}},"df":8,"docs":{"177":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":1.4142135623730951},"190":{"tf":1.0},"200":{"tf":1.7320508075688772},"22":{"tf":1.0},"31":{"tf":1.0},"93":{"tf":1.0}}}}}}}}}},"df":24,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":2.0},"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":2.0}}}}}}}}},"s":{":":{"/":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"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":{"/":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"2":{"0":{"6":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"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":{}},"s":{"d":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"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":{},"h":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"k":{"c":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"6":{"4":{"2":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"0":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"c":{"'":{"df":2,"docs":{"54":{"tf":1.0},"80":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}},"s":{"df":1,"docs":{"114":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"120":{"tf":1.0},"158":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"91":{"tf":2.0},"97":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"118":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"204":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"132":{"tf":1.0},"133":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"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":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"117":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"135":{"tf":1.0}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"117":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"168":{"tf":1.0},"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"121":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.0},"124":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":2,"docs":{"123":{"tf":1.0},"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"d":{"1":{"2":{"8":{"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":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"158":{"tf":1.0},"91":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"130":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"173":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"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":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.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":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"226":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"227":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"97":{"tf":1.0}}}}}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"222":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"216":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"218":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"175":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"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":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"0":{"5":{"0":{"6":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":16,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"131":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":99,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":5.477225575051661},"54":{"tf":3.0},"55":{"tf":2.6457513110645907},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":2.0},"9":{"tf":1.4142135623730951},"91":{"tf":3.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"p":{"df":12,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0}}},"r":{"c":{"df":2,"docs":{"110":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"26":{"tf":1.0}}}},"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":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"\"":{">":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":8,"docs":{"156":{"tf":2.23606797749979},"162":{"tf":1.0},"168":{"tf":2.23606797749979},"3":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":4.58257569495584},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"120":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"104":{"tf":1.0},"53":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":131,"docs":{"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.4142135623730951},"119":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"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.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.4142135623730951},"31":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":2.449489742783178},"83":{"tf":1.7320508075688772},"85":{"tf":2.6457513110645907},"91":{"tf":3.3166247903554},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"s":{"df":1,"docs":{"228":{"tf":1.0}},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"24":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"121":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"101":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"53":{"tf":1.7320508075688772},"85":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"78":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"19":{"tf":1.0},"228":{"tf":1.7320508075688772},"82":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"58":{"tf":1.0},"62":{"tf":1.4142135623730951}}}},"df":2,"docs":{"80":{"tf":1.0},"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":7,"docs":{"53":{"tf":1.4142135623730951},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0}}}},"o":{"df":1,"docs":{"8":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"5":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"95":{"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":1,"docs":{"53":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"115":{"tf":2.0},"177":{"tf":1.0},"181":{"tf":2.6457513110645907},"94":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}},"i":{"df":6,"docs":{"181":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"115":{"tf":1.0},"214":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"28":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"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":3,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"182":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"177":{"tf":1.0},"182":{"tf":1.7320508075688772},"28":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"2":{"tf":2.8284271247461903},"201":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":3.0},"57":{"tf":3.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"77":{"tf":1.0},"96":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"201":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"142":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"161":{"tf":1.0},"28":{"tf":1.0},"43":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":2.0},"29":{"tf":1.4142135623730951},"36":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.7320508075688772},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"1":{"6":{"df":3,"docs":{"136":{"tf":1.0},"145":{"tf":4.0},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"3":{"2":{"df":4,"docs":{"136":{"tf":1.0},"146":{"tf":4.0},"161":{"tf":3.4641016151377544},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"136":{"tf":1.0},"147":{"tf":4.0},"83":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"136":{"tf":1.0},"144":{"tf":4.0},"83":{"tf":2.6457513110645907},"97":{"tf":1.7320508075688772}}},"df":4,"docs":{"135":{"tf":2.0},"136":{"tf":1.0},"143":{"tf":4.0},"83":{"tf":3.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"107":{"tf":1.0},"109":{"tf":2.0},"53":{"tf":2.6457513110645907}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"n":{"d":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"13":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"75":{"tf":1.0},"8":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"f":{"a":{"c":{"df":4,"docs":{"68":{"tf":1.0},"74":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"27":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"107":{"tf":1.0},"20":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"224":{"tf":1.0},"227":{"tf":2.0},"97":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"53":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"56":{"tf":1.0},"80":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"171":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"10":{"tf":1.7320508075688772},"101":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.7320508075688772},"69":{"tf":1.0},"77":{"tf":1.4142135623730951}}}}},"t":{"'":{"df":7,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"75":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"102":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":2.23606797749979},"31":{"tf":1.7320508075688772},"36":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.449489742783178},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}},"s":{"df":5,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"85":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"85":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"16":{"tf":1.4142135623730951},"48":{"tf":1.0},"85":{"tf":1.0}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":2.0}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"199":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"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":8,"docs":{"158":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":2.6457513110645907},"53":{"tf":2.449489742783178},"80":{"tf":1.7320508075688772},"82":{"tf":3.1622776601683795},"83":{"tf":1.0},"85":{"tf":3.3166247903554}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"108":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"6":{"tf":2.0},"70":{"tf":2.0}}}},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"49":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"142":{"tf":1.0},"53":{"tf":1.0}},"n":{"df":3,"docs":{"53":{"tf":1.0},"55":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"51":{"tf":2.0},"85":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"75":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}},"m":{"df":0,"docs":{},"j":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"29":{"tf":1.0},"54":{"tf":2.6457513110645907},"56":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"91":{"tf":1.0}},"y":{"=":{"1":{"0":{"1":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"103":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"107":{"tf":1.0},"110":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"114":{"tf":1.0},"217":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"24":{"tf":1.0},"48":{"tf":1.0}}}},"t":{"'":{"df":6,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"25":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":2.23606797749979},"19":{"tf":1.0},"228":{"tf":2.0},"29":{"tf":3.3166247903554},"53":{"tf":2.0},"54":{"tf":2.23606797749979},"80":{"tf":2.449489742783178},"82":{"tf":2.8284271247461903}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":10,"docs":{"2":{"tf":1.0},"28":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"k":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}}}},"o":{"a":{"d":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"211":{"tf":1.4142135623730951},"43":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":2.23606797749979},"65":{"tf":1.7320508075688772},"69":{"tf":2.449489742783178},"7":{"tf":1.4142135623730951},"70":{"tf":2.0},"71":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"t":{"df":3,"docs":{"55":{"tf":1.0},"56":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"44":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"101":{"tf":1.0},"53":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"228":{"tf":1.0},"54":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.0},"57":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":4,"docs":{"135":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"t":{";":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"98":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.7320508075688772},"9":{"tf":2.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"104":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":28,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"53":{"tf":1.7320508075688772},"57":{"tf":1.0},"78":{"tf":1.0},"95":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"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":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"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":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0}}}}}}}},"df":5,"docs":{"131":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"31":{"tf":1.0},"89":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"p":{"(":{"(":{"_":{"df":1,"docs":{"85":{"tf":1.0}}},"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":2.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"h":{".":{"df":2,"docs":{"141":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"140":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0}}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}},"y":{"b":{"df":2,"docs":{"20":{"tf":1.0},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"23":{"tf":1.0},"26":{"tf":1.0},"53":{"tf":1.4142135623730951},"85":{"tf":1.0},"91":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"135":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"106":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"82":{"tf":2.0},"85":{"tf":3.872983346207417},"89":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"131":{"tf":1.0},"133":{"tf":1.7320508075688772},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"182":{"tf":1.7320508075688772},"186":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":2.449489742783178},"53":{"tf":1.4142135623730951},"62":{"tf":2.8284271247461903},"67":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"205":{"tf":1.0}}}}}}}}},"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"df":42,"docs":{"106":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"121":{"tf":2.0},"142":{"tf":1.0},"158":{"tf":1.0},"17":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":2.23606797749979},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":2.6457513110645907},"73":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":3.3166247903554},"81":{"tf":1.7320508075688772},"82":{"tf":3.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":4.123105625617661},"93":{"tf":1.0},"94":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"b":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"103":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"29":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"191":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":6,"docs":{"31":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"102":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"47":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"188":{"tf":1.0},"82":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"62":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"54":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0}}}}},"s":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}},"g":{"df":7,"docs":{"111":{"tf":2.449489742783178},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"125":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.7320508075688772},"82":{"tf":1.0}},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}}},"v":{"df":1,"docs":{"47":{"tf":1.0}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"73":{"tf":3.0},"74":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"121":{"tf":1.7320508075688772},"142":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"199":{"tf":1.0},"205":{"tf":1.0},"34":{"tf":1.4142135623730951},"73":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":2.0}}}},"t":{"1":{"6":{"df":6,"docs":{"136":{"tf":1.0},"150":{"tf":4.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"136":{"tf":1.0},"151":{"tf":4.0},"216":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":2.6457513110645907},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{">":{"(":{"0":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"115":{"tf":2.23606797749979},"116":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"136":{"tf":1.0},"152":{"tf":4.0},"165":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":2.8284271247461903},"85":{"tf":2.8284271247461903},"91":{"tf":4.358898943540674}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"149":{"tf":4.0},"214":{"tf":1.4142135623730951},"83":{"tf":3.0},"85":{"tf":2.6457513110645907}}},"df":7,"docs":{"114":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"136":{"tf":1.0},"148":{"tf":4.0},"166":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"30":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":2.6457513110645907},"56":{"tf":1.4142135623730951}},"e":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":5.196152422706632}}}},"df":0,"docs":{}},"df":1,"docs":{"27":{"tf":5.196152422706632}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"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":{"228":{"tf":1.0},"82":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"110":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.4142135623730951},"31":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"109":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"76":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}},"w":{"df":11,"docs":{"134":{"tf":1.0},"20":{"tf":1.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":2.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"186":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"216":{"tf":1.0},"220":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":3.4641016151377544}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"n":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":2.449489742783178}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":11,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":2.0},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"26":{"tf":1.0},"31":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"2":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"55":{"tf":2.6457513110645907},"57":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"154":{"tf":2.0},"169":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"202":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":2.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"139":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"128":{"tf":1.0}},"i":{"df":5,"docs":{"111":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"91":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"129":{"tf":1.0},"164":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}},"w":{"df":7,"docs":{"110":{"tf":1.0},"210":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"101":{"tf":2.449489742783178},"19":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"3":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0}}},"x":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"77":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"153":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"173":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"135":{"tf":2.0},"136":{"tf":1.0},"153":{"tf":4.123105625617661},"154":{"tf":1.4142135623730951},"157":{"tf":1.7320508075688772},"160":{"tf":2.6457513110645907},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"83":{"tf":3.605551275463989},"94":{"tf":1.4142135623730951}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"167":{"tf":1.0},"170":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"103":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"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.7320508075688772},"155":{"tf":1.0},"156":{"tf":2.23606797749979},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"161":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"83":{"tf":2.23606797749979},"85":{"tf":3.3166247903554},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":2,"docs":{"158":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"l":{"d":{"df":181,"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.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},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.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},"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}}},"df":0,"docs":{}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"181":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}},"df":7,"docs":{"15":{"tf":1.0},"160":{"tf":1.0},"53":{"tf":2.0},"55":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"101":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"104":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"53":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"154":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"6":{"4":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"154":{"tf":1.0}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"228":{"tf":2.0}}}}}}}},"df":11,"docs":{"136":{"tf":1.0},"154":{"tf":3.1622776601683795},"169":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"85":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"228":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"135":{"tf":1.4142135623730951},"228":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":1,"docs":{"53":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"78":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"26":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"78":{"tf":1.0},"94":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"200":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"173":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.4142135623730951},"44":{"tf":1.0},"57":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":1,"docs":{"54":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"55":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":2.449489742783178},"55":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":2.8284271247461903}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":2.449489742783178},"49":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"48":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"62":{"tf":1.0},"80":{"tf":2.23606797749979},"83":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"53":{"tf":1.7320508075688772},"54":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"139":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{"$":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"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":5,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"45":{"tf":1.0},"57":{"tf":1.0}}}},"y":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"111":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"r":{"df":5,"docs":{"178":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"172":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":12,"docs":{"158":{"tf":1.0},"162":{"tf":1.0},"172":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.7320508075688772},"89":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"80":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"181":{"tf":1.0},"214":{"tf":1.0},"53":{"tf":2.6457513110645907},"62":{"tf":2.23606797749979},"80":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"187":{"tf":1.0}}}},"n":{"df":1,"docs":{"85":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"53":{"tf":2.6457513110645907},"54":{"tf":1.0},"55":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"106":{"tf":1.0},"210":{"tf":2.6457513110645907},"211":{"tf":2.23606797749979},"212":{"tf":2.23606797749979}}}}}}},"o":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"11":{"tf":1.0},"170":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"53":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"18":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}},"df":6,"docs":{"177":{"tf":1.0},"183":{"tf":1.7320508075688772},"3":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"183":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"54":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"177":{"tf":1.0},"184":{"tf":1.7320508075688772},"27":{"tf":1.0},"78":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"228":{"tf":1.0}},"s":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":3,"docs":{"142":{"tf":1.0},"155":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":3,"docs":{"129":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"0":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":29,"docs":{"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"129":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.7320508075688772},"155":{"tf":4.242640687119285},"156":{"tf":2.23606797749979},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"53":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"85":{"tf":3.872983346207417},"91":{"tf":2.8284271247461903},"94":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":2.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"162":{"tf":1.0},"173":{"tf":2.23606797749979},"27":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.7320508075688772}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}},"df":1,"docs":{"143":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":1,"docs":{"148":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.7320508075688772}}},"m":{"b":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"54":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"85":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"187":{"tf":1.0},"189":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"27":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":2.0},"6":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"77":{"tf":1.0},"91":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.7320508075688772},"53":{"tf":1.0}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"26":{"tf":1.0}}},"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":87,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{".":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"211":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"70":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.7320508075688772},"54":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"154":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":2.449489742783178},"20":{"tf":1.7320508075688772},"228":{"tf":1.0},"31":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"18":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":1.7320508075688772},"55":{"tf":2.0}}}}},"df":1,"docs":{"47":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"0":{"tf":1.0},"187":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":3.7416573867739413},"54":{"tf":1.0},"62":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"190":{"tf":1.0},"202":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"203":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"53":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"199":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"212":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":2,"docs":{"139":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"80":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}},"q":{"a":{"a":{"a":{"df":0,"docs":{},"q":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":73,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":2.8284271247461903},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.23606797749979},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.6457513110645907},"159":{"tf":2.0},"160":{"tf":2.0},"161":{"tf":2.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.0},"17":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"185":{"tf":2.449489742783178},"186":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"200":{"tf":1.0},"214":{"tf":2.449489742783178},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"48":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":3.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":5.0},"82":{"tf":3.0},"83":{"tf":2.8284271247461903},"85":{"tf":3.3166247903554},"91":{"tf":4.358898943540674},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"y":{"(":{"[":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"137":{"tf":1.0},"163":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"141":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"179":{"tf":1.0},"93":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":1,"docs":{"143":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"151":{"tf":1.0},"217":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"152":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"155":{"tf":1.0},"171":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"159":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"27":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.4142135623730951}},"j":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":2.0}},"s":{"_":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"45":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"18":{"tf":1.0},"55":{"tf":1.0}}}},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"190":{"tf":1.0},"204":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"111":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"160":{"tf":3.1622776601683795}}}}}}},"d":{"df":9,"docs":{"213":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"29":{"tf":1.0},"56":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":2.0},"89":{"tf":1.0}},"i":{"df":3,"docs":{"54":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"54":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"101":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"142":{"tf":1.0},"80":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"122":{"tf":1.0},"124":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":2,"docs":{"123":{"tf":1.0},"125":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"129":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"15":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":13,"docs":{"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"156":{"tf":3.3166247903554},"179":{"tf":2.449489742783178},"180":{"tf":2.449489742783178},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"54":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":3.0},"85":{"tf":4.358898943540674},"93":{"tf":2.449489742783178},"97":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"1":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"85":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":1,"docs":{"85":{"tf":2.449489742783178}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"31":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"228":{"tf":1.0},"53":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":7,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"20":{"tf":1.0},"27":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":149,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.7320508075688772},"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},"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},"5":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0},"95":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"131":{"tf":2.23606797749979},"132":{"tf":2.0},"133":{"tf":2.0},"20":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"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":{"54":{"tf":1.7320508075688772}}}}}}}}}}},"df":3,"docs":{"228":{"tf":1.0},"29":{"tf":1.4142135623730951},"54":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"214":{"tf":1.0},"53":{"tf":2.449489742783178},"73":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"47":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"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":1,"docs":{"97":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"'":{"df":2,"docs":{"173":{"tf":1.0},"26":{"tf":1.0}}},"df":16,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"5":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":2.6457513110645907},"65":{"tf":1.4142135623730951},"69":{"tf":2.0},"7":{"tf":1.4142135623730951},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"53":{"tf":2.449489742783178},"55":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":3,"docs":{"111":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":2,"docs":{"211":{"tf":1.0},"49":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"126":{"tf":1.0},"127":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"47":{"tf":1.0},"78":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"20":{"tf":1.0},"93":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"108":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"29":{"tf":2.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"78":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"139":{"tf":1.0},"22":{"tf":1.7320508075688772},"31":{"tf":1.0},"47":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"b":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"d":{"b":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"14":{"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":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"136":{"tf":1.0},"157":{"tf":3.872983346207417},"18":{"tf":1.0},"83":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"20":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"54":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":8,"docs":{"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.0},"29":{"tf":1.0},"91":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":2.0}}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"df":2,"docs":{"48":{"tf":1.0},"62":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":6,"docs":{"17":{"tf":1.0},"53":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"105":{"tf":1.0},"53":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":104,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"17":{"tf":2.6457513110645907},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.23606797749979},"185":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":3.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"62":{"tf":2.23606797749979},"80":{"tf":2.449489742783178},"82":{"tf":2.6457513110645907},"83":{"tf":1.7320508075688772},"85":{"tf":5.196152422706632},"91":{"tf":3.872983346207417},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"v":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"23":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"85":{"tf":1.0},"90":{"tf":1.0}}}}}},"f":{"df":1,"docs":{"10":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"28":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"53":{"tf":2.0},"54":{"tf":2.0},"80":{"tf":1.0},"82":{"tf":1.0}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"31":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"36":{"tf":1.0},"88":{"tf":1.0}}}},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"112":{"tf":1.0},"121":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.4142135623730951},"29":{"tf":1.0},"47":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"82":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":27,"docs":{"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"49":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"210":{"tf":1.4142135623730951},"47":{"tf":1.0},"75":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.0},"53":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"53":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"54":{"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":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"10":{"tf":1.0},"61":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":1,"docs":{"47":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"142":{"tf":1.0},"178":{"tf":1.0},"19":{"tf":1.0},"29":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"80":{"tf":2.0},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"199":{"tf":1.0},"205":{"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":85,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"100":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":2.23606797749979},"54":{"tf":2.0},"55":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"13":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"k":{"df":1,"docs":{"54":{"tf":1.0}}},"m":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}},"n":{"df":1,"docs":{"82":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"d":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"127":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"16":{"tf":1.4142135623730951},"53":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"139":{"tf":1.0},"16":{"tf":1.0},"48":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"103":{"tf":1.0},"85":{"tf":3.4641016151377544},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}}}}}}}},"df":10,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":2.449489742783178},"13":{"tf":2.8284271247461903},"14":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":4.242640687119285},"18":{"tf":1.0},"27":{"tf":1.0}}}},"i":{"c":{"df":28,"docs":{"110":{"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},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":3.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"83":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":22,"docs":{"14":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":2.0},"18":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"209":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"67":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"227":{"tf":1.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"115":{"tf":1.7320508075688772},"47":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"0":{".":{"3":{"9":{".":{"7":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"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":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"156":{"tf":1.0},"160":{"tf":1.0}}}}},"df":3,"docs":{"2":{"tf":1.0},"47":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"58":{"tf":1.0},"78":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"98":{"tf":2.449489742783178}},"n":{"df":2,"docs":{"5":{"tf":1.0},"91":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"28":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"108":{"tf":1.0},"190":{"tf":1.0},"205":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"205":{"tf":2.0},"22":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"205":{"tf":1.0}}}}}}}}}}}}},"df":2,"docs":{"205":{"tf":1.0},"53":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"210":{"tf":1.0},"24":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"53":{"tf":1.4142135623730951},"68":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"104":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"210":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"185":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"53":{"tf":1.0}}}},"i":{"df":6,"docs":{"48":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"53":{"tf":1.7320508075688772},"80":{"tf":2.0},"82":{"tf":1.4142135623730951},"97":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"97":{"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":{},"i":{"d":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"54":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"111":{"tf":1.0},"114":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"29":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"p":{"df":1,"docs":{"47":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"101":{"tf":1.0},"228":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"0":{"5":{"0":{"6":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"2":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"154":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"91":{"tf":3.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"19":{"tf":1.0},"26":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"55":{"tf":1.0},"91":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"53":{"tf":1.4142135623730951},"56":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":10,"docs":{"10":{"tf":1.0},"161":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"228":{"tf":1.0},"73":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"212":{"tf":1.0},"4":{"tf":1.0}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"228":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"228":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"11":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"47":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":23,"docs":{"106":{"tf":1.0},"213":{"tf":3.0},"214":{"tf":2.0},"215":{"tf":2.0},"216":{"tf":2.0},"217":{"tf":2.0},"218":{"tf":2.0},"219":{"tf":2.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":2.0},"84":{"tf":1.7320508075688772},"85":{"tf":3.3166247903554},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}},"e":{"6":{"4":{"df":5,"docs":{"213":{"tf":2.0},"220":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"223":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"222":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0}}}}}}}},"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":2,"docs":{"214":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":2.0},"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"82":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}}}},"df":12,"docs":{"103":{"tf":1.0},"105":{"tf":1.7320508075688772},"214":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.0},"85":{"tf":4.795831523312719},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"105":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"218":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"28":{"tf":1.0},"53":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"206":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"228":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":2.0},"6":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.8284271247461903},"77":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"176":{"tf":1.0},"210":{"tf":1.0},"53":{"tf":2.0},"54":{"tf":1.4142135623730951},"56":{"tf":3.0},"58":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":2.0},"70":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.7320508075688772},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"26":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"18":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"97":{"tf":2.449489742783178}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"47":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"207":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"10":{"tf":1.0},"176":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"77":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"181":{"tf":1.0},"214":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"105":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.7320508075688772},"58":{"tf":1.0},"62":{"tf":2.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"70":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"48":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":11,"docs":{"142":{"tf":1.7320508075688772},"159":{"tf":2.23606797749979},"163":{"tf":1.0},"164":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"62":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":19,"docs":{"103":{"tf":1.0},"11":{"tf":2.23606797749979},"16":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"61":{"tf":1.7320508075688772},"78":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"108":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":3.0},"62":{"tf":1.0},"91":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"82":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"102":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"8":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":5,"docs":{"2":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"101":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"46":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"135":{"tf":1.0},"26":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"83":{"tf":1.0}}},"3":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"228":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"63":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"161":{"tf":1.0}},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":2.23606797749979},"53":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"101":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"188":{"tf":1.0}}},"df":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":{"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{">":{"(":{"0":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"116":{"tf":2.0},"117":{"tf":2.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"135":{"tf":2.23606797749979},"136":{"tf":1.0},"142":{"tf":2.8284271247461903},"156":{"tf":1.7320508075688772},"158":{"tf":2.6457513110645907},"159":{"tf":3.3166247903554},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"17":{"tf":1.7320508075688772},"173":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":2.6457513110645907},"180":{"tf":2.6457513110645907},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":1.0},"214":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"61":{"tf":1.0},"62":{"tf":3.0},"80":{"tf":2.449489742783178},"82":{"tf":3.4641016151377544},"83":{"tf":3.4641016151377544},"85":{"tf":3.7416573867739413},"93":{"tf":2.6457513110645907},"94":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}},"f":{"df":0,"docs":{},"j":{"df":1,"docs":{"4":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"62":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"54":{"tf":1.0}}},"k":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}}},"r":{"d":{"df":4,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"102":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"104":{"tf":1.0},"53":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"53":{"tf":1.0},"55":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"72":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":8,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"53":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"173":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":2.449489742783178},"8":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}}}},"w":{"df":7,"docs":{"121":{"tf":1.0},"139":{"tf":1.4142135623730951},"182":{"tf":1.0},"27":{"tf":1.4142135623730951},"82":{"tf":1.0},"91":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"23":{"tf":1.0},"26":{"tf":1.0}}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"161":{"tf":1.0},"22":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"82":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"53":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"162":{"tf":1.0},"175":{"tf":2.0},"178":{"tf":1.0},"54":{"tf":1.7320508075688772},"91":{"tf":1.0}},"r":{"df":10,"docs":{"106":{"tf":1.0},"115":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":2.449489742783178},"225":{"tf":2.23606797749979},"226":{"tf":2.23606797749979},"227":{"tf":2.23606797749979},"78":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":2.23606797749979}},"i":{"d":{"df":4,"docs":{"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"97":{"tf":3.3166247903554}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"175":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"24":{"tf":1.0},"25":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"1":{".":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"91":{"tf":2.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"53":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"115":{"tf":2.23606797749979},"91":{"tf":3.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"0":{"tf":1.0},"179":{"tf":2.0},"180":{"tf":2.0},"91":{"tf":1.4142135623730951},"93":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"53":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"1":{".":{"7":{"3":{".":{"0":{"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":5,"docs":{"2":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0}}}},"p":{"df":1,"docs":{"18":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"61":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"26":{"tf":1.0},"27":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"28":{"tf":1.0}}},"k":{"df":4,"docs":{"23":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"54":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"115":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"18":{"tf":1.0},"91":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"200":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"48":{"tf":1.0},"53":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"162":{"tf":1.0},"176":{"tf":2.23606797749979},"82":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"24":{"tf":1.0},"27":{"tf":1.0},"57":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"77":{"tf":1.0},"91":{"tf":1.0}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"27":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":31,"docs":{"11":{"tf":1.0},"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"83":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"y":{".":{".":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"142":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.7320508075688772},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"226":{"tf":1.0},"227":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"115":{"tf":1.0},"91":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.0},"31":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":7,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0}}}},"y":{"a":{"a":{"a":{"df":5,"docs":{"129":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":46,"docs":{"11":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.7320508075688772},"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.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"214":{"tf":1.4142135623730951},"228":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":3.872983346207417},"91":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":7,"docs":{"115":{"tf":1.0},"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"214":{"tf":1.4142135623730951},"85":{"tf":2.8284271247461903},"97":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"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":5,"docs":{"210":{"tf":1.0},"28":{"tf":1.0},"33":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":31,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"49":{"tf":1.0},"53":{"tf":1.7320508075688772},"62":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"58":{"tf":1.0},"68":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"80":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"[":{"8":{"3":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"6":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}}}}}},"df":3,"docs":{"137":{"tf":1.4142135623730951},"161":{"tf":1.0},"85":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"139":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"189":{"tf":1.4142135623730951},"82":{"tf":1.0}}}}},"r":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"85":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"210":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"53":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"54":{"tf":1.0},"73":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"190":{"tf":1.0},"208":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"52":{"tf":1.0},"85":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"98":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"50":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"53":{"tf":1.0}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":72,"docs":{"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"158":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"174":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":2.0},"186":{"tf":2.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"47":{"tf":1.0},"48":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.0},"62":{"tf":2.8284271247461903},"78":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":4.69041575982343},"83":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"91":{"tf":4.123105625617661},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"[":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"174":{"tf":1.0},"194":{"tf":1.0},"205":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"226":{"tf":1.0},"97":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"216":{"tf":1.0},"219":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"220":{"tf":1.0},"223":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":9,"docs":{"115":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"85":{"tf":1.0},"91":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"158":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"186":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"62":{"tf":1.4142135623730951},"82":{"tf":2.23606797749979},"85":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"225":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"190":{"tf":1.0},"209":{"tf":1.7320508075688772}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"134":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"174":{"tf":1.0},"19":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"177":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"184":{"tf":2.0},"53":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"80":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":11,"docs":{"13":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"200":{"tf":1.0},"68":{"tf":1.4142135623730951},"74":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"94":{"tf":2.0}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"105":{"tf":1.0},"54":{"tf":1.7320508075688772},"88":{"tf":1.0}}}},"df":53,"docs":{"0":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"142":{"tf":1.0},"161":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":2.23606797749979},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"22":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":2.0},"27":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"83":{"tf":2.23606797749979},"85":{"tf":2.8284271247461903},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}}}}},">":{"(":{"0":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"85":{"tf":2.23606797749979}}}}}}}}}}}}}},"df":5,"docs":{"156":{"tf":3.1622776601683795},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"85":{"tf":4.358898943540674}},"i":{"d":{"df":1,"docs":{"85":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":2.23606797749979},"85":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"85":{"tf":2.449489742783178}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"27":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"v":{"8":{"df":1,"docs":{"54":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":20,"docs":{"105":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"142":{"tf":1.0},"154":{"tf":1.4142135623730951},"158":{"tf":1.0},"214":{"tf":2.6457513110645907},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"62":{"tf":2.449489742783178},"80":{"tf":2.23606797749979},"82":{"tf":3.7416573867739413},"83":{"tf":2.0},"85":{"tf":4.358898943540674},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}}}},">":{"(":{"0":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"106":{"tf":1.0},"187":{"tf":2.23606797749979},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"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},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":2.449489742783178},"82":{"tf":1.7320508075688772},"85":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"135":{"tf":2.23606797749979},"136":{"tf":1.0},"154":{"tf":1.7320508075688772},"158":{"tf":1.0},"160":{"tf":3.605551275463989},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"83":{"tf":2.6457513110645907},"85":{"tf":2.0},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"55":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":2.6457513110645907},"83":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"214":{"tf":1.0},"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"136":{"tf":1.0},"137":{"tf":2.0},"161":{"tf":3.3166247903554},"179":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.6457513110645907},"85":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"85":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"162":{"tf":1.0},"167":{"tf":2.0},"2":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":2,"docs":{"68":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"3":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"20":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"82":{"tf":3.4641016151377544},"91":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"53":{"tf":1.0}}}},"s":{"df":2,"docs":{"53":{"tf":1.0},"61":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"139":{"tf":1.4142135623730951},"18":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"6":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"26":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"47":{"tf":1.0}}},"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"m":{"3":{"2":{"df":1,"docs":{"47":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"201":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"228":{"tf":2.6457513110645907},"53":{"tf":3.1622776601683795},"56":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":2.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"139":{"tf":1.0},"15":{"tf":1.0},"53":{"tf":1.7320508075688772},"72":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"58":{"tf":1.4142135623730951},"62":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":1,"docs":{"54":{"tf":1.0}}},"v":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}},"b":{"3":{"df":1,"docs":{"51":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.7320508075688772},"75":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"31":{"tf":1.0},"75":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"93":{"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":{"0":{"tf":1.0},"171":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":7,"docs":{"115":{"tf":1.0},"120":{"tf":1.0},"168":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":2.0},"91":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"77":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"5":{"0":{"0":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"85":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"176":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.7320508075688772},"22":{"tf":1.0},"27":{"tf":1.7320508075688772},"62":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"49":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":96,"docs":{"101":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"31":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"l":{"d":{"df":21,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"159":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":2.0},"3":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"210":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"223":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"53":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}}}}},"x":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"k":{"c":{"d":{"df":1,"docs":{"200":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"47":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"62":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":4,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}}}},"r":{"df":1,"docs":{"61":{"tf":1.0}}},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}}}}},"title":{"root":{"1":{"2":{"8":{"df":7,"docs":{"117":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"112":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"102":{"tf":1.0},"111":{"tf":1.0},"162":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"49":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"35":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"38":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"40":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"41":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"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":{}}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"53":{"tf":1.0}}}}}}},"t":{"a":{"df":2,"docs":{"0":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"107":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}},"l":{"df":1,"docs":{"138":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":6,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"103":{"tf":1.0},"136":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"48":{"tf":1.0},"83":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"162":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"26":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"169":{"tf":1.0}},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"67":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"66":{"tf":1.0},"77":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"28":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"170":{"tf":1.0},"172":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"196":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"169":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":11,"docs":{"10":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"71":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"188":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":2,"docs":{"73":{"tf":1.0},"74":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"50":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"52":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"102":{"tf":1.0},"187":{"tf":1.0},"32":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"61":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"105":{"tf":1.0},"141":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"216":{"tf":1.0},"220":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"200":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"93":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"181":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"57":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"1":{"6":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"144":{"tf":1.0}}},"df":1,"docs":{"143":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"67":{"tf":1.0},"68":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"55":{"tf":1.0}}}}},"v":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"10":{"tf":1.0},"66":{"tf":1.0},"77":{"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":2,"docs":{"102":{"tf":1.0},"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}}}}}}}},"l":{"a":{"b":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"29":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"67":{"tf":1.0},"73":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"211":{"tf":1.0},"6":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"76":{"tf":1.0},"9":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"190":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"112":{"tf":1.0},"133":{"tf":1.0},"182":{"tf":1.0},"27":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"121":{"tf":1.0},"177":{"tf":1.0},"60":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"g":{"df":6,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"46":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"101":{"tf":1.0},"212":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"48":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"154":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"55":{"tf":1.0},"56":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"130":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"172":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"184":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"155":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"173":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"185":{"tf":1.0},"79":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"217":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"106":{"tf":1.0},"30":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"126":{"tf":1.0},"127":{"tf":1.0}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":4,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"93":{"tf":1.0},"94":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"157":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"26":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"158":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":3,"docs":{"174":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"205":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"114":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"84":{"tf":1.0}},"e":{"6":{"4":{"df":4,"docs":{"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"1":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"214":{"tf":1.0},"61":{"tf":1.0},"84":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"175":{"tf":1.0}},"r":{"df":5,"docs":{"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"97":{"tf":1.0}}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":10,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"46":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"25":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"68":{"tf":1.0},"74":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"186":{"tf":1.0},"81":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"183":{"tf":1.0},"184":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"105":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"187":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"167":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"228":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"68":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"219":{"tf":1.0},"223":{"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":["the_azle_book.html#the-azle-book-beta","get_started.html#get-started","get_started.html#installation","get_started.html#deployment","rest_based_examples.html#examples","deployment.html#deployment","deployment.html#starting-the-local-replica","deployment.html#deploying-to-the-local-replica","deployment.html#interacting-with-your-canister","deployment.html#deploying-to-mainnet","deployment.html#common-deployment-issues","project_structure.html#project-structure-tldr","servers.html#servers-tldr","servers.html#servers","servers.html#nodejs-httpserver","servers.html#express","servers.html#jsonstringify","servers.html#server","servers.html#limitations","assets.html#assets-tldr","authentication.html#authentication-tldr","authentication.html#authentication","authentication.html#under-the-hood","fetch.html#fetch-tldr","fetch.html#fetch","fetch.html#cross-canister-calls-to-a-candid-canister","fetch.html#cross-canister-calls-to-an-http-canister","fetch.html#https-outcalls","debugging.html#debugging-tldr","debugging.html#debugging","debugging.html#consolelog-and-trycatch","debugging.html#canister-did-not-produce-a-response","debugging.html#no-error-message","debugging.html#final-compiled-and-bundled-javascript","limitations.html#limitations-tldr","reference_http/reference.html#reference","reference_http/autoreload.html#autoreload","reference_http/environment_variables.html#environment-variables","reference_http/environment_variables.html#azle_autoreload","reference_http/environment_variables.html#azle_dockerfile_hash","reference_http/environment_variables.html#azle_identity_storage_mode","reference_http/environment_variables.html#azle_instruction_count","reference_http/environment_variables.html#azle_proptest_num_runs","reference_http/environment_variables.html#azle_proptest_path","reference_http/environment_variables.html#azle_proptest_quiet","reference_http/environment_variables.html#azle_proptest_seed","reference_http/environment_variables.html#azle_proptest_verbose","reference_http/environment_variables.html#azle_test_fetch","reference_http/environment_variables.html#azle_use_dockerfile","reference_http/environment_variables.html#azle_verbose","reference_http/environment_variables.html#azle_wasmedge_quickjs_dir","reference_http/native_compilation.html#native-compilation-tldr","reference_http/native_compilation.html#native-compilation","candid_based_documentation.html#old-candid-based-documentation","azle.html#azle-beta","azle.html#disclaimer","azle.html#demergent-labs","azle.html#benefits-and-drawbacks","azle.html#benefits","azle.html#drawbacks","internet_computer_overview.html#internet-computer-overview","canisters_overview.html#canisters-overview","installation.html#installation","hello_world.html#hello-world","hello_world.html#quick-start","hello_world.html#methodical-start","hello_world.html#the-project-directory-and-file-structure","hello_world.html#indexts","hello_world.html#tsconfigjson","hello_world.html#dfxjson","hello_world.html#local-deployment","hello_world.html#common-deployment-issues","hello_world.html#interacting-with-your-canister-from-the-command-line","hello_world.html#interacting-with-your-canister-from-the-web-ui","deployment_candid_based.html#deployment","deployment_candid_based.html#starting-the-local-replica","deployment_candid_based.html#deploying-to-the-local-replica","deployment_candid_based.html#interacting-with-your-canister","deployment_candid_based.html#dfx-command-line","deployment_candid_based.html#dfx-web-ui","deployment_candid_based.html#dfinityagent","deployment_candid_based.html#deploying-to-mainnet","deployment_candid_based.html#common-deployment-issues","examples.html#examples","query_methods.html#query-methods","query_methods.html#tldr","update_methods.html#update-methods","update_methods.html#tldr","candid.html#candid","stable_structures.html#stable-structures","stable_structures.html#tldr","stable_structures.html#caveats","stable_structures.html#float64-values","stable_structures.html#candidtype-performance","stable_structures.html#migrations","stable_structures.html#canister","cross_canister.html#cross-canister","http.html#http","http.html#incoming-http-requests","http.html#outgoing-http-requests","management_canister.html#management-canister","canister_lifecycle.html#canister-lifecycle","timers.html#timers","cycles.html#cycles","caveats.html#caveats","caveats.html#unknown-security-vulnerabilities","caveats.html#npm-packages","caveats.html#javascript-environment-apis","caveats.html#high-candid-encodingdecoding-costs","caveats.html#promises","caveats.html#jsonparse-and-stablebtreemap-float64-values","reference/reference.html#reference","reference/bitcoin.html#bitcoin","reference/bitcoin.html#tecdsa","reference/bitcoin.html#bitcoin-integration","reference/bitcoin.html#ckbtc","reference/call_apis/call_apis.html#call-apis","reference/call_apis/accept_message.html#accept-message","reference/call_apis/arg_data_raw.html#arg-data-raw","reference/call_apis/arg_data_raw_size.html#arg-data-raw-size","reference/call_apis/call.html#call","reference/call_apis/call_raw.html#call-raw","reference/call_apis/call_raw128.html#call-raw-128","reference/call_apis/call_with_payment.html#call-with-payment","reference/call_apis/call_with_payment128.html#call-with-payment-128","reference/call_apis/caller.html#caller","reference/call_apis/method_name.html#method-name","reference/call_apis/msg_cycles_accept.html#msg-cycles-accept","reference/call_apis/msg_cycles_accept128.html#msg-cycles-accept-128","reference/call_apis/msg_cycles_available.html#msg-cycles-available","reference/call_apis/msg_cycles_available128.html#msg-cycles-available-128","reference/call_apis/msg_cycles_refunded.html#msg-cycles-refunded","reference/call_apis/msg_cycles_refunded128.html#msg-cycles-refunded-128","reference/call_apis/notify.html#notify","reference/call_apis/notify_raw.html#notify-raw","reference/call_apis/notify_with_payment_128.html#notify-with-payment-128","reference/call_apis/reject.html#reject","reference/call_apis/reject_code.html#reject-code","reference/call_apis/reject_message.html#reject-message","reference/call_apis/reply.html#reply","reference/call_apis/reply_raw.html#reply-raw","reference/candid/candid.html#candid","reference/candid/blob.html#blob","reference/candid/bool.html#bool","reference/candid/empty.html#empty","reference/candid/float32.html#float32","reference/candid/float64.html#float64","reference/candid/func.html#func","reference/candid/int.html#int","reference/candid/int8.html#int8","reference/candid/int16.html#int16","reference/candid/int32.html#int32","reference/candid/int64.html#int64","reference/candid/nat.html#nat","reference/candid/nat8.html#nat8","reference/candid/nat16.html#nat16","reference/candid/nat32.html#nat32","reference/candid/nat64.html#nat64","reference/candid/null.html#null","reference/candid/opt.html#opt","reference/candid/principal.html#principal","reference/candid/record.html#record","reference/candid/reserved.html#reserved","reference/candid/service.html#service","reference/candid/text.html#text","reference/candid/variant.html#variant","reference/candid/vec.html#vec","reference/canister_apis/canister_apis.html#canister-apis","reference/canister_apis/candid_decode.html#candid-decode","reference/canister_apis/candid_encode.html#candid-encode","reference/canister_apis/canister_balance.html#canister-balance","reference/canister_apis/canister_balance128.html#canister-balance-128","reference/canister_apis/canister_version.html#canister-version","reference/canister_apis/canister_id.html#canister-id","reference/canister_apis/data_certificate.html#data-certificate","reference/canister_apis/instruction_counter.html#instruction-counter","reference/canister_apis/is_controller.html#is-controller","reference/canister_apis/performance_counter.html#performance-counter","reference/canister_apis/print.html#print","reference/canister_apis/set_certified_data.html#set-certified-data","reference/canister_apis/time.html#time","reference/canister_apis/trap.html#trap","reference/canister_methods/canister_methods.html#canister-methods","reference/canister_methods/heartbeat.html#heartbeat","reference/canister_methods/http_request.html#http_request","reference/canister_methods/http_request_update.html#http_request","reference/canister_methods/init.html#init","reference/canister_methods/inspect_message.html#inspect-message","reference/canister_methods/post_upgrade.html#post-upgrade","reference/canister_methods/pre_upgrade.html#pre-upgrade","reference/canister_methods/query.html#query","reference/canister_methods/update.html#update","reference/environment_variables.html#environment-variables","reference/environment_variables.html#dfxjson","reference/environment_variables.html#processenv","reference/management_canister/management_canister.html#management-canister","reference/management_canister/bitcoin_get_balance.html#bitcoin_get_balance","reference/management_canister/bitcoin_get_current_fee_percentiles.html#bitcoin_get_current_fee_percentiles","reference/management_canister/bitcoin_get_utxos.html#bitcoin_get_utxos","reference/management_canister/bitcoin_send_transaction.html#bitcoin_send_transaction","reference/management_canister/canister_status.html#canister_status","reference/management_canister/create_canister.html#create_canister","reference/management_canister/delete_canister.html#delete_canister","reference/management_canister/deposit_cycles.html#deposit_cycles","reference/management_canister/ecdsa_public_key.html#ecdsa_public_key","reference/management_canister/http_request.html#http_request","reference/management_canister/install_code.html#install_code","reference/management_canister/provisional_create_canister_with_cycles.html#provisional_create_canister_with_cycles","reference/management_canister/provisional_top_up_canister.html#provisional_top_up_canister","reference/management_canister/raw_rand.html#raw_rand","reference/management_canister/sign_with_ecdsa.html#sign_with_ecdsa","reference/management_canister/start_canister.html#start_canister","reference/management_canister/stop_canister.html#stop_canister","reference/management_canister/uninstall_code.html#uninstall_code","reference/management_canister/update_settings.html#update_settings","reference/plugins.html#plugins","reference/plugins.html#local-plugin","reference/plugins.html#npm-plugin","reference/stable_memory/stable_memory.html#stable-memory","reference/stable_memory/stable_structures.html#stable-structures","reference/stable_memory/stable_bytes.html#stable-bytes","reference/stable_memory/stable_grow.html#stable-grow","reference/stable_memory/stable_read.html#stable-read","reference/stable_memory/stable_size.html#stable-size","reference/stable_memory/stable_write.html#stable-write","reference/stable_memory/stable64_grow.html#stable64-grow","reference/stable_memory/stable64_read.html#stable64-read","reference/stable_memory/stable64_size.html#stable64-size","reference/stable_memory/stable64_write.html#stable64-write","reference/timers/timers.html#timers","reference/timers/clear_timer.html#clear-timer","reference/timers/set_timer.html#set-timer","reference/timers/set_timer_interval.html#set-timer-interval","reference/wasm_binary_optimization.html#wasm-binary-optimization"],"index":{"documentStore":{"docInfo":{"0":{"body":155,"breadcrumbs":6,"title":3},"1":{"body":48,"breadcrumbs":2,"title":1},"10":{"body":75,"breadcrumbs":4,"title":3},"100":{"body":32,"breadcrumbs":8,"title":2},"101":{"body":29,"breadcrumbs":8,"title":2},"102":{"body":163,"breadcrumbs":6,"title":1},"103":{"body":83,"breadcrumbs":6,"title":1},"104":{"body":0,"breadcrumbs":6,"title":1},"105":{"body":7,"breadcrumbs":8,"title":3},"106":{"body":36,"breadcrumbs":7,"title":2},"107":{"body":12,"breadcrumbs":8,"title":3},"108":{"body":27,"breadcrumbs":9,"title":4},"109":{"body":17,"breadcrumbs":6,"title":1},"11":{"body":63,"breadcrumbs":5,"title":3},"110":{"body":17,"breadcrumbs":9,"title":4},"111":{"body":19,"breadcrumbs":6,"title":1},"112":{"body":15,"breadcrumbs":7,"title":1},"113":{"body":26,"breadcrumbs":7,"title":1},"114":{"body":27,"breadcrumbs":8,"title":2},"115":{"body":30,"breadcrumbs":7,"title":1},"116":{"body":58,"breadcrumbs":9,"title":2},"117":{"body":17,"breadcrumbs":11,"title":2},"118":{"body":34,"breadcrumbs":13,"title":3},"119":{"body":36,"breadcrumbs":15,"title":4},"12":{"body":42,"breadcrumbs":3,"title":2},"120":{"body":68,"breadcrumbs":9,"title":1},"121":{"body":39,"breadcrumbs":11,"title":2},"122":{"body":38,"breadcrumbs":13,"title":3},"123":{"body":47,"breadcrumbs":11,"title":2},"124":{"body":42,"breadcrumbs":13,"title":3},"125":{"body":26,"breadcrumbs":9,"title":1},"126":{"body":46,"breadcrumbs":11,"title":2},"127":{"body":24,"breadcrumbs":13,"title":3},"128":{"body":24,"breadcrumbs":15,"title":4},"129":{"body":24,"breadcrumbs":13,"title":3},"13":{"body":74,"breadcrumbs":2,"title":1},"130":{"body":24,"breadcrumbs":15,"title":4},"131":{"body":33,"breadcrumbs":13,"title":3},"132":{"body":33,"breadcrumbs":15,"title":4},"133":{"body":25,"breadcrumbs":9,"title":1},"134":{"body":28,"breadcrumbs":11,"title":2},"135":{"body":24,"breadcrumbs":13,"title":3},"136":{"body":26,"breadcrumbs":9,"title":1},"137":{"body":25,"breadcrumbs":11,"title":2},"138":{"body":25,"breadcrumbs":11,"title":2},"139":{"body":33,"breadcrumbs":9,"title":1},"14":{"body":47,"breadcrumbs":3,"title":2},"140":{"body":62,"breadcrumbs":11,"title":2},"141":{"body":25,"breadcrumbs":7,"title":1},"142":{"body":78,"breadcrumbs":8,"title":1},"143":{"body":54,"breadcrumbs":8,"title":1},"144":{"body":90,"breadcrumbs":8,"title":1},"145":{"body":56,"breadcrumbs":8,"title":1},"146":{"body":56,"breadcrumbs":8,"title":1},"147":{"body":120,"breadcrumbs":8,"title":1},"148":{"body":56,"breadcrumbs":8,"title":1},"149":{"body":56,"breadcrumbs":8,"title":1},"15":{"body":44,"breadcrumbs":2,"title":1},"150":{"body":56,"breadcrumbs":8,"title":1},"151":{"body":56,"breadcrumbs":8,"title":1},"152":{"body":56,"breadcrumbs":8,"title":1},"153":{"body":56,"breadcrumbs":8,"title":1},"154":{"body":56,"breadcrumbs":8,"title":1},"155":{"body":56,"breadcrumbs":8,"title":1},"156":{"body":56,"breadcrumbs":8,"title":1},"157":{"body":56,"breadcrumbs":8,"title":1},"158":{"body":55,"breadcrumbs":8,"title":1},"159":{"body":79,"breadcrumbs":8,"title":1},"16":{"body":60,"breadcrumbs":2,"title":1},"160":{"body":69,"breadcrumbs":8,"title":1},"161":{"body":95,"breadcrumbs":8,"title":1},"162":{"body":54,"breadcrumbs":8,"title":1},"163":{"body":100,"breadcrumbs":8,"title":1},"164":{"body":57,"breadcrumbs":8,"title":1},"165":{"body":103,"breadcrumbs":8,"title":1},"166":{"body":90,"breadcrumbs":8,"title":1},"167":{"body":26,"breadcrumbs":9,"title":2},"168":{"body":27,"breadcrumbs":11,"title":2},"169":{"body":30,"breadcrumbs":11,"title":2},"17":{"body":146,"breadcrumbs":2,"title":1},"170":{"body":25,"breadcrumbs":11,"title":2},"171":{"body":25,"breadcrumbs":13,"title":3},"172":{"body":23,"breadcrumbs":11,"title":2},"173":{"body":26,"breadcrumbs":11,"title":2},"174":{"body":35,"breadcrumbs":11,"title":2},"175":{"body":27,"breadcrumbs":11,"title":2},"176":{"body":27,"breadcrumbs":9,"title":1},"177":{"body":19,"breadcrumbs":11,"title":2},"178":{"body":29,"breadcrumbs":9,"title":1},"179":{"body":26,"breadcrumbs":13,"title":3},"18":{"body":43,"breadcrumbs":2,"title":1},"180":{"body":23,"breadcrumbs":9,"title":1},"181":{"body":35,"breadcrumbs":9,"title":1},"182":{"body":12,"breadcrumbs":9,"title":2},"183":{"body":21,"breadcrumbs":9,"title":1},"184":{"body":105,"breadcrumbs":9,"title":1},"185":{"body":105,"breadcrumbs":9,"title":1},"186":{"body":26,"breadcrumbs":9,"title":1},"187":{"body":46,"breadcrumbs":11,"title":2},"188":{"body":19,"breadcrumbs":11,"title":2},"189":{"body":19,"breadcrumbs":11,"title":2},"19":{"body":180,"breadcrumbs":3,"title":2},"190":{"body":17,"breadcrumbs":9,"title":1},"191":{"body":25,"breadcrumbs":9,"title":1},"192":{"body":25,"breadcrumbs":9,"title":2},"193":{"body":40,"breadcrumbs":8,"title":1},"194":{"body":27,"breadcrumbs":8,"title":1},"195":{"body":20,"breadcrumbs":9,"title":2},"196":{"body":39,"breadcrumbs":9,"title":1},"197":{"body":35,"breadcrumbs":9,"title":1},"198":{"body":39,"breadcrumbs":9,"title":1},"199":{"body":44,"breadcrumbs":9,"title":1},"2":{"body":93,"breadcrumbs":2,"title":1},"20":{"body":221,"breadcrumbs":3,"title":2},"200":{"body":29,"breadcrumbs":9,"title":1},"201":{"body":30,"breadcrumbs":9,"title":1},"202":{"body":30,"breadcrumbs":9,"title":1},"203":{"body":32,"breadcrumbs":9,"title":1},"204":{"body":50,"breadcrumbs":9,"title":1},"205":{"body":56,"breadcrumbs":9,"title":1},"206":{"body":43,"breadcrumbs":9,"title":1},"207":{"body":31,"breadcrumbs":9,"title":1},"208":{"body":35,"breadcrumbs":9,"title":1},"209":{"body":27,"breadcrumbs":9,"title":1},"21":{"body":4,"breadcrumbs":2,"title":1},"210":{"body":57,"breadcrumbs":9,"title":1},"211":{"body":30,"breadcrumbs":9,"title":1},"212":{"body":30,"breadcrumbs":9,"title":1},"213":{"body":30,"breadcrumbs":9,"title":1},"214":{"body":40,"breadcrumbs":9,"title":1},"215":{"body":40,"breadcrumbs":7,"title":1},"216":{"body":9,"breadcrumbs":8,"title":2},"217":{"body":12,"breadcrumbs":8,"title":2},"218":{"body":20,"breadcrumbs":9,"title":2},"219":{"body":98,"breadcrumbs":11,"title":2},"22":{"body":91,"breadcrumbs":3,"title":2},"220":{"body":19,"breadcrumbs":11,"title":2},"221":{"body":20,"breadcrumbs":11,"title":2},"222":{"body":24,"breadcrumbs":11,"title":2},"223":{"body":19,"breadcrumbs":11,"title":2},"224":{"body":24,"breadcrumbs":11,"title":2},"225":{"body":20,"breadcrumbs":11,"title":2},"226":{"body":24,"breadcrumbs":11,"title":2},"227":{"body":19,"breadcrumbs":11,"title":2},"228":{"body":24,"breadcrumbs":11,"title":2},"229":{"body":7,"breadcrumbs":7,"title":1},"23":{"body":179,"breadcrumbs":3,"title":2},"230":{"body":20,"breadcrumbs":10,"title":2},"231":{"body":42,"breadcrumbs":10,"title":2},"232":{"body":44,"breadcrumbs":12,"title":3},"233":{"body":94,"breadcrumbs":11,"title":3},"24":{"body":42,"breadcrumbs":2,"title":1},"25":{"body":19,"breadcrumbs":6,"title":5},"26":{"body":17,"breadcrumbs":6,"title":5},"27":{"body":4,"breadcrumbs":3,"title":2},"28":{"body":42,"breadcrumbs":3,"title":2},"29":{"body":28,"breadcrumbs":2,"title":1},"3":{"body":74,"breadcrumbs":2,"title":1},"30":{"body":14,"breadcrumbs":3,"title":2},"31":{"body":99,"breadcrumbs":4,"title":3},"32":{"body":340,"breadcrumbs":3,"title":2},"33":{"body":54,"breadcrumbs":5,"title":4},"34":{"body":74,"breadcrumbs":3,"title":2},"35":{"body":5,"breadcrumbs":2,"title":1},"36":{"body":106,"breadcrumbs":3,"title":1},"37":{"body":13,"breadcrumbs":5,"title":2},"38":{"body":12,"breadcrumbs":4,"title":1},"39":{"body":26,"breadcrumbs":4,"title":1},"4":{"body":26,"breadcrumbs":2,"title":1},"40":{"body":3,"breadcrumbs":4,"title":1},"41":{"body":11,"breadcrumbs":4,"title":1},"42":{"body":3,"breadcrumbs":4,"title":1},"43":{"body":3,"breadcrumbs":4,"title":1},"44":{"body":3,"breadcrumbs":4,"title":1},"45":{"body":3,"breadcrumbs":4,"title":1},"46":{"body":3,"breadcrumbs":4,"title":1},"47":{"body":3,"breadcrumbs":4,"title":1},"48":{"body":15,"breadcrumbs":4,"title":1},"49":{"body":9,"breadcrumbs":4,"title":1},"5":{"body":42,"breadcrumbs":2,"title":1},"50":{"body":13,"breadcrumbs":4,"title":1},"51":{"body":19,"breadcrumbs":6,"title":3},"52":{"body":174,"breadcrumbs":5,"title":2},"53":{"body":66,"breadcrumbs":8,"title":4},"54":{"body":24,"breadcrumbs":8,"title":2},"55":{"body":31,"breadcrumbs":7,"title":1},"56":{"body":20,"breadcrumbs":8,"title":2},"57":{"body":21,"breadcrumbs":8,"title":2},"58":{"body":866,"breadcrumbs":7,"title":1},"59":{"body":361,"breadcrumbs":7,"title":1},"6":{"body":73,"breadcrumbs":4,"title":3},"60":{"body":137,"breadcrumbs":10,"title":3},"61":{"body":104,"breadcrumbs":8,"title":2},"62":{"body":93,"breadcrumbs":6,"title":1},"63":{"body":68,"breadcrumbs":8,"title":2},"64":{"body":80,"breadcrumbs":8,"title":2},"65":{"body":0,"breadcrumbs":8,"title":2},"66":{"body":43,"breadcrumbs":10,"title":4},"67":{"body":271,"breadcrumbs":7,"title":1},"68":{"body":14,"breadcrumbs":7,"title":1},"69":{"body":19,"breadcrumbs":7,"title":1},"7":{"body":27,"breadcrumbs":4,"title":3},"70":{"body":14,"breadcrumbs":8,"title":2},"71":{"body":9,"breadcrumbs":9,"title":3},"72":{"body":36,"breadcrumbs":10,"title":4},"73":{"body":44,"breadcrumbs":10,"title":4},"74":{"body":39,"breadcrumbs":6,"title":1},"75":{"body":65,"breadcrumbs":8,"title":3},"76":{"body":12,"breadcrumbs":8,"title":3},"77":{"body":13,"breadcrumbs":7,"title":2},"78":{"body":59,"breadcrumbs":8,"title":3},"79":{"body":39,"breadcrumbs":8,"title":3},"8":{"body":65,"breadcrumbs":3,"title":2},"80":{"body":21,"breadcrumbs":6,"title":1},"81":{"body":22,"breadcrumbs":7,"title":2},"82":{"body":64,"breadcrumbs":8,"title":3},"83":{"body":51,"breadcrumbs":6,"title":1},"84":{"body":0,"breadcrumbs":8,"title":2},"85":{"body":304,"breadcrumbs":7,"title":1},"86":{"body":0,"breadcrumbs":8,"title":2},"87":{"body":483,"breadcrumbs":7,"title":1},"88":{"body":421,"breadcrumbs":6,"title":1},"89":{"body":0,"breadcrumbs":8,"title":2},"9":{"body":28,"breadcrumbs":3,"title":2},"90":{"body":794,"breadcrumbs":7,"title":1},"91":{"body":0,"breadcrumbs":7,"title":1},"92":{"body":12,"breadcrumbs":8,"title":2},"93":{"body":50,"breadcrumbs":8,"title":2},"94":{"body":25,"breadcrumbs":7,"title":1},"95":{"body":24,"breadcrumbs":7,"title":1},"96":{"body":538,"breadcrumbs":8,"title":2},"97":{"body":3,"breadcrumbs":6,"title":1},"98":{"body":102,"breadcrumbs":8,"title":3},"99":{"body":149,"breadcrumbs":8,"title":3}},"docs":{"0":{"body":"Welcome to The Azle Book! This is a guide for building secure decentralized/replicated servers in TypeScript or JavaScript on ICP . The current replication factor is 13-40 times . Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP The Azle Book is subject to the following license and Azle's License Extension : MIT License Copyright (c) 2024 AZLE token holders (nlhft-2iaaa-aaaae-qaaua-cai) Permission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.","breadcrumbs":"The Azle Book (Beta) » The Azle Book (Beta)","id":"0","title":"The Azle Book (Beta)"},"1":{"body":"Installation Deployment Azle helps you to build secure decentralized/replicated servers in TypeScript or JavaScript on ICP . The current replication factor is 13-40 times . Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP","breadcrumbs":"Get Started » Get Started","id":"1","title":"Get Started"},"10":{"body":"If you run into an error during deployment, try the following: Ensure that you have followed the installation instructions exactly as specified in the Get Started chapter Start the whole deployment process from scratch and look for more error output by doing the following: In your replica terminal: Terminate the replica in your terminal or run dfx stop if your replica is running in the background dfx start --clean --host 127.0.0.1:8000 In your project terminal at the root directory of your project: rm -rf node_modules npm install npx azle clean AZLE_VERBOSE=true dfx deploy If the build process hangs on Waiting for VM ..., see this issue for possible fixes If the problem is still not resolved, reach out with the error output in the Discord channel","breadcrumbs":"Deployment » Common deployment issues","id":"10","title":"Common deployment issues"},"100":{"body":"This chapter is a work in progress. You can access the management canister like this: import { blob, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ randomBytes: update([], blob, async () => { return await ic.call(managementCanister.raw_rand); })\n}); See the management canister reference section for more information.","breadcrumbs":"Old Candid-based Documentation » Management Canister » Management Canister","id":"100","title":"Management Canister"},"101":{"body":"This chapter is a work in progress. import { Canister, init, postUpgrade, preUpgrade } from 'azle'; export default Canister({ init: init([], () => { console.log('runs on first canister install'); }), preUpgrade: preUpgrade(() => { console.log('runs before canister upgrade'); }), postUpgrade: postUpgrade([], () => { console.log('runs after canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Canister Lifecycle » Canister Lifecycle","id":"101","title":"Canister Lifecycle"},"102":{"body":"This chapter is a work in progress. import { blob, bool, Canister, Duration, ic, int8, query, Record, text, TimerId, update, Void\n} from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const StatusReport = Record({ single: bool, inline: int8, capture: text, repeat: int8, singleCrossCanister: blob, repeatCrossCanister: blob\n}); const TimerIds = Record({ single: TimerId, inline: TimerId, capture: TimerId, repeat: TimerId, singleCrossCanister: TimerId, repeatCrossCanister: TimerId\n}); let statusReport: typeof StatusReport = { single: false, inline: 0, capture: '', repeat: 0, singleCrossCanister: Uint8Array.from([]), repeatCrossCanister: Uint8Array.from([])\n}; export default Canister({ clearTimer: update([TimerId], Void, (timerId) => { ic.clearTimer(timerId); console.log(`timer ${timerId} cancelled`); }), setTimers: update([Duration, Duration], TimerIds, (delay, interval) => { const capturedValue = '🚩'; const singleId = ic.setTimer(delay, oneTimeTimerCallback); const inlineId = ic.setTimer(delay, () => { statusReport.inline = 1; console.log('Inline timer called'); }); const captureId = ic.setTimer(delay, () => { statusReport.capture = capturedValue; console.log(`Timer captured value ${capturedValue}`); }); const repeatId = ic.setTimerInterval(interval, () => { statusReport.repeat++; console.log(`Repeating timer. Call ${statusReport.repeat}`); }); const singleCrossCanisterId = ic.setTimer( delay, singleCrossCanisterTimerCallback ); const repeatCrossCanisterId = ic.setTimerInterval( interval, repeatCrossCanisterTimerCallback ); return { single: singleId, inline: inlineId, capture: captureId, repeat: repeatId, singleCrossCanister: singleCrossCanisterId, repeatCrossCanister: repeatCrossCanisterId }; }), statusReport: query([], StatusReport, () => { return statusReport; })\n}); function oneTimeTimerCallback() { statusReport.single = true; console.log('oneTimeTimerCallback called');\n} async function singleCrossCanisterTimerCallback() { console.log('singleCrossCanisterTimerCallback'); statusReport.singleCrossCanister = await ic.call( managementCanister.raw_rand );\n} async function repeatCrossCanisterTimerCallback() { console.log('repeatCrossCanisterTimerCallback'); statusReport.repeatCrossCanister = Uint8Array.from([ ...statusReport.repeatCrossCanister, ...(await ic.call(managementCanister.raw_rand)) ]);\n}","breadcrumbs":"Old Candid-based Documentation » Timers » Timers","id":"102","title":"Timers"},"103":{"body":"This chapter is a work in progress. Cycles are essentially units of computational resources such as bandwidth, memory, and CPU instructions. Costs are generally metered on the Internet Computer (IC) by cycles. You can see a breakdown of all cycle costs here . Currently queries do not have any cycle costs. Most important to you will probably be update costs. TODO break down some cycle scenarios maybe? Perhaps we should show some of our analyses for different types of applications. Maybe show how to send and receive cycles, exactly how to do it. Show all of the APIs for sending or receiving cycles? Perhaps we don't need to do that here, since each API will show this information. Maybe here we just show the basic concept of cycles, link to the main cycles cost page, and show a few examples of how to break down these costs or estimate these costs.","breadcrumbs":"Old Candid-based Documentation » Cycles » Cycles","id":"103","title":"Cycles"},"104":{"body":"","breadcrumbs":"Old Candid-based Documentation » Caveats » Caveats","id":"104","title":"Caveats"},"105":{"body":"Azle is a beta project. See the disclaimer for more information.","breadcrumbs":"Old Candid-based Documentation » Caveats » Unknown security vulnerabilities","id":"105","title":"Unknown security vulnerabilities"},"106":{"body":"Some npm packages will work and some will not work. It is our long-term goal to support as many npm packages as possible. There are various reasons why an npm package may not currently work, including the small Wasm binary limit of the IC and unimplemented web or Node.js APIs. Feel free to open issues if your npm package does not work in Azle.","breadcrumbs":"Old Candid-based Documentation » Caveats » npm packages","id":"106","title":"npm packages"},"107":{"body":"You may encounter various missing JavaScript environment APIs, such as those you would expect in the web or Node.js environments.","breadcrumbs":"Old Candid-based Documentation » Caveats » JavaScript environment APIs","id":"107","title":"JavaScript environment APIs"},"108":{"body":"Candid encoding/decoding is currently very unoptimized. This will most likely lead to a ~1-2 million extra fixed instruction cost for all calls. Be careful using CandidType Serializable objects with StableBTreeMap, or using any other API or data structure that engages in Candid encoding/decoding.","breadcrumbs":"Old Candid-based Documentation » Caveats » High Candid encoding/decoding costs","id":"108","title":"High Candid encoding/decoding costs"},"109":{"body":"Though promises are implemented, the underlying queue that handles asynchronous operations is very simple. This queue will not behave exactly as queues from the major JS engines.","breadcrumbs":"Old Candid-based Documentation » Caveats » Promises","id":"109","title":"Promises"},"11":{"body":"Your project is just a directory with a dfx.json file that points to your .ts or .js entrypoint. Here's what your directory structure might look like: hello_world/\n|\n├── dfx.json\n|\n└── src/ └── api.ts And the corresponding dfx.json file: { \"canisters\": { \"api\": { \"type\": \"custom\", \"main\": \"src/api.ts\", \"candid\": \"src/api.did\", \"candid_gen\": \"http\", \"build\": \"npx azle api\", \"wasm\": \".azle/api/api.wasm\", \"gzip\": true, \"metadata\": [ { \"name\": \"candid:service\", \"path\": \"src/api.did\" }, { \"name\": \"cdk:name\", \"content\": \"azle\" } ] } }\n} Once you have created this directory structure you can deploy to mainnet or a locally running replica by running the dfx deploy command in the same directory as your dfx.json file.","breadcrumbs":"Project Structure » Project Structure TL;DR","id":"11","title":"Project Structure TL;DR"},"110":{"body":"It seems to be only some float64 values cannot be successfully stored and retrieved with a StableBTreeMap using stableJson because of this bug with JSON.parse: https://github.com/bellard/quickjs/issues/206 This will also affect stand-alone usage of JSON.parse.","breadcrumbs":"Old Candid-based Documentation » Caveats » JSON.parse and StableBTreeMap float64 values","id":"110","title":"JSON.parse and StableBTreeMap float64 values"},"111":{"body":"Bitcoin Call APIs Candid Canister APIs Canister Methods Environment Variables Management Canister Plugins Stable Memory Timers Wasm Binary Optimization","breadcrumbs":"Old Candid-based Documentation » Reference » Reference","id":"111","title":"Reference"},"112":{"body":"The Internet Computer (IC) interacts with the Bitcoin blockchain through the use of tECDSA, the Bitcoin integration, and a ledger canister called ckBTC.","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » Bitcoin","id":"112","title":"Bitcoin"},"113":{"body":"tECDSA on the IC allows canisters to request access to threshold ECDSA keypairs on the tECDSA subnet. This functionality is exposed through two management canister methods: ecdsa_public_key sign_with_ecdsa The following are examples using tECDSA: basic_bitcoin threshold_ecdsa","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » tECDSA","id":"113","title":"tECDSA"},"114":{"body":"The Bitcoin integration allows canisters on the IC to interact directly with the Bitcoin network. This functionality is exposed through the following management canister methods: bitcoin_get_balance bitcoin_get_current_fee_percentiles bitcoin_get_utxos bitcoin_send_transaction The following are examples using the Bitcoin integration: basic_bitcoin bitcoin","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » Bitcoin integration","id":"114","title":"Bitcoin integration"},"115":{"body":"ckBTC is a ledger canister deployed to the IC. It follows the ICRC standard, and can be accessed easily from an Azle canister using azle/canisters/ICRC if you only need the ICRC methods. For access to the full ledger methods you will need to create your own Service for now. The following are examples using ckBTC: ckBTC","breadcrumbs":"Old Candid-based Documentation » Reference » Bitcoin » ckBTC","id":"115","title":"ckBTC"},"116":{"body":"accept message arg data raw arg data raw size call call raw call raw 128 call with payment call with payment 128 caller method name msg cycles accept msg cycles accept 128 msg cycles available msg cycles available 128 msg cycles refunded msg cycles refunded 128 notify notify raw notify with payment 128 reject reject code reject message reply reply raw","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » Call APIs","id":"116","title":"Call APIs"},"117":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { Canister, ic, inspectMessage } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { ic.acceptMessage(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » accept message » accept message","id":"117","title":"accept message"},"118":{"body":"This section is a work in progress. Examples: ic_api import { blob, bool, Canister, ic, int8, query, text } from 'azle'; export default Canister({ // returns the argument data as bytes. argDataRaw: query( [blob, int8, bool, text], blob, (arg1, arg2, arg3, arg4) => { return ic.argDataRaw(); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » arg data raw » arg data raw","id":"118","title":"arg data raw"},"119":{"body":"This section is a work in progress. Examples: ic_api import { blob, bool, Canister, ic, int8, nat, query, text } from 'azle'; export default Canister({ // returns the length of the argument data in bytes argDataRawSize: query( [blob, int8, bool, text], nat, (arg1, arg2, arg3, arg4) => { return ic.argDataRawSize(); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » arg data raw size » arg data raw size","id":"119","title":"arg data raw size"},"12":{"body":"Just write Node.js servers like this: import { createServer } from 'http'; const server = createServer((req, res) => { res.write('Hello World!'); res.end();\n}); server.listen(); or write Express servers like this: import express, { Request } from 'express'; let db = { hello: ''\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.json(db);\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.json(db);\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » Servers TL;DR","id":"12","title":"Servers TL;DR"},"120":{"body":"This section is a work in progress. Examples: async_await bitcoin composite_queries cross_canister_calls cycles ethereum_json_rpc func_types heartbeat inline_types ledger_canister management_canister outgoing_http_requests threshold_ecdsa rejections timers tuple_types whoami import { Canister, ic, init, nat64, Principal, update } from 'azle'; const TokenCanister = Canister({ transfer: update([Principal, nat64], nat64)\n}); let tokenCanister: typeof TokenCanister; export default Canister({ init: init([], setup), postDeploy: init([], setup), payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); function setup() { tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai') );\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call » call","id":"120","title":"call"},"121":{"body":"This section is a work in progress. Examples: call_raw outgoing_http_requests import { Canister, ic, nat64, Principal, text, update } from 'azle'; export default Canister({ executeCallRaw: update( [Principal, text, text, nat64], text, async (canisterId, method, candidArgs, payment) => { const candidBytes = await ic.callRaw( canisterId, method, ic.candidEncode(candidArgs), payment ); return ic.candidDecode(candidBytes); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call raw » call raw","id":"121","title":"call raw"},"122":{"body":"This section is a work in progress. Examples: call_raw import { Canister, ic, nat, Principal, text, update } from 'azle'; export default Canister({ executeCallRaw128: update( [Principal, text, text, nat], text, async (canisterId, method, candidArgs, payment) => { const candidBytes = await ic.callRaw128( canisterId, method, ic.candidEncode(candidArgs), payment ); return ic.candidDecode(candidBytes); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call raw 128 » call raw 128","id":"122","title":"call raw 128"},"123":{"body":"This section is a work in progress. Examples: bitcoin cycles ethereum_json_rpc management_canister outgoing_http_requests threshold_ecdsa import { blob, Canister, ic, Principal, update, Void } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], Void, async (canisterId, wasmModule) => { return await ic.call(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call with payment » call with payment","id":"123","title":"call with payment"},"124":{"body":"This section is a work in progress. Examples: cycles import { blob, Canister, ic, Principal, update, Void } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], Void, async (canisterId, wasmModule) => { return await ic.call128(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » call with payment 128 » call with payment 128","id":"124","title":"call with payment 128"},"125":{"body":"This section is a work in progress. Examples: ic_api threshold_ecdsa whoami import { Canister, ic, Principal, update } from 'azle'; export default Canister({ // returns the principal of the identity that called this function caller: update([], Principal, () => { return ic.caller(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » caller » caller","id":"125","title":"caller"},"126":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { bool, Canister, ic, inspectMessage, update } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { console.log('inspectMessage called'); if (ic.methodName() === 'accessible') { ic.acceptMessage(); return; } if (ic.methodName() === 'inaccessible') { return; } throw `Method \"${ic.methodName()}\" not allowed`; }), accessible: update([], bool, () => { return true; }), inaccessible: update([], bool, () => { return false; }), alsoInaccessible: update([], bool, () => { return false; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » method name » method name","id":"126","title":"method name"},"127":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles: update([], nat64, () => { return ic.msgCyclesAccept(ic.msgCyclesAvailable() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles accept » msg cycles accept","id":"127","title":"msg cycles accept"},"128":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles128: update([], nat64, () => { return ic.msgCyclesAccept128(ic.msgCyclesAvailable128() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles accept 128 » msg cycles accept 128","id":"128","title":"msg cycles accept 128"},"129":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles: update([], nat64, () => { return ic.msgCyclesAccept(ic.msgCyclesAvailable() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles available » msg cycles available","id":"129","title":"msg cycles available"},"13":{"body":"Node.js http.server Express Server Limitations Azle supports building HTTP servers on ICP using the Node.js http.Server class as the foundation. These servers can serve static files or act as API backends, or both. Azle currently has good but not comprehensive support for Node.js http.Server and Express . Support for other libraries like Nest are works-in-progress. Once deployed you can access your server at a URL like this locally http://bkyz2-fmaaa-aaaaa-qaaaq-cai.localhost:8000 or like this on mainnet https://bkyz2-fmaaa-aaaaa-qaaaq-cai.raw.icp0.io. You can use any HTTP client to interact with your server, such as curl, fetch, or a web browser. See the Interacting with your canister section of the deployment chapter for help in constructing your canister URL.","breadcrumbs":"Servers » Servers","id":"13","title":"Servers"},"130":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle'; export default Canister({ // Moves all transferred cycles to the canister receiveCycles128: update([], nat64, () => { return ic.msgCyclesAccept128(ic.msgCyclesAvailable128() / 2n); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles available 128 » msg cycles available 128","id":"130","title":"msg cycles available 128"},"131":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ // Reports the number of cycles returned from the Cycles canister sendCycles: update([], nat64, async () => { await ic.call(otherCanister.receiveCycles, { cycles: 1_000_000n }); return ic.msgCyclesRefunded(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles refunded » msg cycles refunded","id":"131","title":"msg cycles refunded"},"132":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, nat64, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ // Reports the number of cycles returned from the Cycles canister sendCycles128: update([], nat64, async () => { await ic.call128(otherCanister.receiveCycles128, { cycles: 1_000_000n }); return ic.msgCyclesRefunded128(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » msg cycles refunded 128 » msg cycles refunded 128","id":"132","title":"msg cycles refunded 128"},"133":{"body":"This section is a work in progress. Examples: cross_canister_calls cycles import { Canister, ic, update, Void } from 'azle';\nimport { otherCanister } from './otherCanister'; export default Canister({ sendNotification: update([], Void, () => { return ic.notify(otherCanister.receiveNotification, { args: ['This is the notification'] }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify » notify","id":"133","title":"notify"},"134":{"body":"This section is a work in progress. Examples: notify_raw import { Canister, ic, Principal, update, Void } from 'azle'; export default Canister({ sendNotification: update([], Void, () => { return ic.notifyRaw( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai'), 'receiveNotification', Uint8Array.from(ic.candidEncode('()')), 0n ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify raw » notify raw","id":"134","title":"notify raw"},"135":{"body":"This section is a work in progress. Examples: cycles import { Canister, ic, update, Void } from 'azle';\nimport { otherCanister } from './otherCanister'; export default Canister({ sendCycles128Notify: update([], Void, () => { return ic.notify(otherCanister.receiveCycles128, { cycles: 1_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » notify with payment 128 » notify with payment 128","id":"135","title":"notify with payment 128"},"136":{"body":"This section is a work in progress. Examples: ic_api manual_reply rejections import { Canister, empty, ic, Manual, query, text } from 'azle'; export default Canister({ reject: query( [text], Manual(empty), (message) => { ic.reject(message); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject » reject","id":"136","title":"reject"},"137":{"body":"This section is a work in progress. Examples: rejections import { Canister, ic, RejectionCode, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ getRejectionCodeDestinationInvalid: update([], RejectionCode, async () => { await ic.call(otherCanister.method); return ic.rejectCode(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject code » reject code","id":"137","title":"reject code"},"138":{"body":"This section is a work in progress. Examples: rejections import { Canister, ic, text, update } from 'azle';\nimport { otherCanister } from './other_canister'; export default Canister({ getRejectionMessage: update([], text, async () => { await ic.call(otherCanister.method); return ic.rejectMessage(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reject message » reject message","id":"138","title":"reject message"},"139":{"body":"This section is a work in progress. Examples: composite_queries manual_reply import { blob, Canister, ic, Manual, update } from 'azle'; export default Canister({ updateBlob: update( [], Manual(blob), () => { ic.reply( new Uint8Array([83, 117, 114, 112, 114, 105, 115, 101, 33]), blob ); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reply » reply","id":"139","title":"reply"},"14":{"body":"Azle supports instances of Node.js http.Server . listen() must be called on the server instance for Azle to use it to handle HTTP requests. Azle does not respect a port being passed into listen(). The port is set by the ICP replica (e.g. dfx start --host 127.0.0.1:8000), not by Azle. Here's an example of a very simple Node.js http.Server : import { createServer } from 'http'; const server = createServer((req, res) => { res.write('Hello World!'); res.end();\n}); server.listen();","breadcrumbs":"Servers » Node.js http.server","id":"14","title":"Node.js http.server"},"140":{"body":"This section is a work in progress. Examples: manual_reply outgoing_http_requests import { blob, bool, Canister, ic, int, Manual, Null, Record, text, update, Variant\n} from 'azle'; const Options = Variant({ High: Null, Medium: Null, Low: Null\n}); export default Canister({ replyRaw: update( [], Manual( Record({ int: int, text: text, bool: bool, blob: blob, variant: Options }) ), () => { ic.replyRaw( ic.candidEncode( '(record { \"int\" = 42; \"text\" = \"text\"; \"bool\" = true; \"blob\" = blob \"Surprise!\"; \"variant\" = variant { Medium } })' ) ); }, { manual: true } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Call APIs » reply raw » reply raw","id":"140","title":"reply raw"},"141":{"body":"blob bool empty float32 float64 func int int8 int16 int32 int64 nat nat8 nat16 nat32 nat64 null opt principal record reserved service text variant vec","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » Candid","id":"141","title":"Candid"},"142":{"body":"The CandidType object blob corresponds to the Candid type blob , is inferred to be a TypeScript Uint8Array and will be decoded into a JavaScript Uint8Array at runtime. TypeScript or JavaScript: import { blob, Canister, query } from 'azle'; export default Canister({ getBlob: query([], blob, () => { return Uint8Array.from([68, 73, 68, 76, 0, 0]); }), printBlob: query([blob], blob, (blob) => { console.log(typeof blob); return blob; })\n}); Candid: service : () -> { getBlob : () -> (vec nat8) query; printBlob : (vec nat8) -> (vec nat8) query;\n} dfx: dfx canister call candid_canister printBlob '(vec { 68; 73; 68; 76; 0; 0; })'\n(blob \"DIDL\\00\\00\") dfx canister call candid_canister printBlob '(blob \"DIDL\\00\\00\")'\n(blob \"DIDL\\00\\00\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » blob » blob","id":"142","title":"blob"},"143":{"body":"The CandidType object bool corresponds to the Candid type bool , is inferred to be a TypeScript boolean, and will be decoded into a JavaScript Boolean at runtime. TypeScript or JavaScript: import { bool, Canister, query } from 'azle'; export default Canister({ getBool: query([], bool, () => { return true; }), printBool: query([bool], bool, (bool) => { console.log(typeof bool); return bool; })\n}); Candid: service : () -> { getBool : () -> (bool) query; printBool : (bool) -> (bool) query;\n} dfx: dfx canister call candid_canister printBool '(true)'\n(true)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » bool » bool","id":"143","title":"bool"},"144":{"body":"The CandidType object empty corresponds to the Candid type empty , is inferred to be a TypeScript never, and has no JavaScript value at runtime. TypeScript or JavaScript: import { Canister, empty, query } from 'azle'; export default Canister({ getEmpty: query([], empty, () => { throw 'Anything you want'; }), // Note: It is impossible to call this function because it requires an argument // but there is no way to pass an \"empty\" value as an argument. printEmpty: query([empty], empty, (empty) => { console.log(typeof empty); throw 'Anything you want'; })\n}); Candid: service : () -> { getEmpty : () -> (empty) query; printEmpty : (empty) -> (empty) query;\n} dfx: dfx canister call candid_canister printEmpty '(\"You can put anything here\")'\nError: Failed to create argument blob.\nCaused by: Failed to create argument blob. Invalid data: Unable to serialize Candid values: type mismatch: \"You can put anything here\" cannot be of type empty","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » empty » empty","id":"144","title":"empty"},"145":{"body":"The CandidType object float32 corresponds to the Candid type float32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, float32, query } from 'azle'; export default Canister({ getFloat32: query([], float32, () => { return Math.PI; }), printFloat32: query([float32], float32, (float32) => { console.log(typeof float32); return float32; })\n}); Candid: service : () -> { getFloat32 : () -> (float32) query; printFloat32 : (float32) -> (float32) query;\n} dfx: dfx canister call candid_canister printFloat32 '(3.1415927 : float32)'\n(3.1415927 : float32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » float32 » float32","id":"145","title":"float32"},"146":{"body":"The CandidType object float64 corresponds to the Candid type float64 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, float64, query } from 'azle'; export default Canister({ getFloat64: query([], float64, () => { return Math.E; }), printFloat64: query([float64], float64, (float64) => { console.log(typeof float64); return float64; })\n}); Candid: service : () -> { getFloat64 : () -> (float64) query; printFloat64 : (float64) -> (float64) query;\n} dfx: dfx canister call candid_canister printFloat64 '(2.718281828459045 : float64)'\n(2.718281828459045 : float64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » float64 » float64","id":"146","title":"float64"},"147":{"body":"Values created by the CandidType function Func correspond to the Candid type func , are inferred to be TypeScript [Principal, string] tuples, and will be decoded into JavaScript array with two elements at runtime. The first element is an @dfinity/principal and the second is a JavaScript string . The @dfinity/principal represents the principal of the canister/service where the function exists, and the string represents the function's name. A func acts as a callback, allowing the func receiver to know which canister instance and method must be used to call back. TypeScript or JavaScript: import { Canister, Func, Principal, query, text } from 'azle'; const BasicFunc = Func([text], text, 'query'); export default Canister({ getBasicFunc: query([], BasicFunc, () => { return [ Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'), 'getBasicFunc' ]; }), printBasicFunc: query([BasicFunc], BasicFunc, (basicFunc) => { console.log(typeof basicFunc); return basicFunc; })\n}); Candid: service : () -> { getBasicFunc : () -> (func (text) -> (text) query) query; printBasicFunc : (func (text) -> (text) query) -> ( func (text) -> (text) query, ) query;\n} dfx: dfx canister call candid_canister printBasicFunc '(func \"r7inp-6aaaa-aaaaa-aaabq-cai\".getBasicFunc)'\n(func \"r7inp-6aaaa-aaaaa-aaabq-cai\".getBasicFunc)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » func » func","id":"147","title":"func"},"148":{"body":"The CandidType object int corresponds to the Candid type int , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, int, query } from 'azle'; export default Canister({ getInt: query([], int, () => { return 170_141_183_460_469_231_731_687_303_715_884_105_727n; }), printInt: query([int], int, (int) => { console.log(typeof int); return int; })\n}); Candid: service : () -> { getInt : () -> (int) query; printInt : (int) -> (int) query;\n} dfx: dfx canister call candid_canister printInt '(170_141_183_460_469_231_731_687_303_715_884_105_727 : int)'\n(170_141_183_460_469_231_731_687_303_715_884_105_727 : int)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int » int","id":"148","title":"int"},"149":{"body":"The CandidType object int8 corresponds to the Candid type int8 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int8, query } from 'azle'; export default Canister({ getInt8: query([], int8, () => { return 127; }), printInt8: query([int8], int8, (int8) => { console.log(typeof int8); return int8; })\n}); Candid: service : () -> { getInt8 : () -> (int8) query; printInt8 : (int8) -> (int8) query;\n} dfx: dfx canister call candid_canister printInt8 '(127 : int8)'\n(127 : int8)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int8 » int8","id":"149","title":"int8"},"15":{"body":"Express is one of the most popular backend JavaScript web frameworks, and it's the recommended way to get started building servers in Azle. Here's the main code from the hello_world example : import express, { Request } from 'express'; let db = { hello: ''\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.json(db);\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.json(db);\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » Express","id":"15","title":"Express"},"150":{"body":"The CandidType object int16 corresponds to the Candid type int16 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int16, query } from 'azle'; export default Canister({ getInt16: query([], int16, () => { return 32_767; }), printInt16: query([int16], int16, (int16) => { console.log(typeof int16); return int16; })\n}); Candid: service : () -> { getInt16 : () -> (int16) query; printInt16 : (int16) -> (int16) query;\n} dfx: dfx canister call candid_canister printInt16 '(32_767 : int16)'\n(32_767 : int16)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int16 » int16","id":"150","title":"int16"},"151":{"body":"The CandidType object int32 corresponds to the Candid type int32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, int32, query } from 'azle'; export default Canister({ getInt32: query([], int32, () => { return 2_147_483_647; }), printInt32: query([int32], int32, (int32) => { console.log(typeof int32); return int32; })\n}); Candid: service : () -> { getInt32 : () -> (int32) query; printInt32 : (int32) -> (int32) query;\n} dfx: dfx canister call candid_canister printInt32 '(2_147_483_647 : int32)'\n(2_147_483_647 : int32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int32 » int32","id":"151","title":"int32"},"152":{"body":"The CandidType object int64 corresponds to the Candid type int64 , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, int64, query } from 'azle'; export default Canister({ getInt64: query([], int64, () => { return 9_223_372_036_854_775_807n; }), printInt64: query([int64], int64, (int64) => { console.log(typeof int64); return int64; })\n}); Candid: service : () -> { getInt64 : () -> (int64) query; printInt64 : (int64) -> (int64) query;\n} dfx: dfx canister call candid_canister printInt64 '(9_223_372_036_854_775_807 : int64)'\n(9_223_372_036_854_775_807 : int64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » int64 » int64","id":"152","title":"int64"},"153":{"body":"The CandidType object nat corresponds to the Candid type nat , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, nat, query } from 'azle'; export default Canister({ getNat: query([], nat, () => { return 340_282_366_920_938_463_463_374_607_431_768_211_455n; }), printNat: query([nat], nat, (nat) => { console.log(typeof nat); return nat; })\n}); Candid: service : () -> { getNat : () -> (nat) query; printNat : (nat) -> (nat) query;\n} dfx: dfx canister call candid_canister printNat '(340_282_366_920_938_463_463_374_607_431_768_211_455 : nat)'\n(340_282_366_920_938_463_463_374_607_431_768_211_455 : nat)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat » nat","id":"153","title":"nat"},"154":{"body":"The CandidType object nat8 corresponds to the Candid type nat8 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat8, query } from 'azle'; export default Canister({ getNat8: query([], nat8, () => { return 255; }), printNat8: query([nat8], nat8, (nat8) => { console.log(typeof nat8); return nat8; })\n}); Candid: service : () -> { getNat8 : () -> (nat8) query; printNat8 : (nat8) -> (nat8) query;\n} dfx: dfx canister call candid_canister printNat8 '(255 : nat8)'\n(255 : nat8)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat8 » nat8","id":"154","title":"nat8"},"155":{"body":"The CandidType object nat16 corresponds to the Candid type nat16 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat16, query } from 'azle'; export default Canister({ getNat16: query([], nat16, () => { return 65_535; }), printNat16: query([nat16], nat16, (nat16) => { console.log(typeof nat16); return nat16; })\n}); Candid: service : () -> { getNat16 : () -> (nat16) query; printNat16 : (nat16) -> (nat16) query;\n} dfx: dfx canister call candid_canister printNat16 '(65_535 : nat16)'\n(65_535 : nat16)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat16 » nat16","id":"155","title":"nat16"},"156":{"body":"The CandidType object nat32 corresponds to the Candid type nat32 , is inferred to be a TypeScript number, and will be decoded into a JavaScript Number at runtime. TypeScript or JavaScript: import { Canister, nat32, query } from 'azle'; export default Canister({ getNat32: query([], nat32, () => { return 4_294_967_295; }), printNat32: query([nat32], nat32, (nat32) => { console.log(typeof nat32); return nat32; })\n}); Candid: service : () -> { getNat32 : () -> (nat32) query; printNat32 : (nat32) -> (nat32) query;\n} dfx: dfx canister call candid_canister printNat32 '(4_294_967_295 : nat32)'\n(4_294_967_295 : nat32)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat32 » nat32","id":"156","title":"nat32"},"157":{"body":"The CandidType object nat64 corresponds to the Candid type nat64 , is inferred to be a TypeScript bigint, and will be decoded into a JavaScript BigInt at runtime. TypeScript or JavaScript: import { Canister, nat64, query } from 'azle'; export default Canister({ getNat64: query([], nat64, () => { return 18_446_744_073_709_551_615n; }), printNat64: query([nat64], nat64, (nat64) => { console.log(typeof nat64); return nat64; })\n}); Candid: service : () -> { getNat64 : () -> (nat64) query; printNat64 : (nat64) -> (nat64) query;\n} dfx: dfx canister call candid_canister printNat64 '(18_446_744_073_709_551_615 : nat64)'\n(18_446_744_073_709_551_615 : nat64)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » nat64 » nat64","id":"157","title":"nat64"},"158":{"body":"The CandidType object null corresponds to the Candid type null , is inferred to be a TypeScript null, and will be decoded into a JavaScript null at runtime. TypeScript or JavaScript: import { Canister, Null, query } from 'azle'; export default Canister({ getNull: query([], Null, () => { return null; }), printNull: query([Null], Null, (null_) => { console.log(typeof null_); return null_; })\n}); Candid: service : () -> { getNull : () -> (null) query; printNull : (null) -> (null) query;\n} dfx: dfx canister call candid_canister printNull '(null)'\n(null : null)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » null » null","id":"158","title":"null"},"159":{"body":"The CandidType object Opt corresponds to the Candid type opt , is inferred to be a TypeScript Opt, and will be decoded into a JavaScript Object at runtime. It is a variant with Some and None cases. At runtime if the value of the variant is Some, the Some property of the variant object will have a value of the enclosed Opt type at runtime. TypeScript or JavaScript: import { bool, Canister, None, Opt, query, Some } from 'azle'; export default Canister({ getOptSome: query([], Opt(bool), () => { return Some(true); // equivalent to { Some: true } }), getOptNone: query([], Opt(bool), () => { return None; //equivalent to { None: null} })\n}); Candid: service : () -> { getOptNone : () -> (opt bool) query; getOptSome : () -> (opt bool) query;\n} dfx: dfx canister call candid_canister getOptSome\n(opt true) dfx canister call candid_canister getOptNone\n(null)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » opt » opt","id":"159","title":"opt"},"16":{"body":"When working with res.json you may run into errors because of attempting to send back JavaScript objects that are not strictly JSON. This can happen when trying to send back an object with a BigInt for example. Azle has created a special function called jsonStringify that will serialize many ICP-specific data structures to JSON for you: import { jsonStringify } from 'azle';\nimport express, { Request } from 'express'; let db = { bigInt: 0n\n}; const app = express(); app.use(express.json()); app.get('/db', (req, res) => { res.send(jsonStringify(db));\n}); app.post('/db/update', (req: Request, res) => { db = req.body; res.send(jsonStringify(db));\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Servers » jsonStringify","id":"16","title":"jsonStringify"},"160":{"body":"The CandidType object Principal corresponds to the Candid type principal , is inferred to be a TypeScript @dfinity/principal Principal, and will be decoded into an @dfinity/principal Principal at runtime. TypeScript or JavaScript: import { Canister, Principal, query } from 'azle'; export default Canister({ getPrincipal: query([], Principal, () => { return Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'); }), printPrincipal: query([Principal], Principal, (principal) => { console.log(typeof principal); return principal; })\n}); Candid: service : () -> { getPrincipal : () -> (principal) query; printPrincipal : (principal) -> (principal) query;\n} dfx: dfx canister call candid_canister printPrincipal '(principal \"rrkah-fqaaa-aaaaa-aaaaq-cai\")'\n(principal \"rrkah-fqaaa-aaaaa-aaaaq-cai\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » principal » principal","id":"160","title":"principal"},"161":{"body":"Objects created by the CandidType function Record correspond to the Candid record type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The shape of the object will match the object literal passed to the Record function. TypeScript or JavaScript: import { Canister, Principal, query, Record, text } from 'azle'; const User = Record({ id: Principal, username: text\n}); export default Canister({ getUser: query([], User, () => { return { id: Principal.fromUint8Array(Uint8Array.from([0])), username: 'lastmjs' }; }), printUser: query([User], User, (user) => { console.log(typeof user); return user; })\n}); Candid: type User = record { id : principal; username : text };\nservice : () -> { getUser : () -> (User) query; printUser : (User) -> (User) query;\n} dfx: dfx canister call candid_canister printUser '(record { id = principal \"2ibo7-dia\"; username = \"lastmjs\" })'\n(record { id = principal \"2ibo7-dia\"; username = \"lastmjs\" })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » record » record","id":"161","title":"record"},"162":{"body":"The CandidType object reserved corresponds to the Candid type reserved , is inferred to be a TypeScript any, and will be decoded into a JavaScript null at runtime. TypeScript or JavaScript: import { Canister, query, reserved } from 'azle'; export default Canister({ getReserved: query([], reserved, () => { return 'anything'; }), printReserved: query([reserved], reserved, (reserved) => { console.log(typeof reserved); return reserved; })\n}); Candid: service : () -> { getReserved : () -> (reserved) query; printReserved : (reserved) -> (reserved) query;\n} dfx: dfx canister call candid_canister printReserved '(null)'\n(null : reserved)","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » reserved » reserved","id":"162","title":"reserved"},"163":{"body":"Values created by the CandidType function Canister correspond to the Candid service type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The properties of this object that match the keys of the service's query and update methods can be passed into ic.call and ic.notify to perform cross-canister calls. TypeScript or JavaScript: import { bool, Canister, ic, Principal, query, text, update } from 'azle'; const SomeCanister = Canister({ query1: query([], bool), update1: update([], text)\n}); export default Canister({ getService: query([], SomeCanister, () => { return SomeCanister(Principal.fromText('aaaaa-aa')); }), callService: update([SomeCanister], text, (service) => { return ic.call(service.update1); })\n}); Candid: type ManualReply = variant { Ok : text; Err : text };\nservice : () -> { callService : ( service { query1 : () -> (bool) query; update1 : () -> (text) }, ) -> (ManualReply); getService : () -> ( service { query1 : () -> (bool) query; update1 : () -> (text) }, ) query;\n} dfx: dfx canister call candid_canister getService\n(service \"aaaaa-aa\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » service » service","id":"163","title":"service"},"164":{"body":"The CandidType object text corresponds to the Candid type text , is inferred to be a TypeScript string, and will be decoded into a JavaScript String at runtime. TypeScript or JavaScript: import { Canister, query, text } from 'azle'; export default Canister({ getString: query([], text, () => { return 'Hello world!'; }), printString: query([text], text, (string) => { console.log(typeof string); return string; })\n}); Candid: service : () -> { getString : () -> (text) query; printString : (text) -> (text) query;\n} dfx: dfx canister call candid_canister printString '(\"Hello world!\")'\n(\"Hello world!\")","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » text » text","id":"164","title":"text"},"165":{"body":"Objects created by the CandidType function Variant correspond to the Candid variant type , are inferred to be TypeScript Objects, and will be decoded into JavaScript Objects at runtime. The shape of the object will match the object literal passed to the Variant function, however it will contain only one of the enumerated properties. TypeScript or JavaScript: import { Canister, Null, query, Variant } from 'azle'; const Emotion = Variant({ Happy: Null, Indifferent: Null, Sad: Null\n}); const Reaction = Variant({ Fire: Null, ThumbsUp: Null, Emotion: Emotion\n}); export default Canister({ getReaction: query([], Reaction, () => { return { Fire: null }; }), printReaction: query([Reaction], Reaction, (reaction) => { console.log(typeof reaction); return reaction; })\n}); Candid: type Emotion = variant { Sad; Indifferent; Happy };\ntype Reaction = variant { Emotion : Emotion; Fire; ThumbsUp };\nservice : () -> { getReaction : () -> (Reaction) query; printReaction : (Reaction) -> (Reaction) query;\n} dfx: dfx canister call candid_canister printReaction '(variant { Fire })'\n(variant { Fire })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » variant » variant","id":"165","title":"variant"},"166":{"body":"The CandidType object Vec corresponds to the Candid type vec , is inferred to be a TypeScript T[], and will be decoded into a JavaScript array of the specified type at runtime (except for Vec which will become a Uint8Array, thus it is recommended to use the blob type instead of Vec). TypeScript or JavaScript: import { Canister, int32, Vec, query } from 'azle'; export default Canister({ getNumbers: query([], Vec(int32), () => { return [0, 1, 2, 3]; }), printNumbers: query([Vec(int32)], Vec(int32), (numbers) => { console.log(typeof numbers); return numbers; })\n}); Candid: service : () -> { getNumbers : () -> (vec int32) query; printNumbers : (vec int32) -> (vec int32) query;\n} dfx: dfx canister call candid_canister printNumbers '(vec { 0 : int32; 1 : int32; 2 : int32; 3 : int32 })'\n(vec { 0 : int32; 1 : int32; 2 : int32; 3 : int32 })","breadcrumbs":"Old Candid-based Documentation » Reference » Candid » vec » vec","id":"166","title":"vec"},"167":{"body":"candid decode candid encode canister balance canister balance 128 canister version canister id data certificate instruction counter is controller performance counter print set certified data time trap","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » Canister APIs","id":"167","title":"Canister APIs"},"168":{"body":"This section is a work in progress. Examples: call_raw candid_encoding import { blob, Canister, ic, query, text } from 'azle'; export default Canister({ // decodes Candid bytes to a Candid string candidDecode: query([blob], text, (candidEncoded) => { return ic.candidDecode(candidEncoded); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » candid decode » candid decode","id":"168","title":"candid decode"},"169":{"body":"This section is a work in progress. Examples: call_raw candid_encoding manual_reply notify_raw outgoing_http_requests import { blob, Canister, ic, query, text } from 'azle'; export default Canister({ // encodes a Candid string to Candid bytes candidEncode: query([text], blob, (candidString) => { return ic.candidEncode(candidString); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » candid encode » candid encode","id":"169","title":"candid encode"},"17":{"body":"If you need to add canister methods to your HTTP server, the Server function imported from azle allows you to do so. Here's an example of a very simple HTTP server: import { Server } from 'azle';\nimport express from 'express'; export default Server(() => { const app = express(); app.get('/http-query', (_req, res) => { res.send('http-query-server'); }); app.post('/http-update', (_req, res) => { res.send('http-update-server'); }); return app.listen();\n}); You can add canister methods like this: import { query, Server, text, update } from 'azle';\nimport express from 'express'; export default Server( () => { const app = express(); app.get('/http-query', (_req, res) => { res.send('http-query-server'); }); app.post('/http-update', (_req, res) => { res.send('http-update-server'); }); return app.listen(); }, { candidQuery: query([], text, () => { return 'candidQueryServer'; }), candidUpdate: update([], text, () => { return 'candidUpdateServer'; }) }\n); The default export of your main module must be the result of calling Server, and the callback argument to Server must return a Node.js http.Server . The main module is specified by the main property of your project's dfx.json file . The dfx.json file must be at the root directory of your project. The callback argument to Server can be asynchronous: import { Server } from 'azle';\nimport { createServer } from 'http'; export default Server(async () => { const message = await asynchronousHelloWorld(); return createServer((req, res) => { res.write(message); res.end(); });\n}); async function asynchronousHelloWorld() { // do some asynchronous task return 'Hello World Asynchronous!';\n}","breadcrumbs":"Servers » Server","id":"17","title":"Server"},"170":{"body":"This section is a work in progress. Examples: cycles ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the amount of cycles available in the canister canisterBalance: query([], nat64, () => { return ic.canisterBalance(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister balance » canister balance","id":"170","title":"canister balance"},"171":{"body":"This section is a work in progress. Examples: cycles ic_api import { Canister, ic, nat, query } from 'azle'; export default Canister({ // returns the amount of cycles available in the canister canisterBalance128: query([], nat, () => { return ic.canisterBalance128(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister balance 128 » canister balance 128","id":"171","title":"canister balance 128"},"172":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the canister's version number canisterVersion: query([], nat64, () => { return ic.canisterVersion(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister version » canister version","id":"172","title":"canister version"},"173":{"body":"This section is a work in progress. Examples: ethereum_json_rpc ic_api http_counter outgoing_http_requests whoami import { Canister, ic, Principal, query } from 'azle'; export default Canister({ // returns this canister's id id: query([], Principal, () => { return ic.id(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » canister id » canister id","id":"173","title":"canister id"},"174":{"body":"This section is a work in progress. Examples: ic_api import { blob, Canister, ic, Opt, query } from 'azle'; export default Canister({ // When called from a query call, returns the data certificate // authenticating certified_data set by this canister. Returns None if not // called from a query call. dataCertificate: query([], Opt(blob), () => { return ic.dataCertificate(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » data certificate » data certificate","id":"174","title":"data certificate"},"175":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // Returns the number of instructions that the canister executed since the // last entry point. instructionCounter: query([], nat64, () => { return ic.instructionCounter(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » instruction counter » instruction counter","id":"175","title":"instruction counter"},"176":{"body":"This section is a work in progress. Examples: ic_api import { bool, Canister, ic, Principal, query } from 'azle'; export default Canister({ // determines whether the given principal is a controller of the canister isController: query([Principal], bool, (principal) => { return ic.isController(principal); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » is controller » is controller","id":"176","title":"is controller"},"177":{"body":"This section is a work in progress. Examples: ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ performanceCounter: query([], nat64, () => { return ic.performanceCounter(0); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » performance counter » performance counter","id":"177","title":"performance counter"},"178":{"body":"This section is a work in progress. Examples: ic_api null_example import { bool, Canister, ic, query, text } from 'azle'; export default Canister({ // prints a message through the local replica's output print: query([text], bool, (message) => { ic.print(message); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » print » print","id":"178","title":"print"},"179":{"body":"This section is a work in progress. Examples: ic_api import { blob, Canister, ic, update, Void } from 'azle'; export default Canister({ // sets up to 32 bytes of certified data setCertifiedData: update([blob], Void, (data) => { ic.setCertifiedData(data); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » set certified data » set certified data","id":"179","title":"set certified data"},"18":{"body":"For a deeper understanding of possible limitations you may want to refer to The HTTP Gateway Protocol Specification . The top-level route /api is currently reserved by the replica locally The Transfer-Encoding header is not supported gzip responses most likely do not work HTTP requests are generally limited to ~2 MiB HTTP responses are generally limited to ~3 MiB You cannot set HTTP status codes in the 1xx range","breadcrumbs":"Servers » Limitations","id":"18","title":"Limitations"},"180":{"body":"This section is a work in progress. Examples: audio_recorder ic_api import { Canister, ic, nat64, query } from 'azle'; export default Canister({ // returns the current timestamp time: query([], nat64, () => { return ic.time(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » time » time","id":"180","title":"time"},"181":{"body":"This section is a work in progress. Examples: cross_canister_calls ethereum_json_rpc http_counter ic_api outgoing_http_requests threshold_ecdsa import { bool, Canister, ic, query, text } from 'azle'; export default Canister({ // traps with a message, stopping execution and discarding all state within the call trap: query([text], bool, (message) => { ic.trap(message); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister APIs » trap » trap","id":"181","title":"trap"},"182":{"body":"heartbeat http_request http_request_update init inspect message post upgrade pre upgrade query update","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » Canister Methods","id":"182","title":"Canister Methods"},"183":{"body":"This section is a work in progress. Examples: heartbeat run_time_errors import { Canister, heartbeat } from 'azle'; export default Canister({ heartbeat: heartbeat(() => { console.log('this runs ~1 time per second'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » heartbeat » heartbeat","id":"183","title":"heartbeat"},"184":{"body":"This section is a work in progress. Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, query, Record, text, Tuple, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request: query([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » http_request » http_request","id":"184","title":"http_request"},"185":{"body":"This section is a work in progress. Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, Record, text, Tuple, update, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request_update: update([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » http_request_update » http_request","id":"185","title":"http_request"},"186":{"body":"This section is a work in progress. Examples: ethereum_json_rpc func_types init persistent-storage pre_and_post_upgrade whoami import { Canister, init } from 'azle'; export default Canister({ init: init([], () => { console.log('This runs once when the canister is first initialized'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » init » init","id":"186","title":"init"},"187":{"body":"This section is a work in progress. Examples: inspect_message run_time_errors import { bool, Canister, ic, inspectMessage, update } from 'azle'; export default Canister({ inspectMessage: inspectMessage(() => { console.log('inspectMessage called'); if (ic.methodName() === 'accessible') { ic.acceptMessage(); return; } if (ic.methodName() === 'inaccessible') { return; } throw `Method \"${ic.methodName()}\" not allowed`; }), accessible: update([], bool, () => { return true; }), inaccessible: update([], bool, () => { return false; }), alsoInaccessible: update([], bool, () => { return false; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » inspect message » inspect message","id":"187","title":"inspect message"},"188":{"body":"This section is a work in progress. Examples: pre_and_post_upgrade whoami import { Canister, postUpgrade } from 'azle'; export default Canister({ postUpgrade: postUpgrade([], () => { console.log('This runs after every canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » post upgrade » post upgrade","id":"188","title":"post upgrade"},"189":{"body":"This section is a work in progress. Examples: pre_and_post_upgrade import { Canister, preUpgrade } from 'azle'; export default Canister({ preUpgrade: preUpgrade(() => { console.log('This runs before every canister upgrade'); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » pre upgrade » pre upgrade","id":"189","title":"pre upgrade"},"19":{"body":"You can automatically copy static assets (essentially files and folders) into your canister's filesystem during deploy by using the assets, assets_large and build_assets properties of the canister object in your project's dfx.json file. Here's an example that copies the src/frontend/dist directory on the deploying machine into the dist directory of the canister, using the assets and build_assets properties: { \"canisters\": { \"backend\": { \"type\": \"custom\", \"main\": \"src/backend/index.ts\", \"candid\": \"src/backend/index.did\", \"candid_gen\": \"http\", \"build\": \"npx azle backend\", \"wasm\": \".azle/backend/backend.wasm\", \"gzip\": true, \"assets\": [[\"src/frontend/dist\", \"dist\"]], \"build_assets\": \"npm run build\", \"metadata\": [ { \"name\": \"candid:service\", \"path\": \"src/backend/index.did\" }, { \"name\": \"cdk:name\", \"content\": \"azle\" } ] } }\n} The assets property is an array of tuples, where the first element of the tuple is the source directory on the deploying machine, and the second element of the tuple is the destination directory in the canister. Use assets for total assets under ~90 MiB in size. The build_assets property allows you to specify custom terminal commands that will run before Azle copies the assets into the canister. You can use build_assets to build your frontend code for example. In this case we are running npm run build, which refers to an npm script that we have specified in our package.json file. There is also an assets_large property that works similarly to the assets property, but allows for total assets up to ~2 GiB in size. We are working on increasing this limit further. Once you have loaded assets into your canister, they are accessible from that canister's filesystem. Here's an example of using the Express static middleware to serve a frontend from the canister's filesystem: import express from 'express'; const app = express(); app.use(express.static('/dist')); app.listen(); Assuming the /dist directory in the canister has an appropriate index.html file, this canister would serve a frontend at its URL when loaded in a web browser.","breadcrumbs":"Assets » Assets TL;DR","id":"19","title":"Assets TL;DR"},"190":{"body":"This section is a work in progress. import { Canister, query, text } from 'azle'; export default Canister({ simpleQuery: query([], text, () => { return 'This is a query method'; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » query » query","id":"190","title":"query"},"191":{"body":"This section is a work in progress. import { Canister, query, text, update, Void } from 'azle'; let message = ''; export default Canister({ getMessage: query([], text, () => { return message; }), setMessage: update([text], Void, (newMessage) => { message = newMessage; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Canister Methods » update » update","id":"191","title":"update"},"192":{"body":"You can provide environment variables to Azle canisters by specifying their names in your dfx.json file and then using the process.env object in Azle. Be aware that the environment variables that you specify in your dfx.json file will be included in plain text in your canister's Wasm binary.","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » Environment Variables","id":"192","title":"Environment Variables"},"193":{"body":"Modify your dfx.json file with the env property to specify which environment variables you would like included in your Azle canister's binary. In this case, CANISTER1_PRINCIPAL and CANISTER2_PRINCIPAL will be included: { \"canisters\": { \"canister1\": { \"type\": \"custom\", \"main\": \"src/canister1/index.ts\", \"build\": \"npx azle canister1\", \"candid\": \"src/canister1/index.did\", \"wasm\": \".azle/canister1/canister1.wasm\", \"gzip\": true, \"declarations\": { \"output\": \"test/dfx_generated/canister1\", \"node_compatibility\": true }, \"env\": [\"CANISTER1_PRINCIPAL\", \"CANISTER2_PRINCIPAL\"] } }\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » dfx.json","id":"193","title":"dfx.json"},"194":{"body":"You can access the specified environment variables in Azle like so: import { Canister, query, text } from 'azle'; export default Canister({ canister1PrincipalEnvVar: query([], text, () => { return ( process.env.CANISTER1_PRINCIPAL ?? 'process.env.CANISTER1_PRINCIPAL is undefined' ); }), canister2PrincipalEnvVar: query([], text, () => { return ( process.env.CANISTER2_PRINCIPAL ?? 'process.env.CANISTER2_PRINCIPAL is undefined' ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Environment Variables » process.env","id":"194","title":"process.env"},"195":{"body":"bitcoin_get_balance bitcoin_get_current_fee_percentiles bitcoin_get_utxos bitcoin_send_transaction canister_info canister_status create_canister delete_canister deposit_cycles ecdsa_public_key http_request install_code provisional_create_canister_with_cycles provisional_top_up_canister raw_rand sign_with_ecdsa start_canister stop_canister uninstall_code update_settings","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » Management Canister","id":"195","title":"Management Canister"},"196":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, None, text, update } from 'azle';\nimport { managementCanister, Satoshi } from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getBalance: update([text], Satoshi, async (address) => { return await ic.call(managementCanister.bitcoin_get_balance, { args: [ { address, min_confirmations: None, network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_balance » bitcoin_get_balance","id":"196","title":"bitcoin_get_balance"},"197":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, update, Vec } from 'azle';\nimport { managementCanister, MillisatoshiPerByte\n} from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getCurrentFeePercentiles: update([], Vec(MillisatoshiPerByte), async () => { return await ic.call( managementCanister.bitcoin_get_current_fee_percentiles, { args: [ { network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST } ); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_current_fee_percentiles » bitcoin_get_current_fee_percentiles","id":"197","title":"bitcoin_get_current_fee_percentiles"},"198":{"body":"This section is a work in progress. Examples: bitcoin import { Canister, ic, None, text, update } from 'azle';\nimport { GetUtxosResult, managementCanister } from 'azle/canisters/management'; const BITCOIN_API_CYCLE_COST = 100_000_000n; export default Canister({ getUtxos: update([text], GetUtxosResult, async (address) => { return await ic.call(managementCanister.bitcoin_get_utxos, { args: [ { address, filter: None, network: { Regtest: null } } ], cycles: BITCOIN_API_CYCLE_COST }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_get_utxos » bitcoin_get_utxos","id":"198","title":"bitcoin_get_utxos"},"199":{"body":"This section is a work in progress. Examples: import { blob, bool, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const BITCOIN_BASE_TRANSACTION_COST = 5_000_000_000n;\nconst BITCOIN_CYCLE_COST_PER_TRANSACTION_BYTE = 20_000_000n; export default Canister({ sendTransaction: update([blob], bool, async (transaction) => { const transactionFee = BITCOIN_BASE_TRANSACTION_COST + BigInt(transaction.length) * BITCOIN_CYCLE_COST_PER_TRANSACTION_BYTE; await ic.call(managementCanister.bitcoin_send_transaction, { args: [ { transaction, network: { Regtest: null } } ], cycles: transactionFee }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » bitcoin_send_transaction » bitcoin_send_transaction","id":"199","title":"bitcoin_send_transaction"},"2":{"body":"Windows is only supported through a Linux virtual environment of some kind, such as WSL On Ubuntu/WSL: sudo apt-get install podman On Mac: brew install podman It's recommended to use nvm and Node.js 20: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash Restart your terminal and then run: nvm install 20 Check that the installation went smoothly by looking for clean output from the following command: node --version Install the dfx command line tools for managing ICP applications: DFX_VERSION=0.19.0 sh -ci \"$(curl -fsSL https://sdk.dfinity.org/install.sh)\" Check that the installation went smoothly by looking for clean output from the following command: dfx --version If after trying to run dfx --version you encounter an error such as dfx: command not found, you might need to add $HOME/bin to your path. Here's an example of doing this in your .bashrc: echo 'export PATH=\"$PATH:$HOME/bin\"' >> \"$HOME/.bashrc\"","breadcrumbs":"Get Started » Installation","id":"2","title":"Installation"},"20":{"body":"Azle canisters can import ic from azle and use ic.caller() to get the principal (public-key linked identifier) of the initiator of an HTTP request. HTTP requests are anonymous (principal 2vxsx-fae) by default, but authentication with web browsers (and maybe Node.js) can be done using a JWT-like API from azle/http_client. First you import toJwt from azle/http_client: import { toJwt } from 'azle/http_client'; Then you use fetch and construct an Authorization header using an @dfinity/agent Identity: const response = await fetch( `http://bkyz2-fmaaa-aaaaa-qaaaq-cai.localhost:8000/whoami`, { method: 'GET', headers: [['Authorization', toJwt(this.identity)]] }\n); Here's an example of the frontend of a simple web application using azle/http_client and Internet Identity : import { Identity } from '@dfinity/agent';\nimport { AuthClient } from '@dfinity/auth-client';\nimport { toJwt } from 'azle/http_client';\nimport { html, LitElement } from 'lit';\nimport { customElement, property } from 'lit/decorators.js'; @customElement('azle-app')\nexport class AzleApp extends LitElement { @property() identity: Identity | null = null; @property() whoami: string = ''; connectedCallback() { super.connectedCallback(); this.authenticate(); } async authenticate() { const authClient = await AuthClient.create(); const isAuthenticated = await authClient.isAuthenticated(); if (isAuthenticated === true) { this.handleIsAuthenticated(authClient); } else { await this.handleIsNotAuthenticated(authClient); } } handleIsAuthenticated(authClient: AuthClient) { this.identity = authClient.getIdentity(); } async handleIsNotAuthenticated(authClient: AuthClient) { await new Promise((resolve, reject) => { authClient.login({ identityProvider: import.meta.env.VITE_IDENTITY_PROVIDER, onSuccess: resolve as () => void, onError: reject, windowOpenerFeatures: `width=500,height=500` }); }); this.identity = authClient.getIdentity(); } async whoamiUnauthenticated() { const response = await fetch( `${import.meta.env.VITE_CANISTER_ORIGIN}/whoami` ); const responseText = await response.text(); this.whoami = responseText; } async whoamiAuthenticated() { const response = await fetch( `${import.meta.env.VITE_CANISTER_ORIGIN}/whoami`, { method: 'GET', headers: [['Authorization', toJwt(this.identity)]] } ); const responseText = await response.text(); this.whoami = responseText; } render() { return html`

Internet Identity

Whoami principal: ${this.whoami}

`; }\n} Here's an example of the backend of that same simple web application: import { ic } from 'azle';\nimport express from 'express'; const app = express(); app.get('/whoami', (req, res) => { res.send(ic.caller().toString());\n}); app.use(express.static('/dist')); app.listen();","breadcrumbs":"Authentication » Authentication TL;DR","id":"20","title":"Authentication TL;DR"},"200":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, update } from 'azle';\nimport { CanisterStatusArgs, CanisterStatusResult, managementCanister\n} from 'azle/canisters/management'; export default Canister({ getCanisterStatus: update( [CanisterStatusArgs], CanisterStatusResult, async (args) => { return await ic.call(managementCanister.canister_status, { args: [args] }); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » canister_status » canister_status","id":"200","title":"canister_status"},"201":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, None, update } from 'azle';\nimport { CreateCanisterResult, managementCanister\n} from 'azle/canisters/management'; export default Canister({ executeCreateCanister: update([], CreateCanisterResult, async () => { return await ic.call(managementCanister.create_canister, { args: [{ settings: None }], cycles: 50_000_000_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » create_canister » create_canister","id":"201","title":"create_canister"},"202":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeDeleteCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.delete_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » delete_canister » delete_canister","id":"202","title":"delete_canister"},"203":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeDepositCycles: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.deposit_cycles, { args: [ { canister_id: canisterId } ], cycles: 10_000_000n }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » deposit_cycles » deposit_cycles","id":"203","title":"deposit_cycles"},"204":{"body":"This section is a work in progress. Examples: threshold_ecdsa import { blob, Canister, ic, None, Record, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const PublicKey = Record({ publicKey: blob\n}); export default Canister({ publicKey: update([], PublicKey, async () => { const caller = ic.caller().toUint8Array(); const publicKeyResult = await ic.call( managementCanister.ecdsa_public_key, { args: [ { canister_id: None, derivation_path: [caller], key_id: { curve: { secp256k1: null }, name: 'dfx_test_key' } } ] } ); return { publicKey: publicKeyResult.public_key }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » ecdsa_public_key » ecdsa_public_key","id":"204","title":"ecdsa_public_key"},"205":{"body":"This section is a work in progress. Examples: ethereum_json_rpc outgoing_http_requests import { Canister, ic, None, Principal, query, Some, update } from 'azle';\nimport { HttpResponse, HttpTransformArgs, managementCanister\n} from 'azle/canisters/management'; export default Canister({ xkcd: update([], HttpResponse, async () => { return await ic.call(managementCanister.http_request, { args: [ { url: `https://xkcd.com/642/info.0.json`, max_response_bytes: Some(2_000n), method: { get: null }, headers: [], body: None, transform: Some({ function: [ic.id(), 'xkcdTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); }), xkcdTransform: query([HttpTransformArgs], HttpResponse, (args) => { return { ...args.response, headers: [] }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » http_request » http_request","id":"205","title":"http_request"},"206":{"body":"This section is a work in progress. Examples: management_canister import { blob, bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeInstallCode: update( [Principal, blob], bool, async (canisterId, wasmModule) => { await ic.call(managementCanister.install_code, { args: [ { mode: { install: null }, canister_id: canisterId, wasm_module: wasmModule, arg: Uint8Array.from([]) } ], cycles: 100_000_000_000n }); return true; } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » install_code » install_code","id":"206","title":"install_code"},"207":{"body":"This section is a work in progress. Examples: management_canister import { Canister, ic, None, update } from 'azle';\nimport { managementCanister, ProvisionalCreateCanisterWithCyclesResult\n} from 'azle/canisters/management'; export default Canister({ provisionalCreateCanisterWithCycles: update( [], ProvisionalCreateCanisterWithCyclesResult, async () => { return await ic.call( managementCanister.provisional_create_canister_with_cycles, { args: [ { amount: None, settings: None } ] } ); } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » provisional_create_canister_with_cycles » provisional_create_canister_with_cycles","id":"207","title":"provisional_create_canister_with_cycles"},"208":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, nat, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ provisionalTopUpCanister: update( [Principal, nat], bool, async (canisterId, amount) => { await ic.call(managementCanister.provisional_top_up_canister, { args: [ { canister_id: canisterId, amount } ] }); return true; } )\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » provisional_top_up_canister » provisional_top_up_canister","id":"208","title":"provisional_top_up_canister"},"209":{"body":"This section is a work in progress. Examples: async/await heartbeat management_canister timers import { blob, Canister, ic, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ getRawRand: update([], blob, async () => { return await ic.call(managementCanister.raw_rand); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » raw_rand » raw_rand","id":"209","title":"raw_rand"},"21":{"body":"Examples: ckbtc fetch_ic internet_identity","breadcrumbs":"Authentication » Authentication","id":"21","title":"Authentication"},"210":{"body":"This section is a work in progress. Examples: threshold_ecdsa import { blob, Canister, ic, Record, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; const Signature = Record({ signature: blob\n}); export default Canister({ sign: update([blob], Signature, async (messageHash) => { if (messageHash.length !== 32) { ic.trap('messageHash must be 32 bytes'); } const caller = ic.caller().toUint8Array(); const signatureResult = await ic.call( managementCanister.sign_with_ecdsa, { args: [ { message_hash: messageHash, derivation_path: [caller], key_id: { curve: { secp256k1: null }, name: 'dfx_test_key' } } ], cycles: 10_000_000_000n } ); return { signature: signatureResult.signature }; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » sign_with_ecdsa » sign_with_ecdsa","id":"210","title":"sign_with_ecdsa"},"211":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeStartCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.start_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » start_canister » start_canister","id":"211","title":"start_canister"},"212":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeStopCanister: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.stop_canister, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » stop_canister » stop_canister","id":"212","title":"stop_canister"},"213":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, Principal, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeUninstallCode: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.uninstall_code, { args: [ { canister_id: canisterId } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » uninstall_code » uninstall_code","id":"213","title":"uninstall_code"},"214":{"body":"This section is a work in progress. Examples: management_canister import { bool, Canister, ic, None, Principal, Some, update } from 'azle';\nimport { managementCanister } from 'azle/canisters/management'; export default Canister({ executeUpdateSettings: update([Principal], bool, async (canisterId) => { await ic.call(managementCanister.update_settings, { args: [ { canister_id: canisterId, settings: { controllers: None, compute_allocation: Some(1n), memory_allocation: Some(3_000_000n), freezing_threshold: Some(2_000_000n) } } ] }); return true; })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Management Canister » update_settings » update_settings","id":"214","title":"update_settings"},"215":{"body":"Azle plugins allow developers to wrap Rust code in TypeScript/JavaScript APIs that can then be exposed to Azle canisters, providing a clean and simple developer experience with the underlying Rust code. Plugins are in a very early alpha state. You can create and use them now, but be aware that the API will be changing significantly in the near future. You can use the following example plugins as you create your own plugins:","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » Plugins","id":"215","title":"Plugins"},"216":{"body":"If you just want to create a plugin in the same repo as your project, see the plugins example .","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » Local plugin","id":"216","title":"Local plugin"},"217":{"body":"If you want to create a plugin that can be published and/or used with npm, see the ic-sqlite-plugin example .","breadcrumbs":"Old Candid-based Documentation » Reference » Plugins » npm plugin","id":"217","title":"npm plugin"},"218":{"body":"stable structures stable bytes stable grow stable read stable size stable write stable64 grow stable64 read stable64 size stable64 write","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » Stable Memory","id":"218","title":"Stable Memory"},"219":{"body":"This section is a work in progress. Examples: audio_recorder ethereum_json_rpc func_types http_counter inline_types persistent-storage pre_and_post_upgrade stable_structures import { bool, Canister, nat64, nat8, Opt, query, StableBTreeMap, text, Tuple, update, Vec\n} from 'azle'; const Key = nat8;\ntype Key = typeof Key.tsType; const Value = text;\ntype Value = typeof Value.tsType; let map = StableBTreeMap(0); export default Canister({ containsKey: query([Key], bool, (key) => { return map.containsKey(key); }), get: query([Key], Opt(Value), (key) => { return map.get(key); }), insert: update([Key, Value], Opt(Value), (key, value) => { return map.insert(key, value); }), isEmpty: query([], bool, () => { return map.isEmpty(); }), items: query([], Vec(Tuple(Key, Value)), () => { return map.items(); }), keys: query([], Vec(Key), () => { return Uint8Array.from(map.keys()); }), len: query([], nat64, () => { return map.len(); }), remove: update([Key], Opt(Value), (key) => { return map.remove(key); }), values: query([], Vec(Value), () => { return map.values(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable structures » stable structures","id":"219","title":"stable structures"},"22":{"body":"Authentication of ICP calls is done through signatures on messages. @dfinity/agent provides very nice abstractions for creating all of the required signatures in the correct formats when calling into canisters on ICP. Unfortunately this requires you to abandon traditional HTTP requests, as you must use the agent's APIs. Azle attempts to enable you to perform traditional HTTP requests with traditional libraries. Currently Azle focuses on fetch. When importing toJwt, azle/http_client will overwrite the global fetch function and will intercept fetch requests that have Authorization headers with an Identity as a value. Once intercepted, these requests are turned into @dfinity/agent requests that call the http_request and http_request_update canister methods directly, thus performing all of the required client-side authentication work. We are working to push for ICP to more natively understand JWTs for authentication, without the need to intercept fetch requests and convert them into agent requests.","breadcrumbs":"Authentication » Under-the-hood","id":"22","title":"Under-the-hood"},"220":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, query } from 'azle'; export default Canister({ stableBytes: query([], blob, () => { return ic.stableBytes(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable bytes » stable bytes","id":"220","title":"stable bytes"},"221":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat32, update } from 'azle'; export default Canister({ stableGrow: update([nat32], nat32, (newPages) => { return ic.stableGrow(newPages); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable grow » stable grow","id":"221","title":"stable grow"},"222":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat32, query } from 'azle'; export default Canister({ stableRead: query([nat32, nat32], blob, (offset, length) => { return ic.stableRead(offset, length); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable read » stable read","id":"222","title":"stable read"},"223":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat32, query } from 'azle'; export default Canister({ stableSize: query([], nat32, () => { return ic.stableSize(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable size » stable size","id":"223","title":"stable size"},"224":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat32, update, Void } from 'azle'; export default Canister({ stableWrite: update([nat32, blob], Void, (offset, buf) => { ic.stableWrite(offset, buf); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable write » stable write","id":"224","title":"stable write"},"225":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat64, update } from 'azle'; export default Canister({ stable64Grow: update([nat64], nat64, (newPages) => { return ic.stable64Grow(newPages); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 grow » stable64 grow","id":"225","title":"stable64 grow"},"226":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat64, query } from 'azle'; export default Canister({ stable64Read: query([nat64, nat64], blob, (offset, length) => { return ic.stable64Read(offset, length); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 read » stable64 read","id":"226","title":"stable64 read"},"227":{"body":"This section is a work in progress. Examples: stable_memory import { Canister, ic, nat64, query } from 'azle'; export default Canister({ stable64Size: query([], nat64, () => { return ic.stable64Size(); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 size » stable64 size","id":"227","title":"stable64 size"},"228":{"body":"This section is a work in progress. Examples: stable_memory import { blob, Canister, ic, nat64, update, Void } from 'azle'; export default Canister({ stable64Write: update([nat64, blob], Void, (offset, buf) => { ic.stable64Write(offset, buf); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Stable Memory » stable64 write » stable64 write","id":"228","title":"stable64 write"},"229":{"body":"clear timer set timer set timer interval","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » Timers","id":"229","title":"Timers"},"23":{"body":"Azle canisters use a custom fetch implementation to perform cross-canister calls and to perform HTTPS outcalls. Here's an example of performing a cross-canister call: import { serialize } from 'azle';\nimport express from 'express'; const app = express(); app.use(express.json()); app.post('/cross-canister-call', async (req, res) => { const to: string = req.body.to; const amount: number = req.body.amount; const response = await fetch(`icp://dfdal-2uaaa-aaaaa-qaama-cai/transfer`, { body: serialize({ candidPath: '/token.did', args: [to, amount] }) }); const responseJson = await response.json(); res.json(responseJson);\n}); app.listen(); Keep these important points in mind when performing a cross-canister call: Use the icp:// protocol in the URL The canister id of the canister that you are calling immediately follows icp:// in the URL The canister method that you are calling immediately follows the canister id in the URL The candidPath property of the body is the path to the Candid file defining the method signatures of the canister that you are calling. You must obtain this file and copy it into your canister. See the Assets chapter for info on copying files into your canister The args property of the body is an array of the arguments that will be passed to the canister method that you are calling Here's an example of performing an HTTPS outcall: import express from 'express'; const app = express(); app.use(express.json()); app.post('/https-outcall', async (_req, res) => { const response = await fetch(`https://httpbin.org/headers`, { headers: { 'X-Azle-Request-Key-0': 'X-Azle-Request-Value-0', 'X-Azle-Request-Key-1': 'X-Azle-Request-Value-1', 'X-Azle-Request-Key-2': 'X-Azle-Request-Value-2' } }); const responseJson = await response.json(); res.json(responseJson);\n}); app.listen();","breadcrumbs":"fetch » fetch TL;DR","id":"23","title":"fetch TL;DR"},"230":{"body":"This section is a work in progress. Examples: timers import { Canister, ic, TimerId, update, Void } from 'azle'; export default Canister({ clearTimer: update([TimerId], Void, (timerId) => { ic.clearTimer(timerId); })\n});","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » clear timer » clear timer","id":"230","title":"clear timer"},"231":{"body":"This section is a work in progress. Examples: timers import { Canister, Duration, ic, TimerId, Tuple, update } from 'azle'; export default Canister({ setTimers: update([Duration], Tuple(TimerId, TimerId), (delay) => { const functionTimerId = ic.setTimer(delay, callback); const capturedValue = '🚩'; const closureTimerId = ic.setTimer(delay, () => { console.log(`closure called and captured value ${capturedValue}`); }); return [functionTimerId, closureTimerId]; })\n}); function callback() { console.log('callback called');\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » set timer » set timer","id":"231","title":"set timer"},"232":{"body":"This section is a work in progress. Examples: timers import { Canister, Duration, ic, TimerId, Tuple, update } from 'azle'; export default Canister({ setTimerIntervals: update( [Duration], Tuple(TimerId, TimerId), (interval) => { const functionTimerId = ic.setTimerInterval(interval, callback); const capturedValue = '🚩'; const closureTimerId = ic.setTimerInterval(interval, () => { console.log( `closure called and captured value ${capturedValue}` ); }); return [functionTimerId, closureTimerId]; } )\n}); function callback() { console.log('callback called');\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Timers » set timer interval » set timer interval","id":"232","title":"set timer interval"},"233":{"body":"The IC currently limits Wasm binaries to a relatively small size of ~2MiB (with some caveats). You are likely to hit this limit as your Azle canisters grow in size. Azle provides some automatic optimizations to help you deal with this limit. It is hoped that the IC-imposed limit will be greatly increased sometime in 2023. To optimize the Wasm binary of an Azle canister, you can add the opt_level property to your dfx.json with the following options: \"0\", \"1\", \"2\", \"3\", or \"4\". \"0\" is the default option if opt_level is not specified. Each option is intended to reduce the size of your Wasm binary as the value increases. Each option is likely to take longer to compile than the previous option. It is recommended to start at \"1\" and increase only as necessary. Here's an example using opt_level \"1\": { \"canisters\": { \"hello_world\": { \"type\": \"custom\", \"main\": \"src/index.ts\", \"build\": \"npx azle hello_world\", \"candid\": \"src/index.did\", \"wasm\": \".azle/hello_world/hello_world.wasm.gz\", \"opt_level\": \"1\" } }\n}","breadcrumbs":"Old Candid-based Documentation » Reference » Wasm Binary Optimization » Wasm Binary Optimization","id":"233","title":"Wasm Binary Optimization"},"24":{"body":"Azle has custom fetch implementations for clients and canisters. The client fetch is used for authentication, and you can learn more about it in the Authentication chapter . Canister fetch is used to perform cross-canister calls and HTTPS outcalls . There are three main types of calls made with canister fetch: Cross-canister calls to a candid canister Cross-canister calls to an HTTP canister HTTPS outcalls","breadcrumbs":"fetch » fetch","id":"24","title":"fetch"},"25":{"body":"Examples: async_await bitcoin canister ckbtc composite_queries cross_canister_calls cycles func_types heartbeat ic_evm_rpc icrc ledger_canister management_canister threshold_ecdsa whoami recursion rejections timers","breadcrumbs":"fetch » Cross-canister calls to a candid canister","id":"25","title":"Cross-canister calls to a candid canister"},"26":{"body":"We are working on better abstractions for these types of calls. For now you would just make a cross-canister call using icp:// to the http_request and http_request_update methods of the canister that you are calling.","breadcrumbs":"fetch » Cross-canister calls to an HTTP canister","id":"26","title":"Cross-canister calls to an HTTP canister"},"27":{"body":"Examples: ethereum_json_rpc http_outcall_fetch outgoing_http_requests","breadcrumbs":"fetch » HTTPS outcalls","id":"27","title":"HTTPS outcalls"},"28":{"body":"If your terminal logs ever say did not produce a response or response failed classification=Status code: 502 Bad Gateway, it most likely means that your canister has thrown an error and halted execution for that call. Use console.log and try/catch liberally to track down problems and reveal error information. If your error logs do not have useful messages, use try/catch with a console.log of the catch error argument to reveal the underlying error message.","breadcrumbs":"Debugging » Debugging TL;DR","id":"28","title":"Debugging TL;DR"},"29":{"body":"console.log and try/catch Canister did not produce a response No error message Final Compiled and Bundled JavaScript Azle currently has less-than-elegant error reporting. We hope to improve this significantly in the future. In the meantime, consider the following tips when trying to debug your application.","breadcrumbs":"Debugging » Debugging","id":"29","title":"Debugging"},"3":{"body":"npx azle new hello_world\ncd hello_world npm install dfx start --clean --host 127.0.0.1:8000 In a separate terminal in the hello_world directory: dfx deploy If you are building an HTTP-based canister and would like your canister to autoreload on file changes (DO NOT deploy to mainnet with autoreload enabled): AZLE_AUTORELOAD=true dfx deploy If you have problems deploying see Common deployment issues . View your frontend in a web browser at http://[canisterId].localhost:8000. To obtain your application's [canisterId]: dfx canister id backend Communicate with your canister using any HTTP client library, for example using curl: curl http://[canisterId].localhost:8000/db\ncurl -X POST -H \"Content-Type: application/json\" -d \"{ \\\"hello\\\": \\\"world\\\" }\" http://[canisterId].localhost:8000/db/update","breadcrumbs":"Get Started » Deployment","id":"3","title":"Deployment"},"30":{"body":"At the highest level, the most important tip is this: use console.log and try/catch liberally to track down problems and reveal error information.","breadcrumbs":"Debugging » console.log and try/catch","id":"30","title":"console.log and try/catch"},"31":{"body":"If you ever see an error that looks like this: Replica Error: reject code CanisterError, reject message IC0506: Canister bkyz2-fmaaa-aaaaa-qaaaq-cai did not produce a response, error code Some(\"IC0506\") or this: 2024-04-17T15:01:39.194377Z WARN icx_proxy_dev::proxy::agent: Replica Error\n2024-04-17T15:01:39.194565Z ERROR tower_http::trace::on_failure: response failed classification=Status code: 502 Bad Gateway latency=61 ms it most likely means that your canister has thrown an error and halted execution for that call. First check the replica's logs for any errors messages. If there are no useful error messages, use console.log and try/catch liberally to track down the source of the error and to reveal more information about the error. Don't be surprised if you need to console.log after each of your program's statements (including dependencies found in node_modules) to find out where the error is coming from. And don't be surprised if you need to use try/catch with a console.log of the catch error argument to reveal useful error messaging.","breadcrumbs":"Debugging » Canister did not produce a response","id":"31","title":"Canister did not produce a response"},"32":{"body":"You might find yourself in a situation where an error is reported without a useful message like this: \n\n\n\nError\n\n\n
    at <anonymous> (azle_main:110643)
   at handle (azle_main:73283)
   at next (azle_main:73452)
   at dispatch (azle_main:73432)
   at handle (azle_main:73283)
   at <anonymous> (azle_main:73655)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at expressInit (azle_main:73910)
   at handle (azle_main:73283)
   at trim_prefix (azle_main:73684)
   at <anonymous> (azle_main:73657)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at query3 (azle_main:73938)
   at handle (azle_main:73283)
   at trim_prefix (azle_main:73684)
   at <anonymous> (azle_main:73657)
   at process_params (azle_main:73692)
   at next (azle_main:73660)
   at handle (azle_main:73587)
   at handle (azle_main:76233)
   at app2 (azle_main:78091)
   at call (native)
   at emitTwo (azle_main:9782)
   at emit2 (azle_main:10023)
   at httpHandler (azle_main:87618)
\n\n or like this: 2024-04-17 14:35:30.433501980 UTC: [Canister bkyz2-fmaaa-aaaaa-qaaaq-cai] \" at (azle_main:110643)\\n at handle (azle_main:73283)\\n at next (azle_main:73452)\\n at dispatch (azle_main:73432)\\n at handle (azle_main:73283)\\n at (azle_main:73655)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at expressInit (azle_main:73910)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at query3 (azle_main:73938)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at handle (azle_main:73587)\\n at handle (azle_main:76233)\\n at app2 (azle_main:78091)\\n at call (native)\\n at emitTwo (azle_main:9782)\\n at emit2 (azle_main:10023)\\n at httpHandler (azle_main:87618)\\n\"\n2024-04-17T14:35:31.983590Z ERROR tower_http::trace::on_failure: response failed classification=Status code: 500 Internal Server Error latency=101 ms\n2024-04-17 14:36:34.652587412 UTC: [Canister bkyz2-fmaaa-aaaaa-qaaaq-cai] \" at (azle_main:110643)\\n at handle (azle_main:73283)\\n at next (azle_main:73452)\\n at dispatch (azle_main:73432)\\n at handle (azle_main:73283)\\n at (azle_main:73655)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at expressInit (azle_main:73910)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at query3 (azle_main:73938)\\n at handle (azle_main:73283)\\n at trim_prefix (azle_main:73684)\\n at (azle_main:73657)\\n at process_params (azle_main:73692)\\n at next (azle_main:73660)\\n at handle (azle_main:73587)\\n at handle (azle_main:76233)\\n at app2 (azle_main:78091)\\n at call (native)\\n at emitTwo (azle_main:9782)\\n at emit2 (azle_main:10023)\\n at httpHandler (azle_main:87618)\\n\" In these situations you might be able to use try/catch with a console.log of the catch error argument to reveal the underlying error message. For example, this code without a try/catch will log errors without the message This is the error text: import express from 'express'; const app = express(); app.get('/hello-world', (_req, res) => { throw new Error('This is the error text'); res.send('Hello World!');\n}); app.listen(); You can get the message to print in the replica terminal like this: import express from 'express'; const app = express(); app.get('/hello-world', (_req, res) => { try { throw new Error('This is the error text'); res.send('Hello World!'); } catch (error) { console.log(error); }\n}); app.listen();","breadcrumbs":"Debugging » No error message","id":"32","title":"No error message"},"33":{"body":"Azle compiles and bundles your TypeScript/JavaScript into a final JavaScript file to be included and executed inside of your canister. Inspecting this final JavaScript code may help you to debug your application. When you see something like (azle_main:110643) in your error stack traces, it is a reference to the final compiled and bundled JavaScript file that is actually deployed with and executed by the canister. The right-hand side of azle_main e.g. :110643 is the line number in that file. You can find the file at [project_name]/.azle/[canister_name]/canister/src/main.js. If you have the AZLE_AUTORELOAD environment variable set to true then you should instead look at [project_name]/.azle/[canister_name]/canister/src/main_reloaded.js","breadcrumbs":"Debugging » Final Compiled and Bundled JavaScript","id":"33","title":"Final Compiled and Bundled JavaScript"},"34":{"body":"There are a number of limitations that you are likely to run into while you develop with Azle on ICP. These are generally the most limiting: 5 billion instruction limit for query calls (HTTP GET requests) (~1 second of computation) 20 billion instruction limit for update calls (HTTP POST/etc requests) (~5 seconds of computation) 2 MiB request size limit 3 MiB response size limit 4 GiB heap limit High request latency relative to traditional web applications (think seconds not milliseconds) High costs relative to traditional web applications (think ~10x traditional web costs) Read more here for in-depth information on current ICP limitations.","breadcrumbs":"Limitations » Limitations TL;DR","id":"34","title":"Limitations TL;DR"},"35":{"body":"Autoreload Environment Variables Native Compilation","breadcrumbs":"Reference » Reference","id":"35","title":"Reference"},"36":{"body":"Deploying to mainnet with AZLE_AUTORELOAD=true will expose your canister to arbitrary untrusted JavaScript code execution You can turn on automatic reloading of your canister's final compiled JavaScript by using the AZLE_AUTORELOAD environment variable during deploy: AZLE_AUTORELOAD=true dfx deploy The autoreload feature watches all .ts and .js files recursively in the directory with your dfx.json file (the root directory of your project), excluding files found in .azle, .dfx, and node_modules. Autoreload only works properly if you do not change the methods of your canister. HTTP-based canisters will generally work well with autoreload as the query and update methods http_request and http_request_update will not need to change often. Candid-based canisters with explicit query and update methods may require manual deploys more often. Autoreload will not reload assets uploaded through the assets property of your dfx.json. It is extremely important to keep in mind that setting AZLE_AUTORELOAD=true will create an update method in your canister called reload_js that has no authorization built into it. If you deploy this to mainnet, anyone will be able to call this method and change the JavaScript of your canister.","breadcrumbs":"Reference » Autoreload » Autoreload","id":"36","title":"Autoreload"},"37":{"body":"AZLE_AUTORELOAD AZLE_DOCKERFILE_HASH AZLE_IDENTITY_STORAGE_MODE AZLE_INSTRUCTION_COUNT AZLE_PROPTEST_NUM_RUNS AZLE_PROPTEST_PATH AZLE_PROPTEST_QUIET AZLE_PROPTEST_SEED AZLE_PROPTEST_VERBOSE AZLE_TEST_FETCH AZLE_USE_DOCKERFILE AZLE_VERBOSE AZLE_WASMEDGE_QUICKJS_DIR","breadcrumbs":"Reference » Environment Variables » Environment Variables","id":"37","title":"Environment Variables"},"38":{"body":"Set this to true to enable autoreloading of your TypeScript/JavaScript code when making any changes to .ts or .js files in your project.","breadcrumbs":"Reference » Environment Variables » AZLE_AUTORELOAD","id":"38","title":"AZLE_AUTORELOAD"},"39":{"body":"Set this to the hash that you would like Azle to use when determining the container image, container, and wasmedge-quickjs directory names. The container image file and wasmedge-quickjs directory will be stored at ~/.config/azle. The hash is the final part of each of those names.","breadcrumbs":"Reference » Environment Variables » AZLE_DOCKERFILE_HASH","id":"39","title":"AZLE_DOCKERFILE_HASH"},"4":{"body":"There are many Azle examples in the examples directory . We recommend starting with the following: apollo_server audio_and_video autoreload ethers ethers_base express fetch_ic file_protocol fs hello_world http_outcall_fetch hybrid_canister ic_evm_rpc internet_identity large_files sqlite tfjs web_assembly","breadcrumbs":"Examples » Examples","id":"4","title":"Examples"},"40":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_IDENTITY_STORAGE_MODE","id":"40","title":"AZLE_IDENTITY_STORAGE_MODE"},"41":{"body":"Set this to true to see rough instruction counts just before JavaScript execution completes for calls.","breadcrumbs":"Reference » Environment Variables » AZLE_INSTRUCTION_COUNT","id":"41","title":"AZLE_INSTRUCTION_COUNT"},"42":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_NUM_RUNS","id":"42","title":"AZLE_PROPTEST_NUM_RUNS"},"43":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_PATH","id":"43","title":"AZLE_PROPTEST_PATH"},"44":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_QUIET","id":"44","title":"AZLE_PROPTEST_QUIET"},"45":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_SEED","id":"45","title":"AZLE_PROPTEST_SEED"},"46":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_PROPTEST_VERBOSE","id":"46","title":"AZLE_PROPTEST_VERBOSE"},"47":{"body":"Used for automated testing.","breadcrumbs":"Reference » Environment Variables » AZLE_TEST_FETCH","id":"47","title":"AZLE_TEST_FETCH"},"48":{"body":"Set this to true to force Azle to build the container image locally from the internal Dockerfile instead of attempting to download the container image.","breadcrumbs":"Reference » Environment Variables » AZLE_USE_DOCKERFILE","id":"48","title":"AZLE_USE_DOCKERFILE"},"49":{"body":"Set this to true to enable more logging output during dfx deploy.","breadcrumbs":"Reference » Environment Variables » AZLE_VERBOSE","id":"49","title":"AZLE_VERBOSE"},"5":{"body":"Starting the local replica Deploying to the local replica Interacting with your canister Deploying to mainnet Common deployment issues There are two main ICP environments that you will generally interact with: the local replica and mainnet . We recommend using the dfx command line tools to deploy to these environments. Please note that not all dfx commands are shown here. See the dfx CLI reference for more information.","breadcrumbs":"Deployment » Deployment","id":"5","title":"Deployment"},"50":{"body":"Set this to the path that you would like Azle to use to find the wasmedge-quickjs directory. The default is ~/.config/azle/wasmedge-quickjs_[current Dockerfile hash].","breadcrumbs":"Reference » Environment Variables » AZLE_WASMEDGE_QUICKJS_DIR","id":"50","title":"AZLE_WASMEDGE_QUICKJS_DIR"},"51":{"body":"Add the --native-compilation option to the command in the build property of your canister object in your dfx.json file. Make sure you install the correct dependencies for your project's version of Azle.","breadcrumbs":"Reference » Native Compilation » Native Compilation TL;DR","id":"51","title":"Native Compilation TL;DR"},"52":{"body":"Examples: key_value_store primitive_types stable_structures Azle uses a container image and Podman to simplify the development environment experience. Because of this, Azle only requires dfx, node/npm, and podman to be installed on the developer's machine. But this setup isn't always desirable. For example, Podman has trouble running inside of a Docker container. If you would like to skip the container and run Azle's build process directly on your machine, you can do so as follows: Add the --native-compilation option to the command in the build property of your canister object in your dfx.json file, like this: npx azle canister_name --native-compilation. Install prerequisites: sudo apt-get update\nsudo apt-get install clang\nsudo apt-get install build-essential Install Rust: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.73.0 --profile=minimal Install wasm32-wasi: rustup target add wasm32-wasi Install wasi2ic: cargo install --git https://github.com/wasm-forge/wasi2ic --rev 806c3558aad24224852a9582f018178402cb3679 Download and rename wasmedge-quickjs: mkdir -p ~/.config/azle\ncd ~/.config/azle\ngit clone https://github.com/demergent-labs/wasmedge-quickjs\ncd wasmedge-quickjs\ngit checkout c21ff69f442998e4cda4619166e23a9bc91418be\ncd -\nmv wasmedge-quickjs wasmedge-quickjs_$(npx azle@0.21.1 dockerfile-hash) Keep in mind that much of this setup is Azle version-specific. The installation steps above are accurate as of version 0.21.1 of Azle. If your Azle project uses a different version of Azle then you might need to make changes to these instructions to ensure correct compilation and execution. If you are struggling to get --native-compilation to work, it may be helpful for you to view the following files from the Azle repository: Dockerfile test.yml , search for --native-compilation","breadcrumbs":"Reference » Native Compilation » Native Compilation","id":"52","title":"Native Compilation"},"53":{"body":"This entire section of the documentation may be out of date Azle is currently going through a transition to give higher priority to utilizing HTTP, REST, JSON, and other familiar web technologies. This is in contrast to having previously focused on ICP-specific technologies like Candid and explicitly creating Canister objects with query and update methods. We are calling these two paradigms HTTP-based and Candid-based. Many concepts from the Candid-based documentation are still applicable in the HTTP-based paradigm. The HTTP-based paradigm simply focuses on changing the communication and serialization strategies to be more web-focused and less custom.","breadcrumbs":"Old Candid-based Documentation » Old Candid-based Documentation","id":"53","title":"Old Candid-based Documentation"},"54":{"body":"Azle is a TypeScript and JavaScript Canister Development Kit (CDK) for the Internet Computer (IC). In other words, it's a TypeScript/JavaScript runtime for building applications ( canisters ) on the IC. npm package GitHub repo Discord channel","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Azle (Beta)","id":"54","title":"Azle (Beta)"},"55":{"body":"Please remember that Azle is in beta and thus it may have unknown security vulnerabilities due to the following: Azle is built with various software packages that have not yet reached maturity Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to ICP","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Disclaimer","id":"55","title":"Disclaimer"},"56":{"body":"Azle is currently developed by Demergent Labs , a for-profit company with a grant from DFINITY . Demergent Labs' vision is to accelerate the adoption of Web3, the Internet Computer, and sustainable open source.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Demergent Labs","id":"56","title":"Demergent Labs"},"57":{"body":"Azle and the IC provide unique benefits and drawbacks, and both are not currently suitable for all application use-cases. The following information will help you to determine when Azle and the IC might be beneficial for your use-case.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Benefits and drawbacks","id":"57","title":"Benefits and drawbacks"},"58":{"body":"Azle intends to be a full TypeScript and JavaScript environment for the IC (a decentralized cloud platform), with support for all of the TypeScript and JavaScript language and as many relevant environment APIs as possible. These environment APIs will be similar to those available in the Node.js and web browser environments. One of the core benefits of Azle is that it allows web developers to bring their TypeScript or JavaScript skills to the IC. For example, Azle allows the use of various npm packages and VS Code intellisense. As for the IC, we believe its main benefits can be broken down into the following categories: Ownership Security Developer Experience Most of these benefits stem from the decentralized nature of the IC, though the IC is best thought of as a progressively decentralizing cloud platform. As opposed to traditional cloud platforms, its goal is to be owned and controlled by many independent entities. Ownership Full-stack group ownership Autonomous ownership Permanent APIs Credible neutrality Reduced platform risk Full-stack group ownership The IC allows you to build applications that are controlled directly and only (with some caveats) by a group of people. This is in opposition to most cloud applications written today, which must be under the control of a very limited number of people and often a single legal entity that answers directly to a cloud provider, which itself is a single legal entity. In the blockchain world, group-owned applications are known as DAOs . As opposed to DAOs built on most blockchains, the IC allows full-stack applications to be controlled by groups. This means that the group fully controls the running instances of the frontend and the backend code. Autonomous ownership In addition to allowing applications to be owned by groups of people, the IC also allows applications to be owned by no one. This essentially creates autonomous applications or everlasting processes that execute indefinitely. The IC will essentially allow such an application to run indefinitely, unless it depletes its balance of cycles, or the NNS votes to shut it down, neither of which is inevitable. Permanent APIs Because most web APIs are owned and operated by individual entities, their fate is tied to that of their owners. If their owners go out of business, then those APIs may cease to exist. If their owners decide that they do not like or agree with certain users, they may restrict their access. In the end, they may decide to shut down or restrict access for arbitrary reasons. Because the IC allows for group and autonomous ownership of cloud software, the IC is able to produce potentially permanent web APIs. A decentralized group of independent entities will find it difficult to censor API consumers or shut down an API. An autonomous API would take those difficulties to the extreme, as it would continue operating as long as consumers were willing to pay for it. Credible neutrality Group and autonomous ownership makes it possible to build neutral cloud software on the IC. This type of software would allow independent parties to coordinate with reduced trust in each other or a single third-party coordinator. This removes the risk of the third-party coordinator acting in its own self-interest against the interests of the coordinating participants. The coordinating participants would also find it difficult to implement changes that would benefit themselves to the detriment of other participants. Examples could include mobile app stores, ecommerce marketplaces, and podcast directories. Reduced platform risk Because the IC is not owned or controlled by any one entity or individual, the risk of being deplatformed is reduced. This is in opposition to most cloud platforms, where the cloud provider itself generally has the power to arbitrarily remove users from its platform. While deplatforming can still occur on the IC, the only endogenous means of forcefully taking down an application is through an NNS vote. Security Built-in replication Built-in authentication Built-in firewall/port management Built-in sandboxing Threshold protocols Verifiable source code Blockchain integration Built-in replication Replication has many benefits that stem from reducing various central points of failure. The IC is at its core a Byzantine Fault Tolerant replicated compute environment. Applications are deployed to subnets which are composed of nodes running replicas. Each replica is an independent replicated state machine that executes an application's state transitions (usually initiated with HTTP requests) and persists the results. This replication provides a high level of security out-of-the-box. It is also the foundation of a number of protocols that provide threshold cryptographic operations to IC applications. Built-in authentication IC client tooling makes it easy to sign and send messages to the IC, and Internet Identity provides a novel approach to self-custody of private keys. The IC automatically authenticates messages with the public key of the signer, and provides a compact representation of that public key, called a principal, to the application. The principal can be used for authorization purposes. This removes many authentication concerns from the developer. Built-in firewall/port management The concept of ports and various other low-level network infrastructure on the IC is abstracted away from the developer. This can greatly reduce application complexity thus minimizing the chance of introducing vulnerabilities through incorrect configurations. Canisters expose endpoints through various methods, usually query or update methods. Because authentication is also built-in, much of the remaining vulnerability surface area is minimized to implementing correct authorization rules in the canister method endpoints. Built-in sandboxing Canisters have at least two layers of sandboxing to protect colocated canisters from each other. All canisters are at their core Wasm modules and thus inherit the built-in Wasm sandbox. In case there is any bug in the underlying implementation of the Wasm execution environment (or a vulnerability in the imported host functionality), there is also an OS-level sandbox. Developers need not do anything to take advantage of these sandboxes. Threshold protocols The IC provides a number of threshold protocols that allow groups of independent nodes to perform cryptographic operations. These protocols remove central points of failure while providing familiar and useful cryptographic operations to developers. Included are ECDSA , BLS , VRF-like , and in the future threshold key derivation . Verifiable source code IC applications (canisters) are compiled into Wasm and deployed to the IC as Wasm modules. The IC hashes each canister's Wasm binary and stores it for public retrieval. The Wasm binary hash can be retrieved and compared with the hash of an independently compiled Wasm binary derived from available source code. If the hashes match, then one can know with a high degree of certainty that the application is executing the Wasm binary that was compiled from that source code. Blockchain integration When compared with web APIs built for the same purpose, the IC provides a high degree of security when integrating with various other blockchains. It has a direct client integration with Bitcoin, allowing applications to query its state with BFT guarantees. A similar integration is coming for Ethereum. In addition to these blockchain client integrations, a threshold ECDSA protocol (tECDSA) allows the IC to create keys and sign transactions on various ECDSA chains . These chains include Bitcoin and Ethereum, and in the future the protocol may be extended to allow interaction with various EdDSA chains . These direct integrations combined with tECDSA provide a much more secure way to provide blockchain functionality to end users than creating and storing their private keys on traditional cloud infrastructure. Developer experience Built-in devops Orthogonal persistence Built-in devops The IC provides many devops benefits automatically. Though currently limited in its scalability, the protocol attempts to remove the need for developers to concern themselves with concepts such as autoscaling, load balancing, uptime, sandboxing, and firewalls/port management. Correctly constructed canisters have a simple deploy process and automatically inherit these devops capabilities up unto the current scaling limits of the IC. DFINITY engineers are constantly working to remove scalability bottlenecks. Orthogonal persistence The IC automatically persists its heap. This creates an extremely convenient way for developers to store application state, by simply writing into global variables in their programming language of choice. This is a great way to get started. If a canister upgrades its code, swapping out its Wasm binary, then the heap must be cleared. To overcome this limitation, there is a special area of memory called stable memory that persists across these canister upgrades. Special stable data structures provide a familiar API that allows writing into stable memory directly. All of this together provides the foundation for a very simple persistence experience for the developer. The persistence tools now available and coming to the IC may be simpler than their equivalents on traditional cloud infrastructure.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Benefits","id":"58","title":"Benefits"},"59":{"body":"It's important to note that both Azle and the IC are early-stage projects. The IC officially launched in May of 2021, and Azle reached beta in April of 2022. Azle Some of Azle's main drawbacks can be summarized as follows: Beta Security risks Missing APIs Beta Azle reached beta in April of 2022. It's an immature project that may have unforeseen bugs and other issues. We're working constantly to improve it. We hope to get to a production-ready 1.0 in 2024. The following are the major blockers to 1.0: Extensive automated property test coverage Multiple independent security reviews/audits Broad npm package support Security risks As discussed earlier, these are some things to keep in mind: Azle does not yet have extensive automated property tests Azle does not yet have multiple independent security reviews/audits Azle does not yet have many live, successful, continuously operating applications deployed to the IC Missing APIs Azle is not Node.js nor is it V8 running in a web browser. It is using a JavaScript interpreter running in a very new and very different environment. APIs from the Node.js and web browser ecosystems may not be present in Azle. Our goal is to support as many of these APIs as possible over time. IC Some of the IC's main drawbacks can be summarized as follows: Early High latencies Limited and expensive compute resources Limited scalability Lack of privacy NNS risk Early The IC launched officially in May of 2021. As a relatively new project with an extremely ambitious vision, you can expect a small community, immature tooling, and an unproven track record. Much has been delivered, but many promises are yet to be fulfilled. High latencies Any requests that change state on the IC must go through consensus, thus you can expect latencies of a few seconds for these types of requests. When canisters need to communicate with each other across subnets or under heavy load, these latencies can be even longer. Under these circumstances, in the worst case latencies will build up linearly. For example, if canister A calls canister B calls canister C, and these canisters are all on different subnets or under heavy load, then you might need to multiply the latency by the total number of calls. Limited and expensive compute resources CPU usage, data storage, and network usage may be more expensive than the equivalent usage on traditional cloud platforms. Combining these costs with the high latencies explained above, it becomes readily apparent that the IC is currently not built for high-performance computing. Limited scalability The IC might not be able to scale to the needs of your application. It is constantly seeking to improve scalability bottlenecks, but it will probably not be able to onboard millions of users to your traditional web application. Lack of privacy You should assume that all of your application data (unless it is end-to-end encrypted) is accessible to multiple third-parties with no direct relationship and limited commitment to you. Currently all canister state sits unencrypted on node operator's machines. Application-layer access controls for data are possible, but motivated node operators will have an easy time getting access to your data. NNS risk The NNS has the ability to uninstall any canister and can generally change anything about the IC protocol. The NNS uses a simple liquid democracy based on coin/token voting and follower relationships. At the time of this writing most of the voting power on the NNS follows DFINITY for protocol changes, effectively giving DFINITY write control to the protocol while those follower relationships remain in place. The NNS must mature and decentralize to provide practical and realistic protections to canisters and their users.","breadcrumbs":"Old Candid-based Documentation » Azle (Beta) » Drawbacks","id":"59","title":"Drawbacks"},"6":{"body":"We recommend running your local replica in its own terminal and on a port of your choosing: dfx start --host 127.0.0.1:8000 Alternatively you can start the local replica as a background process: dfx start --background --host 127.0.0.1:8000 If you want to stop a local replica running in the background: dfx stop If you ever see this kind of error after dfx stop: Error: Failed to kill all processes. Remaining: 627221 626923 627260 Then try this: sudo kill -9 627221\nsudo kill -9 626923\nsudo kill -9 627260 If your replica starts behaving strangely, we recommend starting the replica clean, which will clean the dfx state of your project: dfx start --clean --host 127.0.0.1:8000","breadcrumbs":"Deployment » Starting the local replica","id":"6","title":"Starting the local replica"},"60":{"body":"The Internet Computer (IC) is a decentralized cloud platform. Actually, it is better thought of as a progressively decentralizing cloud platform. Its full vision is yet to be fulfilled. It aims to be owned and operated by many independent entities in many geographies and legal jurisdictions throughout the world. This is in opposition to most traditional cloud platforms today, which are generally owned and operated by one overarching legal entity. The IC is composed of computer hardware nodes running the IC protocol software. Each running IC protocol software process is known as a replica. Nodes are assigned into groups known as subnets. Each subnet attempts to maximize its decentralization of nodes according to factors such as data center location and node operator independence. The subnets vary in size. Generally speaking the larger the size of the subnet the more secure it will be. Subnets currently range in size from 13 to 40 nodes, with most subnets having 13 nodes. IC applications, known as canisters, are deployed to specific subnets. They are then accessible through Internet Protocol requests such as HTTP. Each subnet replicates all canisters across all of its replicas. A consensus protocol is run by the replicas to ensure Byzantine Fault Tolerance . View the IC Dashboard to explore all data centers, subnets, node operators, and many other aspects of the IC.","breadcrumbs":"Old Candid-based Documentation » Internet Computer Overview » Internet Computer Overview","id":"60","title":"Internet Computer Overview"},"61":{"body":"Canisters are Internet Computer (IC) applications. They are the encapsulation of your code and state, and are essentially Wasm modules. State can be stored on the 4 GiB heap or in a larger 96 GiB location called stable memory. You can store state on the heap using your language's native global variables. You can store state in stable memory using low-level APIs or special stable data structures that behave similarly to native language data structures. State changes must go through a process called consensus. The consensus process ensures that state changes are Byzantine Fault Tolerant . This process takes a few seconds to complete. Operations on canister state are exposed to users through canister methods. These methods can be invoked through HTTP requests. Query methods allow state to be read and are low-latency. Update methods allow state to be changed and are higher-latency. Update methods take a few seconds to complete because of the consensus process.","breadcrumbs":"Old Candid-based Documentation » Canisters Overview » Canisters Overview","id":"61","title":"Canisters Overview"},"62":{"body":"Windows is only supported through a Linux virtual environment of some kind, such as WSL On Ubuntu/WSL: sudo apt-get install podman On Mac: brew install podman It's recommended to use nvm and Node.js 20: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash Restart your terminal and then run: nvm install 20 Check that the installation went smoothly by looking for clean output from the following command: node --version Install the dfx command line tools for managing ICP applications: DFX_VERSION=0.16.1 sh -ci \"$(curl -fsSL https://sdk.dfinity.org/install.sh)\" Check that the installation went smoothly by looking for clean output from the following command: dfx --version If after trying to run dfx --version you encounter an error such as dfx: command not found, you might need to add $HOME/bin to your path. Here's an example of doing this in your .bashrc: echo 'export PATH=\"$PATH:$HOME/bin\"' >> \"$HOME/.bashrc\"","breadcrumbs":"Old Candid-based Documentation » Installation » Installation","id":"62","title":"Installation"},"63":{"body":"Quick start Methodical start The project directory and file structure index.ts tsconfig.json dfx.json Local deployment Common deployment issues Interacting with your canister from the command line Interacting with your canister from the web UI Let's build your first application (canister) with Azle! Before embarking please ensure you've followed all of the installation instructions , especially noting the build dependencies . We'll build a simple Hello World canister that shows the basics of importing Azle, exposing a query method, exposing an update method, and storing some state in a global variable. We'll then interact with it from the command line and from our web browser.","breadcrumbs":"Old Candid-based Documentation » Hello World » Hello World","id":"63","title":"Hello World"},"64":{"body":"We are going to use the Azle new command which creates a simple example project. First use the new command to create a new project called azle_hello_world: npx azle new azle_hello_world Now let's go inside of our project: cd azle_hello_world We should install Azle and all of its dependencies: npm install Start up your local replica: dfx start In another terminal, deploy your canister: dfx deploy azle_hello_world Call the setMessage method: dfx canister call azle_hello_world setMessage '(\"Hello world!\")' Call the getMessage method: dfx canister call azle_hello_world getMessage If you run into an error during deployment, see the common deployment issues section . See the official azle_hello_world example for more information.","breadcrumbs":"Old Candid-based Documentation » Hello World » Quick Start","id":"64","title":"Quick Start"},"65":{"body":"","breadcrumbs":"Old Candid-based Documentation » Hello World » Methodical start","id":"65","title":"Methodical start"},"66":{"body":"Assuming you're starting completely from scratch, run these commands to setup your project's directory and file structure: mkdir azle_hello_world\ncd azle_hello_world mkdir src touch src/index.ts\ntouch tsconfig.json\ntouch dfx.json Now install Azle, which will create your package.json and package-lock.json files: npm install azle Open up azle_hello_world in your text editor (we recommend VS Code ).","breadcrumbs":"Old Candid-based Documentation » Hello World » The project directory and file structure","id":"66","title":"The project directory and file structure"},"67":{"body":"Here's the main code of the project, which you should put in the azle_hello_world/src/index.ts file of your canister: import { Canister, query, text, update, Void } from 'azle'; // This is a global variable that is stored on the heap\nlet message = ''; export default Canister({ // Query calls complete quickly because they do not go through consensus getMessage: query([], text, () => { return message; }), // Update calls take a few seconds to complete // This is because they persist state changes and go through consensus setMessage: update([text], Void, (newMessage) => { message = newMessage; // This change will be persisted })\n}); Let's discuss each section of the code. import { Canister, query, text, update, Void } from 'azle'; The code starts off by importing Canister, query, text, update and Void from azle. The azle module provides most of the Internet Computer (IC) APIs for your canister. // This is a global variable that is stored on the heap\nlet message = ''; We have created a global variable to store the state of our application. This variable is in scope to all of the functions defined in this module. We have set it equal to an empty string. export default Canister({ ...\n}); The Canister function allows us to export our canister's definition to the Azle IC environment. // Query calls complete quickly because they do not go through consensus\ngetMessage: query([], text, () => { return message;\n}), We are exposing a canister query method here. This method simply returns our global message variable. We use a CandidType object called text to instruct Azle to encode the return value as a Candid text value. When query methods are called they execute quickly because they do not have to go through consensus. // Update calls take a few seconds to complete\n// This is because they persist state changes and go through consensus\nsetMessage: update([text], Void, (newMessage) => { message = newMessage; // This change will be persisted\n}); We are exposing an update method here. This method accepts a string from the caller and will store it in our global message variable. We use a CandidType object called text to instruct Azle to decode the newMessage parameter from a Candid text value to a JavaScript string value. Azle will infer the TypeScript type for newMessage. We use a CandidType object called Void to instruct Azle to encode the return value as the absence of a Candid value. When update methods are called they take a few seconds to complete. This is because they persist changes and go through consensus. A majority of nodes in a subnet must agree on all state changes introduced in calls to update methods. That's it! We've created a very simple getter/setter Hello World application. But no Hello World project is complete without actually yelling Hello world! To do that, we'll need to setup the rest of our project.","breadcrumbs":"Old Candid-based Documentation » Hello World » index.ts","id":"67","title":"index.ts"},"68":{"body":"Create the following in azle_hello_world/tsconfig.json: { \"compilerOptions\": { \"strict\": true, \"target\": \"ES2020\", \"moduleResolution\": \"node\", \"allowJs\": true, \"outDir\": \"HACK_BECAUSE_OF_ALLOW_JS\" }\n}","breadcrumbs":"Old Candid-based Documentation » Hello World » tsconfig.json","id":"68","title":"tsconfig.json"},"69":{"body":"Create the following in azle_hello_world/dfx.json: { \"canisters\": { \"azle_hello_world\": { \"type\": \"custom\", \"main\": \"src/index.ts\", \"candid\": \"src/index.did\", \"build\": \"npx azle azle_hello_world\", \"wasm\": \".azle/azle_hello_world/azle_hello_world.wasm\", \"gzip\": true } }\n}","breadcrumbs":"Old Candid-based Documentation » Hello World » dfx.json","id":"69","title":"dfx.json"},"7":{"body":"To deploy all canisters defined in your dfx.json: dfx deploy If you are building an HTTP-based canister and would like your canister to autoreload on file changes (DO NOT deploy to mainnet with autoreload enabled): AZLE_AUTORELOAD=true dfx deploy To deploy an individual canister: dfx deploy [canisterName]","breadcrumbs":"Deployment » Deploying to the local replica","id":"7","title":"Deploying to the local replica"},"70":{"body":"Let's deploy to our local replica. First startup the replica: dfx start --background Then deploy the canister: dfx deploy","breadcrumbs":"Old Candid-based Documentation » Hello World » Local deployment","id":"70","title":"Local deployment"},"71":{"body":"If you run into an error during deployment, see the common deployment issues section .","breadcrumbs":"Old Candid-based Documentation » Hello World » Common deployment issues","id":"71","title":"Common deployment issues"},"72":{"body":"Once we've deployed we can ask for our message: dfx canister call azle_hello_world getMessage We should see (\"\") representing an empty message. Now let's yell Hello World!: dfx canister call azle_hello_world setMessage '(\"Hello World!\")' Retrieve the message: dfx canister call azle_hello_world getMessage We should see (\"Hello World!\").","breadcrumbs":"Old Candid-based Documentation » Hello World » Interacting with your canister from the command line","id":"72","title":"Interacting with your canister from the command line"},"73":{"body":"After deploying your canister, you should see output similar to the following in your terminal: Deployed canisters.\nURLs: Backend canister via Candid interface: azle_hello_world: http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai Open up http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai or the equivalent URL from your terminal to access the web UI and interact with your canister.","breadcrumbs":"Old Candid-based Documentation » Hello World » Interacting with your canister from the web UI","id":"73","title":"Interacting with your canister from the web UI"},"74":{"body":"Starting the local replica Deploying to the local replica Interacting with your canister Deploying to mainnet Common deployment issues There are two main Internet Computer (IC) environments that you will generally interact with: the local replica and mainnet. When developing on your local machine, our recommended flow is to start up a local replica in your project's root directoy and then deploy to it for local testing.","breadcrumbs":"Old Candid-based Documentation » Deployment » Deployment","id":"74","title":"Deployment"},"75":{"body":"Open a terminal and navigate to your project's root directory: dfx start Alternatively you can start the local replica as a background process: dfx start --background If you want to stop a local replica running in the background: dfx stop If you ever see this error after dfx stop: Error: Failed to kill all processes. Remaining: 627221 626923 627260 Then try this: sudo kill -9 627221\nsudo kill -9 626923\nsudo kill -9 627260 If your replica starts behaving strangely, we recommend starting the replica clean, which will clean the dfx state of your project: dfx start --clean","breadcrumbs":"Old Candid-based Documentation » Deployment » Starting the local replica","id":"75","title":"Starting the local replica"},"76":{"body":"To deploy all canisters defined in your dfx.json: dfx deploy To deploy an individual canister: dfx deploy canister_name","breadcrumbs":"Old Candid-based Documentation » Deployment » Deploying to the local replica","id":"76","title":"Deploying to the local replica"},"77":{"body":"As a developer you can generally interact with your canister in three ways: dfx command line dfx web UI @dfinity/agent","breadcrumbs":"Old Candid-based Documentation » Deployment » Interacting with your canister","id":"77","title":"Interacting with your canister"},"78":{"body":"You can see a more complete reference here . The commands you are likely to use most frequently are: # assume a canister named my_canister # builds and deploys all canisters specified in dfx.json\ndfx deploy # builds all canisters specified in dfx.json\ndfx build # builds and deploys my_canister\ndfx deploy my_canister # builds my_canister\ndfx build my_canister # removes the Wasm binary and state of my_canister\ndfx uninstall-code my_canister # calls the methodName method on my_canister with a string argument\ndfx canister call my_canister methodName '(\"This is a Candid string argument\")'","breadcrumbs":"Old Candid-based Documentation » Deployment » dfx command line","id":"78","title":"dfx command line"},"79":{"body":"After deploying your canister, you should see output similar to the following in your terminal: Deployed canisters.\nURLs: Backend canister via Candid interface: my_canister: http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai Open up http://127.0.0.1:8000/?canisterId=ryjl3-tyaaa-aaaaa-aaaba-cai&id=rrkah-fqaaa-aaaaa-aaaaq-cai to access the web UI.","breadcrumbs":"Old Candid-based Documentation » Deployment » dfx web UI","id":"79","title":"dfx web UI"},"8":{"body":"You will generally interact with your canister through an HTTP client such as curl, fetch, or a web browser. The URL of your canister locally will look like this: http://[canisterId].localhost:[replicaPort]. Azle will print your canister's URL in the terminal after a successful deploy. # You can obtain the canisterId like this\ndfx canister id [canisterName] # You can obtain the replicaPort like this\ndfx info webserver-port # An example of performing a GET request to a canister\ncurl http://a3shf-5eaaa-aaaaa-qaafa-cai.localhost:8000 # An example of performing a POST request to a canister\ncurl -X POST -H \"Content-Type: application/json\" -d \"{ \\\"hello\\\": \\\"world\\\" }\" http://a3shf-5eaaa-aaaaa-qaafa-cai.localhost:8000","breadcrumbs":"Deployment » Interacting with your canister","id":"8","title":"Interacting with your canister"},"80":{"body":"@dfinity/agent is the TypeScript/JavaScript client library for interacting with canisters on the IC. If you are building a client web application, this is probably what you'll want to use. There are other agents for other languages as well: Java Python Rust","breadcrumbs":"Old Candid-based Documentation » Deployment » @dfinity/agent","id":"80","title":"@dfinity/agent"},"81":{"body":"Assuming you are setup with cycles , then you are ready to deploy to mainnet. To deploy all canisters defined in your dfx.json: dfx deploy --network ic To deploy an individual canister: dfx deploy --network ic canister_name","breadcrumbs":"Old Candid-based Documentation » Deployment » Deploying to mainnet","id":"81","title":"Deploying to mainnet"},"82":{"body":"If you run into an error during deployment, try the following: Ensure that you have followed the instructions correctly in the installation chapter , especially noting the build dependencies Start the whole deployment process from scratch by running the following commands: dfx stop or simply terminate dfx in your terminal, dfx start --clean, npx azle clean, dfx deploy Look for more error output by adding the --verbose flag to the build command in your dfx.json file like so: \"build\": \"npx azle build hello_world --verbose Look for errors in each of the files in ~/.config/azle/rust/[rust_version]/logs Reach out in the Discord channel","breadcrumbs":"Old Candid-based Documentation » Deployment » Common deployment issues","id":"82","title":"Common deployment issues"},"83":{"body":"Azle has many example projects showing nearly all Azle APIs. They can be found in the examples directory of the Azle GitHub repository . We'll highlight a few of them and some others here: Query Update Primitive Types Stable Structures Cycles Cross Canister Calls Management Canister Outgoing HTTP Requests Incoming HTTP Requests Pre and Post Upgrade Timers Multisig Vault ICRC-1 IC Chainlink Data Feeds Bitcoin ckBTC","breadcrumbs":"Old Candid-based Documentation » Examples » Examples","id":"83","title":"Examples"},"84":{"body":"","breadcrumbs":"Old Candid-based Documentation » Query Methods » Query Methods","id":"84","title":"Query Methods"},"85":{"body":"Created with the query function Read-only Executed on a single node No consensus Latency on the order of ~100 milliseconds 5 billion Wasm instruction limit 4 GiB heap limit ~32k queries per second per canister The most basic way to expose your canister's functionality publicly is through a query method. Here's an example of a simple query method named getString: import { Canister, query, text } from 'azle'; export default Canister({ getString: query([], text, () => { return 'This is a query method!'; })\n}); Query methods are defined inside of a call to Canister using the query function. The first parameter to query is an array of CandidType objects that will be used to decode the Candid bytes of the arguments sent from the client when calling your query method. The second parameter to query is a CandidType object used to encode the return value of your function to Candid bytes to then be sent back to the client. The third parameter to query is the function that receives the decoded arguments, performs some computation, and then returns a value to be encoded. The TypeScript signature of this function (parameter and return types) will be inferred from the CandidType arguments in the first and second parameters to query. getString can be called from the outside world through the IC's HTTP API. You'll usually invoke this API from the dfx command line, dfx web UI, or an agent . From the dfx command line you can call it like this: dfx canister call my_canister getString Query methods are read-only. They do not persist any state changes. Take a look at the following example: import { Canister, query, text, Void } from 'azle'; let db: { [key: string]: string;\n} = {}; export default Canister({ set: query([text, text], Void, (key, value) => { db[key] = value; })\n}); Calling set will perform the operation of setting the key property on the db object to value, but after the call finishes that change will be discarded. This is because query methods are executed on a single node machine and do not go through consensus . This results in lower latencies, perhaps on the order of 100 milliseconds. There is a limit to how much computation can be done in a single call to a query method. The current query call limit is 5 billion Wasm instructions . Here's an example of a query method that runs the risk of reaching the limit: import { Canister, nat32, query, text } from 'azle'; export default Canister({ pyramid: query([nat32], text, (levels) => { return new Array(levels).fill(0).reduce((acc, _, index) => { const asterisks = new Array(index + 1).fill('*').join(''); return `${acc}${asterisks}\\n`; }, ''); })\n}); From the dfx command line you can call pyramid like this: dfx canister call my_canister pyramid '(1_000)' With an argument of 1_000, pyramid will fail with an error ...exceeded the instruction limit for single message execution. Keep in mind that each query method invocation has up to 4 GiB of heap available. In terms of query scalability, an individual canister likely has an upper bound of ~36k queries per second .","breadcrumbs":"Old Candid-based Documentation » Query Methods » TL;DR","id":"85","title":"TL;DR"},"86":{"body":"","breadcrumbs":"Old Candid-based Documentation » Update Methods » Update Methods","id":"86","title":"Update Methods"},"87":{"body":"Created with the update function Read-write Executed on many nodes Consensus Latency ~2-5 seconds 20 billion Wasm instruction limit 4 GiB heap limit 96 GiB stable memory limit ~900 updates per second per canister Update methods are similar to query methods, but state changes can be persisted. Here's an example of a simple update method: import { Canister, nat64, update } from 'azle'; let counter = 0n; export default Canister({ increment: update([], nat64, () => { return counter++; })\n}); Calling increment will return the current value of counter and then increase its value by 1. Because counter is a global variable, the change will be persisted to the heap, and subsequent query and update calls will have access to the new counter value. Because the Internet Computer (IC) persists changes with certain fault tolerance guarantees, update calls are executed on many nodes and go through consensus . This leads to latencies of ~2-5 seconds per update call. Due to the latency and other expenses involved with update methods, it is best to use them only when necessary. Look at the following example: import { Canister, query, text, update, Void } from 'azle'; let message = ''; export default Canister({ getMessage: query([], text, () => { return message; }), setMessage: update([text], Void, (newMessage) => { message = newMessage; })\n}); You'll notice that we use an update method, setMessage, only to perform the change to the global message variable. We use getMessage, a query method, to read the message. Keep in mind that the heap is limited to 4 GiB, and thus there is an upper bound to global variable storage capacity. You can imagine how a simple database like the following would eventually run out of memory with too many entries: import { Canister, None, Opt, query, Some, text, update, Void } from 'azle'; type Db = { [key: string]: string;\n}; let db: Db = {}; export default Canister({ get: query([text], Opt(text), (key) => { const value = db[key]; return value !== undefined ? Some(value) : None; }), set: update([text, text], Void, (key, value) => { db[key] = value; })\n}); If you need more than 4 GiB of storage, consider taking advantage of the 96 GiB of stable memory. Stable structures like StableBTreeMap give you a nice API for interacting with stable memory. These data structures will be covered in more detail later . Here's a simple example: import { Canister, Opt, query, StableBTreeMap, text, update, Void } from 'azle'; let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); })\n}); So far we have only seen how state changes can be persisted. State changes can also be discarded by implicit or explicit traps. A trap is an immediate stop to execution with the ability to provide a message to the execution environment. Traps can be useful for ensuring that multiple operations are either all completed or all disregarded, or in other words atomic. Keep in mind that these guarantees do not hold once cross-canister calls are introduced, but that's a more advanced topic covered later . Here's an example of how to trap and ensure atomic changes to your database: import { Canister, ic, Opt, query, Record, StableBTreeMap, text, update, Vec, Void\n} from 'azle'; const Entry = Record({ key: text, value: text\n}); let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); }), setMany: update([Vec(Entry)], Void, (entries) => { entries.forEach((entry) => { if (entry.key === 'trap') { ic.trap('explicit trap'); } db.insert(entry.key, entry.value); }); })\n}); In addition to ic.trap, an explicit JavaScript throw or any unhandled exception will also trap. There is a limit to how much computation can be done in a single call to an update method. The current update call limit is 20 billion Wasm instructions . If we modify our database example, we can introduce an update method that runs the risk of reaching the limit: import { Canister, nat64, Opt, query, StableBTreeMap, text, update, Void\n} from 'azle'; let db = StableBTreeMap(0); export default Canister({ get: query([text], Opt(text), (key) => { return db.get(key); }), set: update([text, text], Void, (key, value) => { db.insert(key, value); }), setMany: update([nat64], Void, (numEntries) => { for (let i = 0; i < numEntries; i++) { db.insert(i.toString(), i.toString()); } })\n}); From the dfx command line you can call setMany like this: dfx canister call my_canister setMany '(10_000)' With an argument of 10_000, setMany will fail with an error ...exceeded the instruction limit for single message execution. In terms of update scalability, an individual canister likely has an upper bound of ~900 updates per second .","breadcrumbs":"Old Candid-based Documentation » Update Methods » TL;DR","id":"87","title":"TL;DR"},"88":{"body":"text blob nat nat8 nat16 nat32 nat64 int int8 int16 int32 int64 float32 float64 bool null vec opt record variant func service principal reserved empty Candid is an interface description language created by DFINITY . It can be used to define interfaces between services (canisters), allowing canisters and clients written in various languages to easily interact with each other. This interaction occurs through the serialization/encoding and deserialization/decoding of runtime values to and from Candid bytes. Azle performs automatic encoding and decoding of JavaScript values to and from Candid bytes through the use of various CandidType objects. For example, CandidType objects are used when defining the parameter and return types of your query and update methods. They are also used to define the keys and values of a StableBTreeMap. It's important to note that the CandidType objects decode Candid bytes into specific JavaScript runtime data structures that may differ in behavior from the description of the actual Candid type. For example, a float32 Candid type is a JavaScript Number , a nat64 is a JavaScript BigInt , and an int is also a JavaScript BigInt . Keep this in mind as it may result in unexpected behavior. Each CandidType object and its equivalent JavaScript runtime value is explained in more detail in The Azle Book Candid reference . A more canonical reference of all Candid types available on the Internet Computer (IC) can be found here . The following is a simple example showing how to import and use many of the CandidType objects available in Azle: import { blob, bool, Canister, float32, float64, Func, int, int16, int32, int64, int8, nat, nat16, nat32, nat64, nat8, None, Null, Opt, Principal, query, Record, Recursive, text, update, Variant, Vec\n} from 'azle'; const MyCanister = Canister({ query: query([], bool), update: update([], text)\n}); const Candid = Record({ text: text, blob: blob, nat: nat, nat64: nat64, nat32: nat32, nat16: nat16, nat8: nat8, int: int, int64: int64, int32: int32, int16: int16, int8: int8, float64: float64, float32: float32, bool: bool, null: Null, vec: Vec(text), opt: Opt(nat), record: Record({ firstName: text, lastName: text, age: nat8 }), variant: Variant({ Tag1: Null, Tag2: Null, Tag3: int }), func: Recursive(() => Func([], Candid, 'query')), canister: Canister({ query: query([], bool), update: update([], text) }), principal: Principal\n}); export default Canister({ candidTypes: query([], Candid, () => { return { text: 'text', blob: Uint8Array.from([]), nat: 340_282_366_920_938_463_463_374_607_431_768_211_455n, nat64: 18_446_744_073_709_551_615n, nat32: 4_294_967_295, nat16: 65_535, nat8: 255, int: 170_141_183_460_469_231_731_687_303_715_884_105_727n, int64: 9_223_372_036_854_775_807n, int32: 2_147_483_647, int16: 32_767, int8: 127, float64: Math.E, float32: Math.PI, bool: true, null: null, vec: ['has one element'], opt: None, record: { firstName: 'John', lastName: 'Doe', age: 35 }, variant: { Tag1: null }, func: [ Principal.fromText('rrkah-fqaaa-aaaaa-aaaaq-cai'), 'candidTypes' ], canister: MyCanister(Principal.fromText('aaaaa-aa')), principal: Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai') }; })\n}); Calling candidTypes with dfx will return: ( record { func = func \"rrkah-fqaaa-aaaaa-aaaaq-cai\".candidTypes; text = \"text\"; nat16 = 65_535 : nat16; nat32 = 4_294_967_295 : nat32; nat64 = 18_446_744_073_709_551_615 : nat64; record = record { age = 35 : nat8; lastName = \"Doe\"; firstName = \"John\" }; int = 170_141_183_460_469_231_731_687_303_715_884_105_727 : int; nat = 340_282_366_920_938_463_463_374_607_431_768_211_455 : nat; opt = null; vec = vec { \"has one element\" }; variant = variant { Tag1 }; nat8 = 255 : nat8; canister = service \"aaaaa-aa\"; int16 = 32_767 : int16; int32 = 2_147_483_647 : int32; int64 = 9_223_372_036_854_775_807 : int64; null = null : null; blob = vec {}; bool = true; principal = principal \"ryjl3-tyaaa-aaaaa-aaaba-cai\"; int8 = 127 : int8; float32 = 3.1415927 : float32; float64 = 2.718281828459045 : float64; },\n)","breadcrumbs":"Old Candid-based Documentation » Candid » Candid","id":"88","title":"Candid"},"89":{"body":"","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Stable Structures","id":"89","title":"Stable Structures"},"9":{"body":"Assuming you are setup with a cycles wallet , then you are ready to deploy to mainnet. To deploy all canisters defined in your dfx.json: dfx deploy --network ic To deploy an individual canister: dfx deploy --network ic [canisterName] The URL of your canister on mainnet will look like this: https://[canisterId].raw.icp0.io.","breadcrumbs":"Deployment » Deploying to mainnet","id":"9","title":"Deploying to mainnet"},"90":{"body":"96 GiB of stable memory Persistent across upgrades Familiar API Must specify memory id No migrations per memory id Stable structures are data structures with familiar APIs that allow write and read access to stable memory. Stable memory is a separate memory location from the heap that currently allows up to 96 GiB of binary storage. Stable memory persists automatically across upgrades. Persistence on the Internet Computer (IC) is very important to understand. When a canister is upgraded (its code is changed after being initially deployed) its heap is wiped. This includes all global variables. On the other hand, anything stored in stable memory will be preserved. Writing and reading to and from stable memory can be done with a low-level API , but it is generally easier and preferable to use stable structures. Azle currently provides one stable structure called StableBTreeMap. It's similar to a JavaScript Map and has most of the common operations you'd expect such as reading, inserting, and removing values. Here's how to define a simple StableBTreeMap: import { nat8, StableBTreeMap, text } from 'azle'; let map = StableBTreeMap(0); This is a StableBTreeMap with a key of type nat8 and a value of type text. Unless you want a default type of any for your key and value, then you must explicitly type your StableBTreeMap with type arguments. StableBTreeMap works by encoding and decoding values under-the-hood, storing and retrieving these values in bytes in stable memory. When writing to and reading from a StableBTreeMap, by default the stableJson Serializable object is used to encode JS values into bytes and to decode JS values from bytes. stableJson uses JSON.stringify and JSON.parse with a custom replacer and reviver to handle many Candid and other values that you will most likely use in your canisters. You may use other Serializable objects besides stableJson, and you can even create your own. Simply pass in a Serializable object as the second and third parameters to your StableBTreeMap. The second parameter is the key Serializable object and the third parameter is the value Serializable object. For example, the following StableBTreeMap uses the nat8 and text CandidType objects from Azle as Serializable objects. These Serializable objects will encode and decode to and from Candid bytes: import { nat8, StableBTreeMap, text } from 'azle'; let map = StableBTreeMap(0, nat8, text); All CandidType objects imported from azle are Serializable objects. A Serializable object simply has a toBytes method that takes a JS value and returns a Uint8Array, and a fromBytes method that takes a Uint8Array and returns a JS value. Here's an example of how to create your own simple JSON Serializable: export interface Serializable { toBytes: (data: any) => Uint8Array; fromBytes: (bytes: Uint8Array) => any;\n} export function StableSimpleJson(): Serializable { return { toBytes(data: any) { const result = JSON.stringify(data); return Uint8Array.from(Buffer.from(result)); }, fromBytes(bytes: Uint8Array) { return JSON.parse(Buffer.from(bytes).toString()); } };\n} This StableBTreeMap also has a memory id of 0. Each StableBTreeMap instance must have a unique memory id between 0 and 254. Once a memory id is allocated, it cannot be used with a different StableBTreeMap. This means you can't create another StableBTreeMap using the same memory id, and you can't change the key or value types of an existing StableBTreeMap. This problem will be addressed to some extent . Here's an example showing all of the basic StableBTreeMap operations: import { bool, Canister, nat64, nat8, Opt, query, StableBTreeMap, text, Tuple, update, Vec\n} from 'azle'; const Key = nat8;\ntype Key = typeof Key.tsType; const Value = text;\ntype Value = typeof Value.tsType; let map = StableBTreeMap(0); export default Canister({ containsKey: query([Key], bool, (key) => { return map.containsKey(key); }), get: query([Key], Opt(Value), (key) => { return map.get(key); }), insert: update([Key, Value], Opt(Value), (key, value) => { return map.insert(key, value); }), isEmpty: query([], bool, () => { return map.isEmpty(); }), items: query([], Vec(Tuple(Key, Value)), () => { return map.items(); }), keys: query([], Vec(Key), () => { return Uint8Array.from(map.keys()); }), len: query([], nat64, () => { return map.len(); }), remove: update([Key], Opt(Value), (key) => { return map.remove(key); }), values: query([], Vec(Value), () => { return map.values(); })\n}); With these basic operations you can build more complex CRUD database applications: import { blob, Canister, ic, Err, nat64, Ok, Opt, Principal, query, Record, Result, StableBTreeMap, text, update, Variant, Vec\n} from 'azle'; const User = Record({ id: Principal, createdAt: nat64, recordingIds: Vec(Principal), username: text\n});\ntype User = typeof User.tsType; const Recording = Record({ id: Principal, audio: blob, createdAt: nat64, name: text, userId: Principal\n});\ntype Recording = typeof Recording.tsType; const AudioRecorderError = Variant({ RecordingDoesNotExist: Principal, UserDoesNotExist: Principal\n});\ntype AudioRecorderError = typeof AudioRecorderError.tsType; let users = StableBTreeMap(0);\nlet recordings = StableBTreeMap(1); export default Canister({ createUser: update([text], User, (username) => { const id = generateId(); const user: User = { id, createdAt: ic.time(), recordingIds: [], username }; users.insert(user.id, user); return user; }), readUsers: query([], Vec(User), () => { return users.values(); }), readUserById: query([Principal], Opt(User), (id) => { return users.get(id); }), deleteUser: update([Principal], Result(User, AudioRecorderError), (id) => { const userOpt = users.get(id); if ('None' in userOpt) { return Err({ UserDoesNotExist: id }); } const user = userOpt.Some; user.recordingIds.forEach((recordingId) => { recordings.remove(recordingId); }); users.remove(user.id); return Ok(user); }), createRecording: update( [blob, text, Principal], Result(Recording, AudioRecorderError), (audio, name, userId) => { const userOpt = users.get(userId); if ('None' in userOpt) { return Err({ UserDoesNotExist: userId }); } const user = userOpt.Some; const id = generateId(); const recording: Recording = { id, audio, createdAt: ic.time(), name, userId }; recordings.insert(recording.id, recording); const updatedUser: User = { ...user, recordingIds: [...user.recordingIds, recording.id] }; users.insert(updatedUser.id, updatedUser); return Ok(recording); } ), readRecordings: query([], Vec(Recording), () => { return recordings.values(); }), readRecordingById: query([Principal], Opt(Recording), (id) => { return recordings.get(id); }), deleteRecording: update( [Principal], Result(Recording, AudioRecorderError), (id) => { const recordingOpt = recordings.get(id); if ('None' in recordingOpt) { return Err({ RecordingDoesNotExist: id }); } const recording = recordingOpt.Some; const userOpt = users.get(recording.userId); if ('None' in userOpt) { return Err({ UserDoesNotExist: recording.userId }); } const user = userOpt.Some; const updatedUser: User = { ...user, recordingIds: user.recordingIds.filter( (recordingId) => recordingId.toText() !== recording.id.toText() ) }; users.insert(updatedUser.id, updatedUser); recordings.remove(id); return Ok(recording); } )\n}); function generateId(): Principal { const randomBytes = new Array(29) .fill(0) .map((_) => Math.floor(Math.random() * 256)); return Principal.fromUint8Array(Uint8Array.from(randomBytes));\n} The example above shows a very basic audio recording backend application. There are two types of entities that need to be stored, User and Recording. These are represented as Candid records. Each entity gets its own StableBTreeMap: import { blob, Canister, ic, Err, nat64, Ok, Opt, Principal, query, Record, Result, StableBTreeMap, text, update, Variant, Vec\n} from 'azle'; const User = Record({ id: Principal, createdAt: nat64, recordingIds: Vec(Principal), username: text\n});\ntype User = typeof User.tsType; const Recording = Record({ id: Principal, audio: blob, createdAt: nat64, name: text, userId: Principal\n});\ntype Recording = typeof Recording.tsType; const AudioRecorderError = Variant({ RecordingDoesNotExist: Principal, UserDoesNotExist: Principal\n});\ntype AudioRecorderError = typeof AudioRecorderError.tsType; let users = StableBTreeMap(0);\nlet recordings = StableBTreeMap(1); Notice that each StableBTreeMap has a unique memory id. You can begin to create basic database CRUD functionality by creating one StableBTreeMap per entity. It's up to you to create functionality for querying, filtering, and relations. StableBTreeMap is not a full-featured database solution, but a fundamental building block that may enable you to achieve more advanced database functionality. Demergent Labs plans to deeply explore database solutions on the IC in the future.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » TL;DR","id":"90","title":"TL;DR"},"91":{"body":"","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Caveats","id":"91","title":"Caveats"},"92":{"body":"It seems to be only some float64 values cannot be successfully stored and retrieved with a StableBTreeMap using stableJson because of this bug with JSON.parse: https://github.com/bellard/quickjs/issues/206","breadcrumbs":"Old Candid-based Documentation » Stable Structures » float64 values","id":"92","title":"float64 values"},"93":{"body":"Azle's Candid encoding/decoding implementation is currently not well optimized, and Candid may not be the most optimal encoding format overall, so you may experience heavy instruction usage when performing many StableBTreeMap operations in succession. A rough idea of the overhead from our preliminary testing is probably 1-2 million instructions for a full Candid encoding and decoding of values per StableBTreeMap operation. For these reasons we recommend using the stableJson Serializable object (the default) instead of CandidType Serializable objects.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » CandidType Performance","id":"93","title":"CandidType Performance"},"94":{"body":"Migrations must be performed manually by reading the values out of one StableBTreeMap and writing them into another. Once a StableBTreeMap is initialized to a specific memory id, that memory id cannot be changed unless the canister is completely wiped and initialized again.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Migrations","id":"94","title":"Migrations"},"95":{"body":"Canister values do not currently work with the default stableJson implementation. If you must persist Canisters, consider using the Canister CandidType object as your Serializable object in your StableBTreeMap, or create a custom replacer or reviver for stableJson that handles Canister.","breadcrumbs":"Old Candid-based Documentation » Stable Structures » Canister","id":"95","title":"Canister"},"96":{"body":"Examples: async_await bitcoin composite_queries cross_canister_calls cycles ethereum_json_rpc func_types heartbeat inline_types ledger_canister management_canister outgoing_http_requests threshold_ecdsa rejections timers tuple_types whoami Canisters are generally able to call the query or update methods of other canisters in any subnet. We refer to these types of calls as cross-canister calls. A cross-canister call begins with a definition of the canister to be called. Imagine a simple canister called token_canister: import { Canister, ic, nat64, Opt, Principal, StableBTreeMap, update\n} from 'azle'; let accounts = StableBTreeMap(0); export default Canister({ transfer: update([Principal, nat64], nat64, (to, amount) => { const from = ic.caller(); const fromBalance = getBalance(accounts.get(from)); const toBalance = getBalance(accounts.get(to)); accounts.insert(from, fromBalance - amount); accounts.insert(to, toBalance + amount); return amount; })\n}); function getBalance(accountOpt: Opt): nat64 { if ('None' in accountOpt) { return 0n; } else { return accountOpt.Some; }\n} Now that you have the canister definition, you can import and instantiate it in another canister: import { Canister, ic, nat64, Principal, update } from 'azle';\nimport TokenCanister from './token_canister'; const tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); If you don't have the actual definition of the token canister with the canister method implementations, you can always create your own canister definition without method implementations: import { Canister, ic, nat64, Principal, update } from 'azle'; const TokenCanister = Canister({ transfer: update([Principal, nat64], nat64)\n}); const tokenCanister = TokenCanister( Principal.fromText('r7inp-6aaaa-aaaaa-aaabq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); })\n}); The IC guarantees that cross-canister calls will return. This means that, generally speaking, you will always receive a response from ic.call. If there are errors during the call, ic.call will throw. Wrapping your cross-canister call in a try...catch allows you to handle these errors. Let's add to our example code and explore adding some practical error-handling to stop people from stealing tokens. token_canister: import { Canister, ic, nat64, Opt, Principal, StableBTreeMap, update\n} from 'azle'; let accounts = StableBTreeMap(0); export default Canister({ transfer: update([Principal, nat64], nat64, (to, amount) => { const from = ic.caller(); const fromBalance = getBalance(accounts.get(from)); if (amount > fromBalance) { throw new Error(`${from} has an insufficient balance`); } const toBalance = getBalance(accounts.get(to)); accounts.insert(from, fromBalance - amount); accounts.insert(to, toBalance + amount); return amount; })\n}); function getBalance(accountOpt: Opt): nat64 { if ('None' in accountOpt) { return 0n; } else { return accountOpt.Some; }\n} payout_canister: import { Canister, ic, nat64, Principal, update } from 'azle';\nimport TokenCanister from './index'; const tokenCanister = TokenCanister( Principal.fromText('bkyz2-fmaaa-aaaaa-qaaaq-cai')\n); export default Canister({ payout: update([Principal, nat64], nat64, async (to, amount) => { try { return await ic.call(tokenCanister.transfer, { args: [to, amount] }); } catch (error) { console.log(error); } return 0n; })\n}); Throwing will allow you to express error conditions and halt execution, but you may find embracing the Result variant as a better solution for error handling because of its composability and predictability. So far we have only shown a cross-canister call from an update method. Update methods can call other update methods or query methods (but not composite query methods as discussed below). If an update method calls a query method, that query method will be called in replicated mode. Replicated mode engages the consensus process, but for queries the state will still be discarded. Cross-canister calls can also be initiated from query methods. These are known as composite queries, and in Azle they are simply async query methods. Composite queries can call other composite query methods and regular query methods. Composite queries cannot call update methods. Here's an example of a composite query method: import { bool, Canister, ic, Principal, query } from 'azle'; const SomeCanister = Canister({ queryForBoolean: query([], bool)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ querySomeCanister: query([], bool, async () => { return await ic.call(someCanister.queryForBoolean); })\n}); You can expect cross-canister calls within the same subnet to take up to a few seconds to complete, and cross-canister calls across subnets take about double that time . Composite queries should be much faster, similar to query calls in latency. If you don't need to wait for your cross-canister call to return, you can use notify: import { Canister, ic, Principal, update, Void } from 'azle'; const SomeCanister = Canister({ receiveNotification: update([], Void)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ sendNotification: update([], Void, () => { return ic.notify(someCanister.receiveNotification); })\n}); If you need to send cycles with your cross-canister call, you can add cycles to the config object of ic.notify: import { Canister, ic, Principal, update, Void } from 'azle'; const SomeCanister = Canister({ receiveNotification: update([], Void)\n}); const someCanister = SomeCanister( Principal.fromText('ryjl3-tyaaa-aaaaa-aaaba-cai')\n); export default Canister({ sendNotification: update([], Void, () => { return ic.notify(someCanister.receiveNotification, { cycles: 1_000_000n }); })\n});","breadcrumbs":"Old Candid-based Documentation » Cross-canister » Cross-canister","id":"96","title":"Cross-canister"},"97":{"body":"This chapter is a work in progress.","breadcrumbs":"Old Candid-based Documentation » HTTP » HTTP","id":"97","title":"HTTP"},"98":{"body":"Examples: http_counter import { blob, bool, Canister, Func, nat16, None, Opt, query, Record, text, Tuple, Variant, Vec\n} from 'azle'; const Token = Record({ // add whatever fields you'd like arbitrary_data: text\n}); const StreamingCallbackHttpResponse = Record({ body: blob, token: Opt(Token)\n}); export const Callback = Func([text], StreamingCallbackHttpResponse, 'query'); const CallbackStrategy = Record({ callback: Callback, token: Token\n}); const StreamingStrategy = Variant({ Callback: CallbackStrategy\n}); type HeaderField = [text, text];\nconst HeaderField = Tuple(text, text); const HttpResponse = Record({ status_code: nat16, headers: Vec(HeaderField), body: blob, streaming_strategy: Opt(StreamingStrategy), upgrade: Opt(bool)\n}); const HttpRequest = Record({ method: text, url: text, headers: Vec(HeaderField), body: blob, certificate_version: Opt(nat16)\n}); export default Canister({ http_request: query([HttpRequest], HttpResponse, (req) => { return { status_code: 200, headers: [], body: Buffer.from('hello'), streaming_strategy: None, upgrade: None }; })\n});","breadcrumbs":"Old Candid-based Documentation » HTTP » Incoming HTTP requests","id":"98","title":"Incoming HTTP requests"},"99":{"body":"Examples: ethereum_json_rpc outgoing_http_requests import { Canister, ic, init, nat32, Principal, query, Some, StableBTreeMap, text, update\n} from 'azle';\nimport { HttpResponse, HttpTransformArgs, managementCanister\n} from 'azle/canisters/management'; let stableStorage = StableBTreeMap(0); export default Canister({ init: init([text], (ethereumUrl) => { stableStorage.insert('ethereumUrl', ethereumUrl); }), ethGetBalance: update([text], text, async (ethereumAddress) => { const urlOpt = stableStorage.get('ethereumUrl'); if ('None' in urlOpt) { throw new Error('ethereumUrl is not defined'); } const url = urlOpt.Some; const httpResponse = await ic.call(managementCanister.http_request, { args: [ { url, max_response_bytes: Some(2_000n), method: { post: null }, headers: [], body: Some( Buffer.from( JSON.stringify({ jsonrpc: '2.0', method: 'eth_getBalance', params: [ethereumAddress, 'earliest'], id: 1 }), 'utf-8' ) ), transform: Some({ function: [ic.id(), 'ethTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); return Buffer.from(httpResponse.body.buffer).toString('utf-8'); }), ethGetBlockByNumber: update([nat32], text, async (number) => { const urlOpt = stableStorage.get('ethereumUrl'); if ('None' in urlOpt) { throw new Error('ethereumUrl is not defined'); } const url = urlOpt.Some; const httpResponse = await ic.call(managementCanister.http_request, { args: [ { url, max_response_bytes: Some(2_000n), method: { post: null }, headers: [], body: Some( Buffer.from( JSON.stringify({ jsonrpc: '2.0', method: 'eth_getBlockByNumber', params: [`0x${number.toString(16)}`, false], id: 1 }), 'utf-8' ) ), transform: Some({ function: [ic.id(), 'ethTransform'] as [ Principal, string ], context: Uint8Array.from([]) }) } ], cycles: 50_000_000n }); return Buffer.from(httpResponse.body.buffer).toString('utf-8'); }), ethTransform: query([HttpTransformArgs], HttpResponse, (args) => { return { ...args.response, headers: [] }; })\n});","breadcrumbs":"Old Candid-based Documentation » HTTP » Outgoing HTTP requests","id":"99","title":"Outgoing HTTP requests"}},"length":234,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}},"df":7,"docs":{"102":{"tf":1.4142135623730951},"142":{"tf":2.0},"166":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"134":{"tf":1.0},"16":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"x":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"6":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"1":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"'":{"*":{"'":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":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":{"85":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"34":{"tf":1.0}}}},"1":{"0":{"6":{"4":{"3":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"6":{"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":2,"docs":{"149":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"8":{"df":9,"docs":{"116":{"tf":2.449489742783178},"122":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"4":{":":{"3":{"5":{":":{"3":{"0":{".":{"4":{"3":{"3":{"5":{"0":{"1":{"9":{"8":{"0":{"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":{}},"6":{":":{"3":{"4":{".":{"6":{"5":{"2":{"5":{"8":{"7":{"4":{"1":{"2":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"_":{"1":{"4":{"1":{"_":{"1":{"8":{"3":{"_":{"4":{"6":{"0":{"_":{"4":{"6":{"9":{"_":{"2":{"3":{"1":{"_":{"7":{"3":{"1":{"_":{"6":{"8":{"7":{"_":{"3":{"0":{"3":{"_":{"7":{"1":{"5":{"_":{"8":{"8":{"4":{"_":{"1":{"0":{"5":{"_":{"7":{"2":{"7":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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.4142135623730951}},"t":{"1":{"4":{":":{"3":{"5":{":":{"3":{"1":{".":{"9":{"8":{"3":{"5":{"9":{"0":{"df":0,"docs":{},"z":{"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":{}},"5":{":":{"0":{"1":{":":{"3":{"9":{".":{"1":{"9":{"4":{"3":{"7":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"_":{"4":{"4":{"6":{"_":{"7":{"4":{"4":{"_":{"0":{"7":{"3":{"_":{"7":{"0":{"9":{"_":{"5":{"5":{"1":{"_":{"6":{"1":{"5":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"157":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"166":{"tf":1.7320508075688772},"183":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":2.0},"34":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"2":{".":{"0":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"7":{"1":{"8":{"2":{"8":{"1":{"8":{"2":{"8":{"4":{"5":{"9":{"0":{"4":{"5":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"233":{"tf":1.0}}},"4":{"df":4,"docs":{"0":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"59":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"62":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"5":{"4":{"df":1,"docs":{"90":{"tf":1.0}}},"5":{"df":2,"docs":{"154":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"4":{"7":{"_":{"4":{"8":{"3":{"_":{"6":{"4":{"7":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"88":{"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":9,"docs":{"108":{"tf":1.0},"166":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"34":{"tf":1.0},"87":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"a":{"a":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"7":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}},"u":{"a":{"a":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"3":{".":{"1":{"4":{"1":{"5":{"9":{"2":{"7":{"df":2,"docs":{"145":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"7":{"6":{"7":{"df":2,"docs":{"150":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"179":{"tf":1.0},"210":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"0":{"_":{"2":{"8":{"2":{"_":{"3":{"6":{"6":{"_":{"9":{"2":{"0":{"_":{"9":{"3":{"8":{"_":{"4":{"6":{"3":{"_":{"4":{"6":{"3":{"_":{"3":{"7":{"4":{"_":{"6":{"0":{"7":{"_":{"4":{"3":{"1":{"_":{"7":{"6":{"8":{"_":{"2":{"1":{"1":{"_":{"4":{"5":{"5":{"df":2,"docs":{"153":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"153":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"6":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":4,"docs":{"166":{"tf":1.7320508075688772},"18":{"tf":1.0},"233":{"tf":1.0},"34":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.0}}},"2":{"df":1,"docs":{"140":{"tf":1.0}}},"_":{"2":{"9":{"4":{"_":{"9":{"6":{"7":{"_":{"2":{"9":{"5":{"df":2,"docs":{"156":{"tf":1.7320508075688772},"88":{"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":5,"docs":{"233":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}},"5":{"0":{"0":{"df":1,"docs":{"32":{"tf":1.0}}},"2":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"99":{"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":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"34":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"a":{"a":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"2":{"6":{"9":{"2":{"3":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"1":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"_":{"5":{"3":{"5":{"df":2,"docs":{"155":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"a":{"a":{"a":{"a":{"df":3,"docs":{"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"6":{"c":{"3":{"5":{"5":{"8":{"a":{"a":{"d":{"2":{"4":{"2":{"2":{"4":{"8":{"5":{"2":{"a":{"9":{"5":{"8":{"2":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"1":{"7":{"8":{"4":{"0":{"2":{"c":{"b":{"3":{"6":{"7":{"9":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"32":{"tf":1.0},"99":{"tf":2.0}}},"9":{"0":{"0":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"19":{"tf":1.0}}},"6":{"df":3,"docs":{"61":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"_":{"2":{"2":{"3":{"_":{"3":{"7":{"2":{"_":{"0":{"3":{"6":{"_":{"8":{"5":{"4":{"_":{"7":{"7":{"5":{"_":{"8":{"0":{"7":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"152":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"6":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}},"_":{"df":1,"docs":{"85":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"17":{"tf":2.0},"23":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}}},"a":{"a":{"a":{"a":{"a":{"df":15,"docs":{"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"147":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"73":{"tf":2.0},"79":{"tf":2.0},"8":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"96":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"q":{"df":5,"docs":{"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"b":{"a":{"df":5,"docs":{"134":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{},"q":{"df":3,"docs":{"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"163":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"90":{"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":3,"docs":{"22":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"116":{"tf":1.7320508075688772},"117":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"}":{"$":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"147":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"33":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"df":2,"docs":{"82":{"tf":1.0},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":1,"docs":{"88":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"22":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"215":{"tf":1.0},"58":{"tf":3.7416573867739413},"61":{"tf":1.4142135623730951},"67":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"j":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"52":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"96":{"tf":3.872983346207417}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"217":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"32":{"tf":2.8284271247461903}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"64":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"144":{"tf":2.0},"162":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":21,"docs":{"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.0},"13":{"tf":1.0},"167":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.0},"58":{"tf":3.4641016151377544},"59":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"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":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"'":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":9,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"58":{"tf":1.0}},"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":{"3":{"tf":1.0},"58":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":21,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":4.123105625617661},"59":{"tf":2.23606797749979},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"80":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"y":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"1":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"2":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"3":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"4":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":28,"docs":{"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":2.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"2":{"9":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"0":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"(":{"(":{"a":{"c":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"147":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":3.4641016151377544},"23":{"tf":1.0},"36":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"96":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"17":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"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":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"180":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"90":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"90":{"tf":2.6457513110645907}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":2.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.0},"20":{"tf":2.0},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"233":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0}}}},"df":8,"docs":{"40":{"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},"59":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":2.449489742783178}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":2.23606797749979},"38":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"58":{"tf":1.7320508075688772},"85":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":3.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":2.0},"96":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"192":{"tf":1.0},"215":{"tf":1.0}}},"y":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":162,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"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":1.0},"139":{"tf":1.0},"14":{"tf":2.0},"140":{"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.8284271247461903},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":2.0},"24":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":3.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":3.0},"69":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":2.0},"90":{"tf":2.8284271247461903},"96":{"tf":3.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":4,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"193":{"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":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":2.23606797749979},"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"@":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}}},"df":4,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"64":{"tf":2.6457513110645907},"66":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"37":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"1":{"0":{"0":{"2":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"6":{"4":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"2":{"8":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"5":{"5":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"1":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"6":{"1":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"43":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"37":{"tf":1.0},"48":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"49":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"50":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"d":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"58":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"53":{"tf":2.449489742783178},"59":{"tf":1.0},"7":{"tf":1.0}}},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"103":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":2.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"59":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"166":{"tf":1.0},"59":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"41":{"tf":1.0},"63":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"90":{"tf":1.0},"96":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"96":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"58":{"tf":2.6457513110645907}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"a":{"df":6,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"105":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":2.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"26":{"tf":1.0},"60":{"tf":1.0},"96":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":2.0},"58":{"tf":2.23606797749979},"78":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":12,"docs":{"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"114":{"tf":2.23606797749979},"120":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"58":{"tf":1.0}},"o":{"b":{"df":31,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"141":{"tf":1.0},"142":{"tf":3.4641016151377544},"144":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178},"90":{"tf":2.23606797749979},"98":{"tf":2.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"58":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":7,"docs":{"184":{"tf":2.0},"185":{"tf":2.0},"205":{"tf":1.0},"23":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":1.7320508075688772},"88":{"tf":1.0}}},"l":{"df":29,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"126":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":1.0},"143":{"tf":3.4641016151377544},"159":{"tf":1.7320508075688772},"163":{"tf":2.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"199":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"57":{"tf":1.0},"59":{"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":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"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":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"g":{"df":4,"docs":{"110":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":2.0},"193":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"36":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"33":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":2.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"2":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"6":{"9":{"df":0,"docs":{},"f":{"4":{"4":{"2":{"9":{"9":{"8":{"df":0,"docs":{},"e":{"4":{"c":{"d":{"a":{"4":{"6":{"1":{"9":{"1":{"6":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"a":{"9":{"b":{"c":{"9":{"1":{"4":{"1":{"8":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"\"":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"0":{"tf":1.0},"120":{"tf":1.0},"134":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"96":{"tf":2.449489742783178}}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"147":{"tf":1.0},"17":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":2.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"98":{"tf":2.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":70,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":2.449489742783178},"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},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":2.0},"181":{"tf":1.0},"187":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":2.8284271247461903},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"24":{"tf":2.0},"25":{"tf":1.0},"26":{"tf":2.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979},"67":{"tf":3.1622776601683795},"72":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":3.3166247903554},"87":{"tf":3.0},"88":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":4.58257569495584}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"116":{"tf":1.0},"125":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":49,"docs":{"108":{"tf":1.7320508075688772},"11":{"tf":1.0},"111":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"19":{"tf":1.0},"193":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":2.0},"67":{"tf":1.7320508075688772},"69":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":3.4641016151377544},"90":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":173,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":2.449489742783178},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"150":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":2.23606797749979},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"170":{"tf":2.0},"171":{"tf":2.0},"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772},"19":{"tf":2.8284271247461903},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"23":{"tf":3.605551275463989},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"24":{"tf":2.8284271247461903},"25":{"tf":1.7320508075688772},"26":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"36":{"tf":2.449489742783178},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":3.0},"59":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"61":{"tf":2.0},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"67":{"tf":3.0},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":2.23606797749979},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.449489742783178},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":3.3166247903554},"87":{"tf":4.0},"88":{"tf":3.0},"9":{"tf":1.7320508075688772},"90":{"tf":2.6457513110645907},"94":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":6.324555320336759},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":10,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"19":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"193":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"52":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"195":{"tf":1.0},"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"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":{"31":{"tf":1.0}}}}}}},"i":{"d":{"df":14,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":2.23606797749979},"231":{"tf":1.0},"232":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"52":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"159":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"144":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"104":{"tf":1.0},"233":{"tf":1.0},"58":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"3":{"tf":1.0},"52":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.0}},"k":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"54":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"174":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"167":{"tf":1.0},"179":{"tf":1.4142135623730951}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"n":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":15,"docs":{"215":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"7":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"31":{"tf":1.0},"62":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":5,"docs":{"112":{"tf":1.0},"115":{"tf":2.0},"21":{"tf":1.0},"25":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"215":{"tf":1.0},"3":{"tf":1.0},"6":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"58":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0},"58":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}},"u":{"d":{"df":3,"docs":{"58":{"tf":3.3166247903554},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":19,"docs":{"116":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"215":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":2.6457513110645907},"61":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"78":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"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":{"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"31":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"233":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.449489742783178},"58":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"41":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.449489742783178},"78":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}},"x":{"df":2,"docs":{"58":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"120":{"tf":1.0},"139":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"103":{"tf":1.4142135623730951},"112":{"tf":1.0},"34":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"39":{"tf":1.0},"52":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"i":{"d":{"df":3,"docs":{"29":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0}}}}}},"`":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"102":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"96":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":23,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}}}}}}}},"df":6,"docs":{"232":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.7320508075688772},"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"df":36,"docs":{"102":{"tf":3.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"184":{"tf":2.8284271247461903},"185":{"tf":2.8284271247461903},"19":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":2.8284271247461903},"204":{"tf":1.7320508075688772},"210":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"23":{"tf":2.8284271247461903},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":4.898979485566356},"96":{"tf":4.0},"98":{"tf":2.8284271247461903},"99":{"tf":2.449489742783178}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"165":{"tf":1.0},"39":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"214":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":2.0},"19":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"11":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":2.6457513110645907},"108":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"167":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0},"87":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"103":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":2.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":2.449489742783178},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"120":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"163":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":3.3166247903554}}}}},"u":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"52":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":10,"docs":{"11":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":31,"docs":{"103":{"tf":3.1622776601683795},"116":{"tf":2.449489742783178},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":2.23606797749979},"132":{"tf":2.23606797749979},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979}}}},"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":{"174":{"tf":1.0}}}}}}}},"df":17,"docs":{"108":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"144":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}}},"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"87":{"tf":2.449489742783178}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"233":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"28":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":31,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"67":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":123,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.8284271247461903},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"23":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"96":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"56":{"tf":1.7320508075688772},"90":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"31":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"o":{"df":0,"docs":{},"y":{"df":32,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":2.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"3":{"tf":2.449489742783178},"33":{"tf":1.0},"36":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":2.23606797749979},"55":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"7":{"tf":2.6457513110645907},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.23606797749979},"76":{"tf":2.23606797749979},"78":{"tf":2.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":2.449489742783178},"82":{"tf":2.0},"9":{"tf":2.449489742783178},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"195":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"176":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"215":{"tf":1.4142135623730951},"34":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":3.1622776601683795},"74":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":2.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"11":{"tf":2.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"233":{"tf":1.0},"36":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"6":{".":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":52,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"2":{"tf":2.0},"3":{"tf":2.0},"36":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.7320508075688772},"52":{"tf":1.0},"6":{"tf":2.449489742783178},"62":{"tf":2.0},"64":{"tf":2.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.6457513110645907},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":2.0},"85":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"i":{"a":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"l":{"\\":{"0":{"0":{"\\":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"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":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"103":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"114":{"tf":1.0},"22":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"83":{"tf":1.0}}}},"y":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"181":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"105":{"tf":1.0},"55":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"59":{"tf":1.0},"67":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"32":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"31":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"48":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"57":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"87":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"33":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"103":{"tf":1.0},"233":{"tf":1.4142135623730951},"31":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"67":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"59":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"88":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"113":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}}}},"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"136":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":3.605551275463989},"67":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"7":{"tf":1.0},"90":{"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":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"167":{"tf":1.0},"169":{"tf":1.4142135623730951},"18":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"108":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"2":{"tf":1.0},"62":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"108":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"58":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"10":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"58":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"87":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"5":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"159":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"163":{"tf":1.0},"90":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.7320508075688772},"144":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":3.605551275463989},"32":{"tf":3.3166247903554},"33":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":2.449489742783178}}}}}},"s":{"2":{"0":{"2":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"63":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"19":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":10,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.0},"27":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"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":{"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":113,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"90":{"tf":2.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"166":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"175":{"tf":1.0},"181":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.0},"67":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"96":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"59":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"59":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"215":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772},"93":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"87":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":120,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"96":{"tf":2.8284271247461903},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"s":{"df":9,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"215":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"16":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"23":{"tf":2.449489742783178},"32":{"tf":2.449489742783178},"4":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"36":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"144":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"126":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"87":{"tf":1.0},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"p":{":":{"/":{"/":{"d":{"df":0,"docs":{},"f":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"13":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.0},"23":{"tf":1.4142135623730951},"24":{"tf":2.23606797749979},"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"103":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"83":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":20,"docs":{"0":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"23":{"tf":1.7320508075688772},"3":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"7":{"tf":1.0},"82":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}}}}},"l":{"(":{"0":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"198":{"tf":1.0},"90":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"29":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.0},"39":{"tf":1.0}}}},"d":{"df":6,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"165":{"tf":2.23606797749979}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"147":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}},"x":{"df":2,"docs":{"10":{"tf":1.0},"108":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"141":{"tf":1.0},"145":{"tf":3.7416573867739413},"88":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"110":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":3.7416573867739413},"88":{"tf":2.6457513110645907},"92":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}},"m":{"a":{"a":{"a":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":28,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"df":6,"docs":{"2":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"a":{"a":{"a":{"df":5,"docs":{"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"106":{"tf":1.0}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":2.23606797749979}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"4":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"df":5,"docs":{"115":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"n":{"c":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"120":{"tf":1.0},"186":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":6,"docs":{"141":{"tf":1.0},"147":{"tf":3.3166247903554},"184":{"tf":1.0},"185":{"tf":1.0},"88":{"tf":2.6457513110645907},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"147":{"tf":1.0}}},"df":23,"docs":{"102":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"16":{"tf":1.0},"161":{"tf":1.4142135623730951},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"205":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"87":{"tf":1.0},"90":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"215":{"tf":1.0},"29":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":13,"docs":{"103":{"tf":1.0},"18":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"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":1,"docs":{"196":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":2,"docs":{"59":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"191":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.4142135623730951}}},"df":1,"docs":{"153":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"m":{"b":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"85":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"i":{"b":{"df":6,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"54":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":8,"docs":{"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"85":{"tf":1.0},"87":{"tf":1.0}},"o":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"58":{"tf":3.3166247903554},"60":{"tf":1.0}}}},"w":{"df":4,"docs":{"218":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.0},"233":{"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":{"58":{"tf":1.0},"87":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"69":{"tf":1.0}}}}}},"h":{"1":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":6,"docs":{"109":{"tf":1.0},"14":{"tf":1.0},"32":{"tf":4.242640687119285},"90":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"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":1,"docs":{"10":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"18":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"34":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.23606797749979},"209":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"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":6,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"233":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"164":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"8":{"tf":1.0}}}},"p":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"233":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":15,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":8,"docs":{"103":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"34":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"108":{"tf":1.0},"140":{"tf":1.0},"34":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"61":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":2,"docs":{"22":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"233":{"tf":1.0},"29":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"17":{"tf":1.0}}}}}}}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"/":{"?":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"98":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":5,"docs":{"182":{"tf":1.0},"185":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"df":9,"docs":{"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"195":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"98":{"tf":1.0}}}}}}}}}},"df":28,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":2.0}}}}}}}}},"s":{":":{"/":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"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":{"/":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"2":{"0":{"6":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"62":{"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":{"d":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"k":{"c":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"6":{"4":{"2":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"0":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"c":{"'":{"df":2,"docs":{"59":{"tf":1.0},"85":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"102":{"tf":1.0},"125":{"tf":1.0},"163":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"96":{"tf":2.0}},"l":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"123":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"137":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"140":{"tf":1.0}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"173":{"tf":1.0},"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":2,"docs":{"128":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"d":{"1":{"2":{"8":{"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":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"163":{"tf":1.0},"96":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"135":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"178":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"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":{"136":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.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":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"102":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"102":{"tf":1.0},"232":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"227":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"223":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"180":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"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":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"0":{"5":{"0":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":16,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"136":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"25":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":99,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":5.477225575051661},"59":{"tf":3.0},"60":{"tf":2.6457513110645907},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":3.0},"99":{"tf":1.0}},"p":{"df":14,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0}}},"r":{"c":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"25":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"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":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"\"":{">":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":9,"docs":{"161":{"tf":2.23606797749979},"167":{"tf":1.0},"173":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":4.58257569495584},"94":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"52":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"58":{"tf":1.7320508075688772},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":132,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"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.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.7320508075688772},"90":{"tf":2.6457513110645907},"96":{"tf":3.3166247903554},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":1,"docs":{"144":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"29":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"106":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.7320508075688772},"90":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"83":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"19":{"tf":1.0},"233":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"63":{"tf":1.0},"67":{"tf":1.0}}}},"df":2,"docs":{"85":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":7,"docs":{"58":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0}}}},"o":{"df":2,"docs":{"23":{"tf":1.0},"8":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"64":{"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":1,"docs":{"58":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"101":{"tf":1.7320508075688772},"120":{"tf":2.0},"182":{"tf":1.0},"186":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"i":{"df":6,"docs":{"186":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"120":{"tf":1.0},"219":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"33":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"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":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"182":{"tf":1.0},"187":{"tf":1.0},"33":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"117":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"2":{"tf":2.6457513110645907},"206":{"tf":1.0},"3":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":3.0},"62":{"tf":2.6457513110645907},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"82":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"147":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"166":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.7320508075688772},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"1":{"6":{"df":3,"docs":{"141":{"tf":1.0},"150":{"tf":3.7416573867739413},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"3":{"2":{"df":4,"docs":{"141":{"tf":1.0},"151":{"tf":3.7416573867739413},"166":{"tf":3.4641016151377544},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"141":{"tf":1.0},"152":{"tf":3.7416573867739413},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"141":{"tf":1.0},"149":{"tf":3.7416573867739413},"88":{"tf":2.6457513110645907}}},"df":4,"docs":{"140":{"tf":2.0},"141":{"tf":1.0},"148":{"tf":3.7416573867739413},"88":{"tf":3.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.0},"114":{"tf":1.7320508075688772},"58":{"tf":2.6457513110645907}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"n":{"d":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.7320508075688772},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"f":{"a":{"c":{"df":4,"docs":{"73":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"32":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"20":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"58":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"61":{"tf":1.0},"85":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"10":{"tf":1.4142135623730951},"106":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.4142135623730951},"74":{"tf":1.0},"82":{"tf":1.0}}}}},"t":{"'":{"df":7,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"80":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"107":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.449489742783178},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"s":{"df":5,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"90":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":1.7320508075688772},"90":{"tf":1.0},"92":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"90":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"16":{"tf":1.4142135623730951},"53":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.7320508075688772}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":7,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":9,"docs":{"163":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":2.6457513110645907},"23":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"87":{"tf":3.1622776601683795},"88":{"tf":1.0},"90":{"tf":3.3166247903554}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"6":{"tf":2.0},"75":{"tf":2.0}}}},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"147":{"tf":1.0},"58":{"tf":1.0}},"n":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"56":{"tf":1.7320508075688772},"90":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}},"m":{"df":0,"docs":{},"j":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"34":{"tf":1.0},"59":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"96":{"tf":1.0}},"y":{"=":{"1":{"0":{"1":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"108":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"112":{"tf":1.0},"115":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"119":{"tf":1.0},"222":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"29":{"tf":1.0},"53":{"tf":1.0}}}},"t":{"'":{"df":6,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"106":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":2.0},"19":{"tf":1.0},"233":{"tf":2.0},"34":{"tf":3.0},"58":{"tf":2.0},"59":{"tf":2.23606797749979},"85":{"tf":2.449489742783178},"87":{"tf":2.8284271247461903}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":10,"docs":{"2":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"72":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"k":{"df":2,"docs":{"103":{"tf":1.0},"20":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"o":{"a":{"d":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"216":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":2.0},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":2.449489742783178},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"8":{"tf":1.0}}},"t":{"df":3,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"106":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"59":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":4,"docs":{"140":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{";":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"26":{"tf":1.0},"38":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"100":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.7320508075688772},"62":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"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":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"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":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"169":{"tf":1.0}}}}}}}},"df":5,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"36":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"p":{"(":{"(":{"_":{"df":1,"docs":{"90":{"tf":1.0}}},"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":2.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"h":{".":{"df":2,"docs":{"146":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"145":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}}},"y":{"b":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"218":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"87":{"tf":2.0},"90":{"tf":3.872983346207417},"94":{"tf":1.4142135623730951}}},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.7320508075688772},"22":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951},"67":{"tf":2.8284271247461903},"72":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}},"df":1,"docs":{"210":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"df":39,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"147":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"20":{"tf":1.4142135623730951},"205":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"36":{"tf":2.23606797749979},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":2.6457513110645907},"78":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":3.1622776601683795},"86":{"tf":1.0},"87":{"tf":2.8284271247461903},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":4.123105625617661},"98":{"tf":1.0},"99":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"b":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"34":{"tf":1.4142135623730951}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"108":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"196":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":7,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"107":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"52":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"193":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}}}},"s":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}},"g":{"df":7,"docs":{"116":{"tf":2.449489742783178},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.7320508075688772},"87":{"tf":1.0}},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"v":{"df":1,"docs":{"52":{"tf":1.0}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"78":{"tf":3.0},"79":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":2.0}}}},"t":{"1":{"6":{"df":6,"docs":{"141":{"tf":1.0},"155":{"tf":3.7416573867739413},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"141":{"tf":1.0},"156":{"tf":3.7416573867739413},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":2.6457513110645907},"99":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{">":{"(":{"0":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"141":{"tf":1.0},"157":{"tf":3.7416573867739413},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":2.8284271247461903},"96":{"tf":4.358898943540674}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"154":{"tf":3.7416573867739413},"219":{"tf":1.4142135623730951},"88":{"tf":3.0},"90":{"tf":2.6457513110645907}}},"df":7,"docs":{"119":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"141":{"tf":1.0},"153":{"tf":3.7416573867739413},"171":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.23606797749979},"61":{"tf":1.4142135623730951}},"e":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":5.196152422706632}}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":5.196152422706632}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"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":{"233":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"103":{"tf":1.0},"115":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"114":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":1.0}}}}},"w":{"df":11,"docs":{"139":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":2.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":3.4641016151377544}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"n":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":2.449489742783178}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"2":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"159":{"tf":2.0},"174":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"144":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}},"i":{"df":5,"docs":{"116":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"96":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"134":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"df":8,"docs":{"115":{"tf":1.0},"215":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"106":{"tf":2.23606797749979},"19":{"tf":1.7320508075688772},"217":{"tf":1.4142135623730951},"3":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}},"x":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"158":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.0},"158":{"tf":3.872983346207417},"159":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"165":{"tf":2.6457513110645907},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"88":{"tf":3.605551275463989},"99":{"tf":1.4142135623730951}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":20,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"172":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.23606797749979},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"90":{"tf":3.3166247903554},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"222":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":2,"docs":{"163":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"l":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"df":7,"docs":{"15":{"tf":1.0},"165":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"106":{"tf":1.0},"56":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"109":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"159":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"6":{"4":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"159":{"tf":1.0}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":2.0}}}}}}}},"df":11,"docs":{"141":{"tf":1.0},"159":{"tf":2.8284271247461903},"174":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"111":{"tf":1.0},"233":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":1,"docs":{"58":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"27":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"83":{"tf":1.0},"99":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0},"27":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"178":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"49":{"tf":1.0},"62":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":1,"docs":{"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":2.8284271247461903}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":2.23606797749979},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"67":{"tf":1.0},"85":{"tf":2.23606797749979},"88":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"58":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"14":{"tf":1.0},"144":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"23":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{"$":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0}}}},"y":{"df":1,"docs":{"58":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"124":{"tf":1.0},"135":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"r":{"df":5,"docs":{"183":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"163":{"tf":1.0},"167":{"tf":1.0},"177":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"24":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"186":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"85":{"tf":1.0},"87":{"tf":2.0},"90":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}},"n":{"df":1,"docs":{"90":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.0},"215":{"tf":2.23606797749979},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772}}}}}}},"o":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"18":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":6,"docs":{"182":{"tf":1.0},"188":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"59":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"182":{"tf":1.0},"189":{"tf":1.0},"32":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":3,"docs":{"147":{"tf":1.0},"160":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":3,"docs":{"134":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":29,"docs":{"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"134":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.7320508075688772},"160":{"tf":4.0},"161":{"tf":2.23606797749979},"163":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"58":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"90":{"tf":3.872983346207417},"96":{"tf":2.8284271247461903},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":2.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"167":{"tf":1.0},"178":{"tf":1.7320508075688772},"32":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":1,"docs":{"148":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}},"df":1,"docs":{"153":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"m":{"b":{"df":1,"docs":{"166":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"90":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"192":{"tf":1.0},"194":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":2.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"96":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"58":{"tf":1.0}},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"31":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":87,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"97":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{".":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"10":{"tf":1.4142135623730951},"105":{"tf":1.0},"11":{"tf":1.4142135623730951},"17":{"tf":1.0},"216":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"75":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":14,"docs":{"159":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.449489742783178},"193":{"tf":1.0},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"36":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772},"60":{"tf":2.0}}}}},"df":1,"docs":{"52":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"0":{"tf":1.0},"192":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"195":{"tf":1.0},"207":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"217":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"q":{"a":{"a":{"a":{"df":0,"docs":{},"q":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":73,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.8284271247461903},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":2.23606797749979},"160":{"tf":2.0},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":2.6457513110645907},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"205":{"tf":1.0},"219":{"tf":2.449489742783178},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":3.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":4.898979485566356},"87":{"tf":3.0},"88":{"tf":2.8284271247461903},"90":{"tf":3.3166247903554},"96":{"tf":4.358898943540674},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"y":{"(":{"[":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"142":{"tf":1.0},"168":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"98":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"156":{"tf":1.0},"222":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"157":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.0}}},"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"160":{"tf":1.0},"176":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"164":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.0}},"j":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0}},"s":{"_":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"18":{"tf":1.0},"60":{"tf":1.0}}}},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"195":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"116":{"tf":2.449489742783178},"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":3.1622776601683795}}}}}}},"d":{"df":9,"docs":{"218":{"tf":1.4142135623730951},"222":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"90":{"tf":2.0},"94":{"tf":1.0}},"i":{"df":3,"docs":{"59":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"58":{"tf":1.0},"93":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"147":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":2,"docs":{"128":{"tf":1.0},"130":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"15":{"tf":1.0},"166":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":13,"docs":{"102":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"161":{"tf":3.0},"184":{"tf":2.449489742783178},"185":{"tf":2.449489742783178},"204":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"59":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":3.0},"90":{"tf":4.358898943540674},"98":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"1":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"90":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":1,"docs":{"90":{"tf":2.449489742783178}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":8,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"116":{"tf":1.7320508075688772},"120":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.4142135623730951},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"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":{"59":{"tf":1.7320508075688772}}}}}}}}}}},"df":3,"docs":{"233":{"tf":1.0},"34":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"219":{"tf":1.0},"58":{"tf":2.449489742783178},"78":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"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":1,"docs":{"102":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"'":{"df":2,"docs":{"178":{"tf":1.0},"31":{"tf":1.0}}},"df":16,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"6":{"tf":2.449489742783178},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.4142135623730951},"74":{"tf":2.0},"75":{"tf":2.23606797749979},"76":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"58":{"tf":2.449489742783178},"60":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":3,"docs":{"116":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":2,"docs":{"216":{"tf":1.0},"54":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"52":{"tf":1.0},"83":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"72":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"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":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":18,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":2.449489742783178},"34":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"144":{"tf":1.0},"22":{"tf":1.7320508075688772},"36":{"tf":1.0},"52":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"b":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"d":{"b":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"14":{"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":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"141":{"tf":1.0},"162":{"tf":3.605551275463989},"18":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"20":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"103":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":9,"docs":{"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.0},"96":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":2.0}}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":2,"docs":{"53":{"tf":1.0},"67":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":6,"docs":{"17":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"110":{"tf":1.0},"58":{"tf":1.4142135623730951},"72":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":104,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":3.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"67":{"tf":2.23606797749979},"85":{"tf":2.449489742783178},"87":{"tf":2.6457513110645907},"88":{"tf":1.7320508075688772},"90":{"tf":5.196152422706632},"96":{"tf":3.872983346207417},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"v":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"f":{"df":1,"docs":{"10":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"33":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"58":{"tf":2.0},"59":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"36":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"41":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"52":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":27,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"52":{"tf":1.0},"80":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"216":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"59":{"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":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"10":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":1,"docs":{"52":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"147":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"34":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":2.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"204":{"tf":1.0},"210":{"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":85,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"105":{"tf":1.0},"55":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":2.0},"60":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"13":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"k":{"df":1,"docs":{"59":{"tf":1.0}}},"m":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}},"n":{"df":1,"docs":{"87":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"d":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"132":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"103":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"58":{"tf":1.0},"96":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"144":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.4142135623730951},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"108":{"tf":1.0},"90":{"tf":3.4641016151377544},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}}}}}}}},"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":2.449489742783178},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"17":{"tf":4.0},"32":{"tf":1.0}}}},"i":{"c":{"df":28,"docs":{"115":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"88":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":22,"docs":{"14":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"191":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"231":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"120":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"0":{".":{"3":{"9":{".":{"7":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"l":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"103":{"tf":2.449489742783178},"63":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"5":{"tf":1.0},"96":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"113":{"tf":1.0},"195":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"210":{"tf":2.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}}}}},"df":2,"docs":{"210":{"tf":1.0},"58":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"58":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"109":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"215":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":6,"docs":{"53":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"102":{"tf":2.0},"58":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"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":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"59":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"116":{"tf":1.0},"119":{"tf":1.0},"19":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"223":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"233":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"0":{"5":{"0":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"2":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"159":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.4142135623730951},"96":{"tf":3.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"19":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"60":{"tf":1.0},"96":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":10,"docs":{"10":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"78":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"217":{"tf":1.0},"4":{"tf":1.0}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"233":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"111":{"tf":1.0},"218":{"tf":2.6457513110645907},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":1.0},"90":{"tf":3.1622776601683795}},"e":{"6":{"4":{"df":5,"docs":{"218":{"tf":2.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"225":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"227":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}}}}},"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":2,"docs":{"219":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"90":{"tf":2.0},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"df":12,"docs":{"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"219":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":4.795831523312719},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"110":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"223":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"33":{"tf":1.0},"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":2.6457513110645907},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.6457513110645907},"82":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"181":{"tf":1.0},"215":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":3.0},"63":{"tf":1.0},"67":{"tf":2.0},"75":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"96":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"18":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"102":{"tf":2.449489742783178}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"10":{"tf":1.0},"181":{"tf":1.0},"6":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"219":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"110":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":2.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":12,"docs":{"147":{"tf":1.7320508075688772},"164":{"tf":2.23606797749979},"168":{"tf":1.0},"169":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.0},"67":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"108":{"tf":1.0},"11":{"tf":1.7320508075688772},"16":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":2.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"113":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":3.0},"67":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":5,"docs":{"2":{"tf":1.0},"52":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"140":{"tf":1.0},"31":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"88":{"tf":1.0}}},"3":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"233":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"166":{"tf":1.0}},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":2.0},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"193":{"tf":1.0}}},"df":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":{"40":{"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},"59":{"tf":1.4142135623730951},"74":{"tf":1.0},"93":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{">":{"(":{"0":{"df":3,"docs":{"87":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":2.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"141":{"tf":1.0},"147":{"tf":2.8284271247461903},"161":{"tf":1.7320508075688772},"163":{"tf":2.6457513110645907},"164":{"tf":3.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"178":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":2.6457513110645907},"185":{"tf":2.6457513110645907},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"198":{"tf":1.0},"219":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":3.0},"85":{"tf":2.449489742783178},"87":{"tf":3.4641016151377544},"88":{"tf":3.4641016151377544},"90":{"tf":3.7416573867739413},"98":{"tf":2.6457513110645907},"99":{"tf":1.7320508075688772}}}}},"f":{"df":0,"docs":{},"j":{"df":1,"docs":{"4":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"67":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}},"k":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}},"r":{"d":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"109":{"tf":1.0},"58":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"77":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":9,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"181":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":2.449489742783178},"8":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"w":{"df":7,"docs":{"126":{"tf":1.0},"144":{"tf":1.4142135623730951},"187":{"tf":1.0},"32":{"tf":1.4142135623730951},"87":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"166":{"tf":1.0},"22":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"87":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"58":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"59":{"tf":1.7320508075688772},"96":{"tf":1.0}},"r":{"df":11,"docs":{"102":{"tf":1.7320508075688772},"111":{"tf":1.0},"120":{"tf":1.0},"209":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"25":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"102":{"tf":3.3166247903554},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"1":{".":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":2.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":2.23606797749979},"96":{"tf":3.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"0":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"1":{".":{"7":{"3":{".":{"0":{"df":1,"docs":{"52":{"tf":1.0}}},"df":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":{"2":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"df":1,"docs":{"18":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"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":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}},"k":{"df":4,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"18":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"58":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"167":{"tf":1.0},"181":{"tf":1.7320508075688772},"87":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":31,"docs":{"102":{"tf":1.0},"11":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"y":{".":{".":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"63":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.7320508075688772},"219":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.0},"36":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":7,"docs":{"113":{"tf":1.0},"147":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0}}}},"y":{"a":{"a":{"a":{"df":5,"docs":{"134":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":48,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"219":{"tf":1.4142135623730951},"233":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":3.872983346207417},"96":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":7,"docs":{"102":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"219":{"tf":1.4142135623730951},"90":{"tf":2.8284271247461903}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"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":5,"docs":{"215":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":31,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"63":{"tf":1.0},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"85":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"[":{"8":{"3":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"6":{"8":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"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":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"102":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"142":{"tf":1.4142135623730951},"166":{"tf":1.0},"90":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"r":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"109":{"tf":1.0},"215":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"78":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"57":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"105":{"tf":1.0},"55":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"58":{"tf":1.0}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":72,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"179":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"191":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":2.8284271247461903},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":4.58257569495584},"88":{"tf":2.449489742783178},"90":{"tf":2.23606797749979},"96":{"tf":4.123105625617661},"99":{"tf":1.0}},"e":{"(":{"[":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"179":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"231":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"221":{"tf":1.0},"224":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"225":{"tf":1.0},"228":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"191":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"67":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"90":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"214":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"179":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"83":{"tf":1.0},"90":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":12,"docs":{"13":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"99":{"tf":2.0}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"110":{"tf":1.0},"59":{"tf":1.7320508075688772},"93":{"tf":1.0}}}},"df":56,"docs":{"0":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"147":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":2.23606797749979},"192":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"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},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"90":{"tf":2.8284271247461903},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}}},">":{"(":{"0":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"90":{"tf":2.23606797749979}}}}}}}}}}}}}},"df":5,"docs":{"161":{"tf":3.1622776601683795},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"90":{"tf":4.358898943540674}},"i":{"d":{"df":1,"docs":{"90":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"161":{"tf":2.23606797749979},"90":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"90":{"tf":2.449489742783178}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"v":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":21,"docs":{"102":{"tf":1.0},"110":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"147":{"tf":1.0},"159":{"tf":1.4142135623730951},"163":{"tf":1.0},"219":{"tf":2.6457513110645907},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"67":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"87":{"tf":3.7416573867739413},"88":{"tf":2.0},"90":{"tf":4.358898943540674},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},">":{"(":{"0":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"111":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.449489742783178},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"140":{"tf":2.23606797749979},"141":{"tf":1.0},"159":{"tf":1.7320508075688772},"163":{"tf":1.0},"165":{"tf":3.3166247903554},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"90":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"60":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.6457513110645907},"88":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"141":{"tf":1.0},"142":{"tf":2.0},"166":{"tf":3.0},"184":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.6457513110645907},"90":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"90":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"167":{"tf":1.0},"172":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"3":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"20":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"87":{"tf":3.4641016151377544},"96":{"tf":2.449489742783178}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}},"s":{"df":2,"docs":{"58":{"tf":1.0},"66":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"105":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.7320508075688772}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"144":{"tf":1.4142135623730951},"18":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"m":{"3":{"2":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"106":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":2.23606797749979},"58":{"tf":3.1622776601683795},"61":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"144":{"tf":1.0},"15":{"tf":1.0},"58":{"tf":1.7320508075688772},"77":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":1,"docs":{"59":{"tf":1.0}}},"v":{"df":2,"docs":{"67":{"tf":1.0},"72":{"tf":1.0}}}},"b":{"3":{"df":1,"docs":{"56":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"3":{"tf":1.0},"34":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"77":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"36":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"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":{"0":{"tf":1.0},"176":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":8,"docs":{"120":{"tf":1.0},"125":{"tf":1.0},"173":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":2.0},"25":{"tf":1.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"82":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"5":{"0":{"0":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"181":{"tf":1.0},"96":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.7320508075688772},"22":{"tf":1.0},"32":{"tf":1.7320508075688772},"67":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"54":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":97,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"l":{"d":{"df":14,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"164":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"67":{"tf":1.7320508075688772},"72":{"tf":1.7320508075688772},"8":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"215":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"228":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"94":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"x":{"df":3,"docs":{"23":{"tf":2.449489742783178},"3":{"tf":1.0},"8":{"tf":1.0}},"k":{"c":{"d":{"df":1,"docs":{"205":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"67":{"tf":1.0},"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":4,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":1,"docs":{"66":{"tf":1.0}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}},"df":7,"docs":{"102":{"tf":1.4142135623730951},"142":{"tf":2.0},"166":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":4,"docs":{"134":{"tf":1.0},"16":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"x":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"1":{"6":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"1":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"'":{"*":{"'":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},".":{"0":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":3,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":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":{"85":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"139":{"tf":1.0}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"34":{"tf":1.0}}}},"1":{"0":{"6":{"4":{"3":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"139":{"tf":1.0}}},"7":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"df":4,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"6":{"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":2,"docs":{"149":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"8":{"df":9,"docs":{"116":{"tf":2.449489742783178},"122":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"167":{"tf":1.0},"171":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.4142135623730951}}},"4":{":":{"3":{"5":{":":{"3":{"0":{".":{"4":{"3":{"3":{"5":{"0":{"1":{"9":{"8":{"0":{"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":{}},"6":{":":{"3":{"4":{".":{"6":{"5":{"2":{"5":{"8":{"7":{"4":{"1":{"2":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"_":{"1":{"4":{"1":{"_":{"1":{"8":{"3":{"_":{"4":{"6":{"0":{"_":{"4":{"6":{"9":{"_":{"2":{"3":{"1":{"_":{"7":{"3":{"1":{"_":{"6":{"8":{"7":{"_":{"3":{"0":{"3":{"_":{"7":{"1":{"5":{"_":{"8":{"8":{"4":{"_":{"1":{"0":{"5":{"_":{"7":{"2":{"7":{"df":2,"docs":{"148":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"148":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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.4142135623730951}},"t":{"1":{"4":{":":{"3":{"5":{":":{"3":{"1":{".":{"9":{"8":{"3":{"5":{"9":{"0":{"df":0,"docs":{},"z":{"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":{}},"5":{":":{"0":{"1":{":":{"3":{"9":{".":{"1":{"9":{"4":{"3":{"7":{"7":{"df":0,"docs":{},"z":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"5":{"df":0,"docs":{},"z":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"_":{"4":{"4":{"6":{"_":{"7":{"4":{"4":{"_":{"0":{"7":{"3":{"_":{"7":{"0":{"9":{"_":{"5":{"5":{"1":{"_":{"6":{"1":{"5":{"df":2,"docs":{"157":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"157":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"166":{"tf":1.7320508075688772},"183":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":2.0},"34":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}},"x":{"df":0,"docs":{},"x":{"df":1,"docs":{"18":{"tf":1.0}}}}},"2":{".":{"0":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"7":{"1":{"8":{"2":{"8":{"1":{"8":{"2":{"8":{"4":{"5":{"9":{"0":{"4":{"5":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"2":{"1":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"233":{"tf":1.0}}},"4":{"df":4,"docs":{"0":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"59":{"tf":1.0}}},"df":0,"docs":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"62":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}},"5":{"4":{"df":1,"docs":{"90":{"tf":1.0}}},"5":{"df":2,"docs":{"154":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"_":{"1":{"4":{"7":{"_":{"4":{"8":{"3":{"_":{"6":{"4":{"7":{"df":2,"docs":{"151":{"tf":1.7320508075688772},"88":{"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":9,"docs":{"108":{"tf":1.0},"166":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"34":{"tf":1.0},"87":{"tf":1.4142135623730951},"93":{"tf":1.0}},"i":{"a":{"a":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"7":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"233":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}},"u":{"a":{"a":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"3":{".":{"1":{"4":{"1":{"5":{"9":{"2":{"7":{"df":2,"docs":{"145":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"7":{"6":{"7":{"df":2,"docs":{"150":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"179":{"tf":1.0},"210":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"3":{"df":1,"docs":{"139":{"tf":1.0}}},"4":{"0":{"_":{"2":{"8":{"2":{"_":{"3":{"6":{"6":{"_":{"9":{"2":{"0":{"_":{"9":{"3":{"8":{"_":{"4":{"6":{"3":{"_":{"4":{"6":{"3":{"_":{"3":{"7":{"4":{"_":{"6":{"0":{"7":{"_":{"4":{"3":{"1":{"_":{"7":{"6":{"8":{"_":{"2":{"1":{"1":{"_":{"4":{"5":{"5":{"df":2,"docs":{"153":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"153":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"6":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":4,"docs":{"166":{"tf":1.7320508075688772},"18":{"tf":1.0},"233":{"tf":1.0},"34":{"tf":1.0}}},"4":{"0":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.0}}},"2":{"df":1,"docs":{"140":{"tf":1.0}}},"_":{"2":{"9":{"4":{"_":{"9":{"6":{"7":{"_":{"2":{"9":{"5":{"df":2,"docs":{"156":{"tf":1.7320508075688772},"88":{"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":5,"docs":{"233":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772}}},"5":{"0":{"0":{"df":1,"docs":{"32":{"tf":1.0}}},"2":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"99":{"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":{}},"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"34":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"a":{"a":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"2":{"6":{"9":{"2":{"3":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"2":{"2":{"1":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"df":2,"docs":{"6":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"_":{"5":{"3":{"5":{"df":2,"docs":{"155":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"a":{"a":{"a":{"a":{"df":3,"docs":{"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"0":{"6":{"c":{"3":{"5":{"5":{"8":{"a":{"a":{"d":{"2":{"4":{"2":{"2":{"4":{"8":{"5":{"2":{"a":{"9":{"5":{"8":{"2":{"df":0,"docs":{},"f":{"0":{"1":{"8":{"1":{"7":{"8":{"4":{"0":{"2":{"c":{"b":{"3":{"6":{"7":{"9":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"32":{"tf":1.0},"99":{"tf":2.0}}},"9":{"0":{"0":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":1,"docs":{"19":{"tf":1.0}}},"6":{"df":3,"docs":{"61":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}},"_":{"2":{"2":{"3":{"_":{"3":{"7":{"2":{"_":{"0":{"3":{"6":{"_":{"8":{"5":{"4":{"_":{"7":{"7":{"5":{"_":{"8":{"0":{"7":{"df":2,"docs":{"152":{"tf":1.4142135623730951},"88":{"tf":1.0}},"n":{"df":2,"docs":{"152":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"6":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772}}},"_":{"df":1,"docs":{"85":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"17":{"tf":2.0},"23":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}}},"a":{"a":{"a":{"a":{"a":{"df":15,"docs":{"120":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"147":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"163":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"73":{"tf":2.0},"79":{"tf":2.0},"8":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"96":{"tf":2.449489742783178}}},"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"q":{"df":5,"docs":{"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}},"b":{"a":{"df":5,"docs":{"134":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{},"q":{"df":3,"docs":{"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":2,"docs":{"163":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"87":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"90":{"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":3,"docs":{"22":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"56":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"}":{"$":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"t":{"df":3,"docs":{"13":{"tf":1.0},"147":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"33":{"tf":1.0},"60":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"d":{"df":10,"docs":{"17":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"df":2,"docs":{"82":{"tf":1.0},"96":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":1,"docs":{"88":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"22":{"tf":1.0}}},"df":3,"docs":{"22":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":14,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"147":{"tf":1.0},"17":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.4142135623730951},"215":{"tf":1.0},"58":{"tf":3.7416573867739413},"61":{"tf":1.4142135623730951},"67":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"j":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.0},"187":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"52":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"96":{"tf":3.872983346207417}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.0},"217":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"20":{"tf":1.0},"32":{"tf":2.8284271247461903}}}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"64":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"144":{"tf":2.0},"162":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":59,"docs":{"103":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.4142135623730951},"22":{"tf":1.0},"58":{"tf":3.4641016151377544},"59":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.7320508075688772}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"d":{"b":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"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":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":2,"docs":{"17":{"tf":1.4142135623730951},"23":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"(":{"'":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"2":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":9,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"58":{"tf":1.0}},"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":{"3":{"tf":1.0},"58":{"tf":1.0}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":21,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":4.123105625617661},"59":{"tf":2.23606797749979},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.4142135623730951},"80":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"19":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}},"t":{"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"y":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"g":{"1":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"2":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"3":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"4":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":28,"docs":{"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"133":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":2.0},"17":{"tf":1.4142135623730951},"23":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":2.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"y":{"(":{"2":{"9":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"0":{")":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"e":{"(":{"(":{"a":{"c":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"147":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"72":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":3.7416573867739413},"23":{"tf":1.0},"36":{"tf":1.4142135623730951}},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"60":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"19":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"85":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"96":{"tf":2.23606797749979},"99":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"17":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"u":{"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":1,"docs":{"17":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"180":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"90":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"90":{"tf":2.6457513110645907}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":1,"docs":{"20":{"tf":2.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"174":{"tf":1.0},"20":{"tf":2.449489742783178},"21":{"tf":1.7320508075688772},"22":{"tf":2.0},"24":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"20":{"tf":1.7320508075688772},"22":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"19":{"tf":1.0},"233":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0}}}},"df":8,"docs":{"40":{"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},"59":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":2.449489742783178}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":2.6457513110645907},"38":{"tf":1.0},"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"58":{"tf":1.7320508075688772},"85":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":35,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"17":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":3.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":2.0},"96":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"r":{"df":2,"docs":{"192":{"tf":1.0},"215":{"tf":1.0}}},"y":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":162,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":2.23606797749979},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"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":1.0},"139":{"tf":1.0},"14":{"tf":2.0},"140":{"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.8284271247461903},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":2.0},"24":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":2.8284271247461903},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":2.0},"59":{"tf":3.1622776601683795},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":3.0},"69":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":2.0},"90":{"tf":2.8284271247461903},"96":{"tf":3.0},"98":{"tf":1.0},"99":{"tf":1.0}},"e":{"'":{"df":4,"docs":{"0":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"69":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"193":{"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":{"c":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":24,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"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":{},"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":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":2.23606797749979},"22":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"@":{"0":{".":{"2":{"1":{".":{"1":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"7":{"tf":1.0}}}}}},"df":4,"docs":{"33":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"39":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"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":{"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"64":{"tf":2.6457513110645907},"66":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"37":{"tf":1.0},"40":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"41":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{"1":{"0":{"0":{"2":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"6":{"4":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"3":{"2":{"8":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"8":{"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"5":{"5":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"4":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"1":{"0":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"3":{"3":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"9":{"1":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"7":{"6":{"1":{"8":{")":{"<":{"b":{"df":0,"docs":{},"r":{">":{"<":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"8":{"2":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"43":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"37":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"37":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"47":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"37":{"tf":1.0},"48":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"37":{"tf":1.0},"49":{"tf":1.4142135623730951}},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"37":{"tf":1.0},"50":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"147":{"tf":1.0},"16":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"10":{"tf":1.0},"6":{"tf":1.7320508075688772},"70":{"tf":1.0},"75":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"d":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"167":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":184,"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.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},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"53":{"tf":2.8284271247461903},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"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},"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},"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}}},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"c":{"_":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"103":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":2.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"59":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"166":{"tf":1.0},"59":{"tf":1.0}}}}},"df":3,"docs":{"14":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"101":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"41":{"tf":1.0},"63":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"90":{"tf":1.0},"96":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"109":{"tf":1.0},"6":{"tf":1.0},"61":{"tf":1.0},"75":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"96":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"58":{"tf":2.8284271247461903}}}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"a":{"df":9,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"105":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.23606797749979}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"26":{"tf":1.0},"60":{"tf":1.0},"96":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"88":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":6,"docs":{"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"34":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":2.449489742783178},"58":{"tf":2.23606797749979},"78":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"114":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":14,"docs":{"111":{"tf":1.0},"112":{"tf":2.23606797749979},"113":{"tf":1.0},"114":{"tf":2.6457513110645907},"115":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.4142135623730951},"83":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":1,"docs":{"58":{"tf":1.0}},"o":{"b":{"df":31,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"141":{"tf":1.0},"142":{"tf":3.7416573867739413},"144":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"174":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"199":{"tf":1.0},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178},"90":{"tf":2.23606797749979},"98":{"tf":2.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"58":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":7,"docs":{"184":{"tf":2.0},"185":{"tf":2.0},"205":{"tf":1.0},"23":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"0":{"tf":2.23606797749979},"88":{"tf":1.0}}},"l":{"df":29,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"126":{"tf":2.0},"140":{"tf":2.0},"141":{"tf":1.0},"143":{"tf":3.7416573867739413},"159":{"tf":1.7320508075688772},"163":{"tf":2.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"199":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":1.7320508075688772},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"13":{"tf":1.0},"57":{"tf":1.0},"59":{"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":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":1,"docs":{"103":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"58":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.0},"8":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"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":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"g":{"df":4,"docs":{"110":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"92":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":2.0},"193":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":2.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"36":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"29":{"tf":1.0},"33":{"tf":2.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":2.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979}}}},"z":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"c":{"2":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"6":{"9":{"df":0,"docs":{},"f":{"4":{"4":{"2":{"9":{"9":{"8":{"df":0,"docs":{},"e":{"4":{"c":{"d":{"a":{"4":{"6":{"1":{"9":{"1":{"6":{"6":{"df":0,"docs":{},"e":{"2":{"3":{"a":{"9":{"b":{"c":{"9":{"1":{"4":{"1":{"8":{"b":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"\"":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"&":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"13":{"tf":1.0},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":11,"docs":{"0":{"tf":1.0},"120":{"tf":1.0},"134":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"96":{"tf":2.449489742783178}}},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"147":{"tf":1.0},"17":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":2.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"98":{"tf":2.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":87,"docs":{"102":{"tf":1.7320508075688772},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":2.8284271247461903},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":2.0},"122":{"tf":2.0},"123":{"tf":2.0},"124":{"tf":2.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"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},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":2.0},"181":{"tf":1.0},"187":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":2.8284271247461903},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":2.23606797749979},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"64":{"tf":2.23606797749979},"67":{"tf":3.1622776601683795},"72":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":3.3166247903554},"87":{"tf":3.0},"88":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":4.58257569495584}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"116":{"tf":1.0},"125":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":187,"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":2.23606797749979},"109":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":2.0},"144":{"tf":2.23606797749979},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.0},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":2.0},"160":{"tf":2.0},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":2.0},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":2.0},"167":{"tf":1.7320508075688772},"168":{"tf":2.449489742783178},"169":{"tf":2.449489742783178},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"36":{"tf":1.0},"53":{"tf":2.449489742783178},"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":2.0},"68":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":3.872983346207417},"89":{"tf":1.0},"90":{"tf":2.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}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"17":{"tf":1.0}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"17":{"tf":1.0}}}}}}}}},"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":173,"docs":{"100":{"tf":2.6457513110645907},"101":{"tf":2.8284271247461903},"102":{"tf":1.4142135623730951},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"146":{"tf":1.7320508075688772},"147":{"tf":2.0},"148":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"150":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"155":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"158":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"163":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":2.6457513110645907},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"170":{"tf":2.6457513110645907},"171":{"tf":2.6457513110645907},"172":{"tf":2.449489742783178},"173":{"tf":2.449489742783178},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":2.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"188":{"tf":2.0},"189":{"tf":2.0},"19":{"tf":2.8284271247461903},"190":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"210":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"23":{"tf":3.605551275463989},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.7320508075688772},"24":{"tf":2.8284271247461903},"25":{"tf":2.23606797749979},"26":{"tf":2.449489742783178},"28":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.0},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"36":{"tf":2.449489742783178},"5":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"58":{"tf":3.0},"59":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"61":{"tf":2.449489742783178},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"67":{"tf":3.0},"69":{"tf":1.0},"7":{"tf":2.0},"70":{"tf":1.0},"72":{"tf":2.23606797749979},"73":{"tf":2.449489742783178},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":2.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.6457513110645907},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":3.3166247903554},"87":{"tf":4.0},"88":{"tf":3.0},"9":{"tf":1.7320508075688772},"90":{"tf":2.6457513110645907},"94":{"tf":1.0},"95":{"tf":2.449489742783178},"96":{"tf":6.48074069840786},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"'":{"df":10,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"19":{"tf":1.7320508075688772},"192":{"tf":1.0},"193":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"193":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"193":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"52":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"195":{"tf":1.0},"200":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"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":{"31":{"tf":1.0}}}}}}},"i":{"d":{"df":14,"docs":{"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"102":{"tf":2.23606797749979},"231":{"tf":1.0},"232":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":3,"docs":{"102":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"52":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":6,"docs":{"159":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"144":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"233":{"tf":1.0},"58":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"d":{"df":4,"docs":{"3":{"tf":1.0},"52":{"tf":1.7320508075688772},"64":{"tf":1.0},"66":{"tf":1.0}},"k":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"54":{"tf":1.0}}}},"df":2,"docs":{"0":{"tf":1.0},"59":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"87":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"167":{"tf":1.0},"174":{"tf":2.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"167":{"tf":1.0},"179":{"tf":2.0}},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}},"n":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":15,"docs":{"215":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"7":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"13":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"31":{"tf":1.0},"62":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"i":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":5,"docs":{"112":{"tf":1.0},"115":{"tf":2.23606797749979},"21":{"tf":1.0},"25":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"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":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":8,"docs":{"10":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"215":{"tf":1.0},"3":{"tf":1.0},"6":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"r":{"df":3,"docs":{"229":{"tf":1.0},"230":{"tf":1.7320508075688772},"58":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"5":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0},"58":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"52":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}},"u":{"d":{"df":3,"docs":{"58":{"tf":3.3166247903554},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":19,"docs":{"116":{"tf":1.0},"137":{"tf":1.7320508075688772},"15":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"215":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"58":{"tf":2.6457513110645907},"61":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"78":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"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":{"59":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"31":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":16,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":2.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"3":{"tf":1.0},"5":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"82":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":3,"docs":{"3":{"tf":1.0},"53":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"233":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.8284271247461903},"58":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":8,"docs":{"41":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":2.449489742783178},"78":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}},"x":{"df":2,"docs":{"58":{"tf":1.0},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"120":{"tf":1.0},"139":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"103":{"tf":1.4142135623730951},"112":{"tf":1.0},"34":{"tf":1.4142135623730951},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"96":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"39":{"tf":1.0},"52":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"96":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":7,"docs":{"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"i":{"d":{"df":3,"docs":{"29":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"'":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"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":{"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":4,"docs":{"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0}}}}}},"`":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"231":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"102":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"32":{"tf":1.0},"96":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":23,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}}}}}}}},"df":6,"docs":{"232":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"df":36,"docs":{"102":{"tf":3.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"184":{"tf":2.8284271247461903},"185":{"tf":2.8284271247461903},"19":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"20":{"tf":2.8284271247461903},"204":{"tf":1.7320508075688772},"210":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"23":{"tf":2.8284271247461903},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":4.898979485566356},"96":{"tf":4.0},"98":{"tf":2.8284271247461903},"99":{"tf":2.449489742783178}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"13":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"165":{"tf":1.0},"39":{"tf":1.7320508075688772},"48":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"167":{"tf":1.0},"176":{"tf":2.0},"214":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":2.0},"19":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"22":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"82":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"11":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":2.6457513110645907},"108":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"167":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"103":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"11":{"tf":1.0},"115":{"tf":1.0},"144":{"tf":1.4142135623730951},"147":{"tf":1.0},"16":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":2.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":2.449489742783178},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"201":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"120":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"163":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":1.4142135623730951},"26":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":3.605551275463989}}}}},"u":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":6,"docs":{"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"52":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"29":{"tf":1.0},"34":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"93":{"tf":1.0},"95":{"tf":1.0}}}}}},"v":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":10,"docs":{"11":{"tf":1.0},"19":{"tf":1.4142135623730951},"193":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":31,"docs":{"103":{"tf":3.4641016151377544},"116":{"tf":2.449489742783178},"120":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"127":{"tf":2.23606797749979},"128":{"tf":2.23606797749979},"129":{"tf":2.23606797749979},"130":{"tf":2.23606797749979},"131":{"tf":2.6457513110645907},"132":{"tf":2.6457513110645907},"133":{"tf":1.0},"135":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":2.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"60":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979}}}},"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":{"174":{"tf":1.0}}}}}}}},"df":17,"docs":{"108":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":2.0},"119":{"tf":2.0},"144":{"tf":1.0},"16":{"tf":1.0},"167":{"tf":1.4142135623730951},"174":{"tf":2.0},"179":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}}},"b":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"12":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"87":{"tf":2.449489742783178}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"233":{"tf":1.0}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":6,"docs":{"28":{"tf":1.7320508075688772},"29":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":3,"docs":{"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"i":{"d":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":31,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":2.0},"67":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"18":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":123,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.8284271247461903},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"23":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"96":{"tf":2.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"231":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"202":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"56":{"tf":2.0},"90":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"31":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"o":{"df":0,"docs":{},"y":{"df":36,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"10":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.4142135623730951},"19":{"tf":1.7320508075688772},"3":{"tf":2.6457513110645907},"33":{"tf":1.0},"36":{"tf":2.23606797749979},"49":{"tf":1.0},"5":{"tf":2.6457513110645907},"55":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"7":{"tf":3.0},"70":{"tf":2.23606797749979},"71":{"tf":2.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907},"75":{"tf":1.0},"76":{"tf":2.6457513110645907},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"79":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":2.8284271247461903},"82":{"tf":2.449489742783178},"9":{"tf":2.8284271247461903},"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"195":{"tf":1.0},"203":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"87":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"176":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"215":{"tf":1.4142135623730951},"34":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":3.1622776601683795},"74":{"tf":1.0},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":2.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"77":{"tf":1.0},"80":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"147":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"11":{"tf":2.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"233":{"tf":1.0},"36":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"0":{".":{"1":{"6":{".":{"1":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"2":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":52,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"2":{"tf":2.0},"3":{"tf":2.0},"36":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.7320508075688772},"52":{"tf":1.0},"6":{"tf":2.449489742783178},"62":{"tf":2.0},"64":{"tf":2.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":2.8284271247461903},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"82":{"tf":2.0},"85":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951}}}},"i":{"a":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"l":{"\\":{"0":{"0":{"\\":{"0":{"0":{"df":1,"docs":{"142":{"tf":1.7320508075688772}}},"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":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"103":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"114":{"tf":1.0},"22":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"10":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"75":{"tf":1.0},"83":{"tf":1.0}}}},"y":{"df":1,"docs":{"74":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"181":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"105":{"tf":1.0},"55":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"10":{"tf":1.0},"54":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"59":{"tf":1.0},"67":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"19":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"32":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":182,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"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},"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},"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}}}}}}}},"df":3,"docs":{"10":{"tf":1.0},"2":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"31":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"48":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"59":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"87":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":2,"docs":{"14":{"tf":1.0},"33":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":12,"docs":{"103":{"tf":1.0},"233":{"tf":1.4142135623730951},"31":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.0},"60":{"tf":1.7320508075688772},"67":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"59":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"88":{"tf":1.0}}}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"113":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}}}},"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}}}}}}},"m":{"b":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"63":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":2.449489742783178}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"136":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":3.872983346207417},"67":{"tf":1.0},"72":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"22":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"7":{"tf":1.0},"90":{"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":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"167":{"tf":1.0},"169":{"tf":2.0},"18":{"tf":1.0},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"108":{"tf":2.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"107":{"tf":1.0},"2":{"tf":1.0},"62":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"d":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"108":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"109":{"tf":1.0},"58":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"10":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"53":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"58":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"90":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"175":{"tf":1.0},"87":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"y":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"87":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"193":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":31,"docs":{"107":{"tf":2.0},"111":{"tf":1.0},"192":{"tf":2.23606797749979},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"2":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"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.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"159":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"163":{"tf":1.0},"90":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"`":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.7320508075688772},"144":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":3.605551275463989},"32":{"tf":3.4641016151377544},"33":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":2.449489742783178}}}}}},"s":{"2":{"0":{"2":{"0":{"df":1,"docs":{"68":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"63":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"103":{"tf":1.0},"19":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":10,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"186":{"tf":1.0},"205":{"tf":1.0},"219":{"tf":1.0},"27":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}},"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":{"99":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"58":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"90":{"tf":1.0}},"t":{"df":1,"docs":{"0":{"tf":1.0}},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":113,"docs":{"103":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"4":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"83":{"tf":2.23606797749979},"85":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"88":{"tf":1.7320508075688772},"90":{"tf":2.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"166":{"tf":1.0},"87":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":13,"docs":{"175":{"tf":1.0},"181":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.0},"67":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"96":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"147":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"59":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"59":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"215":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.7320508075688772},"93":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"87":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"53":{"tf":1.0},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":120,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"90":{"tf":2.0},"96":{"tf":2.8284271247461903},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"s":{"df":9,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"215":{"tf":1.0},"36":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"0":{"tf":1.0},"12":{"tf":2.0},"13":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"16":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"19":{"tf":2.0},"20":{"tf":1.7320508075688772},"23":{"tf":2.449489742783178},"32":{"tf":2.449489742783178},"4":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"r":{"a":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"36":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"60":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"20":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"144":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"126":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"87":{"tf":1.0},"96":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"36":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"c":{"df":0,"docs":{},"p":{":":{"/":{"/":{"d":{"df":0,"docs":{},"f":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":9,"docs":{"13":{"tf":1.0},"20":{"tf":2.0},"22":{"tf":2.0},"23":{"tf":2.0},"24":{"tf":2.6457513110645907},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"103":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"83":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":20,"docs":{"0":{"tf":1.0},"11":{"tf":1.7320508075688772},"13":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":2.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"23":{"tf":1.7320508075688772},"3":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":2.0},"67":{"tf":1.0},"7":{"tf":1.0},"82":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"19":{"tf":1.7320508075688772}}}}}}}}},"l":{"(":{"0":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"198":{"tf":1.0},"90":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"29":{"tf":1.0},"33":{"tf":2.23606797749979},"36":{"tf":1.0},"39":{"tf":1.0}}}},"d":{"df":6,"docs":{"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"165":{"tf":2.23606797749979}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"147":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"31":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}},"x":{"df":2,"docs":{"10":{"tf":1.0},"108":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"141":{"tf":1.0},"145":{"tf":4.0},"88":{"tf":2.8284271247461903}}},"df":0,"docs":{}},"6":{"4":{"df":5,"docs":{"110":{"tf":1.7320508075688772},"141":{"tf":1.0},"146":{"tf":4.0},"88":{"tf":2.6457513110645907},"92":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":1,"docs":{"74":{"tf":1.0}}}}},"m":{"a":{"a":{"a":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"22":{"tf":1.0},"53":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":28,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"48":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"22":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"13":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"df":6,"docs":{"2":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"q":{"a":{"a":{"a":{"df":5,"docs":{"147":{"tf":1.0},"160":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"15":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"106":{"tf":1.0}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":2.23606797749979}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":1,"docs":{"4":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"60":{"tf":1.0}}}}},"l":{"df":5,"docs":{"115":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}},"n":{"c":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"120":{"tf":1.0},"186":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":6,"docs":{"141":{"tf":1.0},"147":{"tf":3.605551275463989},"184":{"tf":1.0},"185":{"tf":1.0},"88":{"tf":2.6457513110645907},"98":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"147":{"tf":1.0}}},"df":23,"docs":{"102":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"16":{"tf":1.0},"161":{"tf":1.4142135623730951},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"205":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178},"87":{"tf":1.0},"90":{"tf":2.23606797749979},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"215":{"tf":1.0},"29":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":13,"docs":{"103":{"tf":1.0},"18":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"74":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"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":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"96":{"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":1,"docs":{"196":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":2,"docs":{"59":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.4142135623730951}}},"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"191":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.4142135623730951}}},"df":1,"docs":{"153":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"m":{"b":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"159":{"tf":1.7320508075688772}}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.4142135623730951},"85":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"i":{"b":{"df":6,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"61":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"u":{"b":{"df":2,"docs":{"54":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"53":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.0}},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"22":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.23606797749979},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":8,"docs":{"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"85":{"tf":1.0},"87":{"tf":1.0}},"o":{"d":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"58":{"tf":3.3166247903554},"60":{"tf":1.0}}}},"w":{"df":4,"docs":{"218":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"225":{"tf":1.7320508075688772},"233":{"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":{"58":{"tf":1.0},"87":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"11":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"69":{"tf":1.0}}}}}},"h":{"1":{">":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"a":{"c":{"df":0,"docs":{},"k":{"_":{"b":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"68":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{},"t":{"df":3,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"33":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":6,"docs":{"109":{"tf":1.0},"14":{"tf":1.0},"32":{"tf":4.242640687119285},"90":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"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":1,"docs":{"10":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"16":{"tf":1.0}}}},"i":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":2.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"53":{"tf":1.0},"60":{"tf":1.0}}}}},"df":2,"docs":{"3":{"tf":1.0},"8":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"32":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"18":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"205":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":7,"docs":{"34":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.6457513110645907},"209":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"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":6,"docs":{"11":{"tf":1.0},"15":{"tf":1.0},"233":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"4":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":17,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"164":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"8":{"tf":1.0}}}},"p":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"233":{"tf":1.0},"33":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":15,"docs":{"11":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":8,"docs":{"103":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"34":{"tf":1.0},"5":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"108":{"tf":1.4142135623730951},"140":{"tf":1.0},"34":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"53":{"tf":1.0},"61":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"233":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"d":{"df":2,"docs":{"22":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":3,"docs":{"233":{"tf":1.0},"29":{"tf":1.0},"59":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"14":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"20":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"13":{"tf":1.7320508075688772},"14":{"tf":2.0},"17":{"tf":1.0}}}}}}}}},":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"0":{"0":{"0":{"/":{"?":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":2,"docs":{"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"d":{"b":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":2,"docs":{"13":{"tf":1.0},"20":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"173":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"98":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"27":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":5,"docs":{"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"22":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"df":9,"docs":{"182":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"205":{"tf":1.7320508075688772},"22":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.0},"98":{"tf":1.0}}}}}}}}}},"df":28,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"18":{"tf":2.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951},"85":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"205":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":2.0}}}}}}}}},"s":{":":{"/":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"]":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"p":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"9":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"13":{"tf":1.0}}},"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":{"/":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"2":{"0":{"6":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"62":{"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":{"d":{"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"k":{"c":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"6":{"4":{"2":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"0":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"205":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"c":{"'":{"df":2,"docs":{"59":{"tf":1.0},"85":{"tf":1.0}}},".":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"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":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"118":{"tf":1.0}},"s":{"df":1,"docs":{"119":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"102":{"tf":1.0},"125":{"tf":1.0},"163":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"96":{"tf":2.0}},"l":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"123":{"tf":1.0},"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"137":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"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":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"1":{"2":{"8":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"140":{"tf":1.0}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"121":{"tf":1.0},"122":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":1,"docs":{"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"173":{"tf":1.0},"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"176":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"126":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"2":{"8":{"(":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"1":{"2":{"8":{"df":2,"docs":{"128":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"d":{"1":{"2":{"8":{"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":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"163":{"tf":1.0},"96":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"135":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}}}}},"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":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"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":{"178":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"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":{"136":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.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":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"102":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"102":{"tf":1.0},"232":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"102":{"tf":1.0}}}}}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"225":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"227":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"223":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"180":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"r":{"a":{"df":0,"docs":{},"p":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"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":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"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":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}}},"0":{"5":{"0":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":16,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"136":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"25":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":99,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"163":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":5.477225575051661},"59":{"tf":3.0},"60":{"tf":2.6457513110645907},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":3.0},"99":{"tf":1.0}},"p":{"df":14,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"26":{"tf":1.0},"34":{"tf":1.4142135623730951},"5":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"62":{"tf":1.0}}},"r":{"c":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"25":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"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":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{"\"":{">":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"}":{"<":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":9,"docs":{"161":{"tf":2.23606797749979},"167":{"tf":1.0},"173":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"3":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":4.58257569495584},"94":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"a":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"20":{"tf":2.23606797749979},"22":{"tf":1.0},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}},"t":{"df":0,"docs":{},"y":{"<":{"/":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"52":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"87":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"23":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"109":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"58":{"tf":1.7320508075688772},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":1,"docs":{"0":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":132,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"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.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"140":{"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":2.449489742783178},"88":{"tf":1.7320508075688772},"90":{"tf":2.6457513110645907},"96":{"tf":3.3166247903554},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":1,"docs":{"144":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"29":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"126":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":8,"docs":{"0":{"tf":1.7320508075688772},"106":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.7320508075688772},"90":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"83":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"19":{"tf":1.0},"233":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"63":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":2,"docs":{"85":{"tf":1.0},"96":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":7,"docs":{"58":{"tf":1.4142135623730951},"7":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":27,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0}}}},"o":{"df":2,"docs":{"23":{"tf":1.0},"8":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":10,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"64":{"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":1,"docs":{"58":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"101":{"tf":1.7320508075688772},"120":{"tf":2.0},"182":{"tf":1.0},"186":{"tf":2.6457513110645907},"99":{"tf":1.4142135623730951}},"i":{"df":6,"docs":{"186":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"120":{"tf":1.0},"219":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"33":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"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":3,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"182":{"tf":1.0},"187":{"tf":1.7320508075688772},"33":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"117":{"tf":1.7320508075688772},"126":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"2":{"tf":2.8284271247461903},"206":{"tf":1.0},"3":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":3.0},"62":{"tf":3.0},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"82":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"206":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"c":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"147":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"166":{"tf":1.0},"33":{"tf":1.0},"48":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":2.0},"34":{"tf":1.4142135623730951},"41":{"tf":1.0},"52":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.7320508075688772},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"1":{"6":{"df":3,"docs":{"141":{"tf":1.0},"150":{"tf":4.0},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"3":{"2":{"df":4,"docs":{"141":{"tf":1.0},"151":{"tf":4.0},"166":{"tf":3.4641016151377544},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"141":{"tf":1.0},"152":{"tf":4.0},"88":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"102":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"141":{"tf":1.0},"149":{"tf":4.0},"88":{"tf":2.6457513110645907}}},"df":4,"docs":{"140":{"tf":2.0},"141":{"tf":1.0},"148":{"tf":4.0},"88":{"tf":3.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"112":{"tf":1.0},"114":{"tf":2.0},"58":{"tf":2.6457513110645907}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"n":{"d":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"112":{"tf":1.0},"114":{"tf":1.0},"13":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"f":{"a":{"c":{"df":4,"docs":{"73":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":2,"docs":{"32":{"tf":1.0},"48":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"4":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":13,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"20":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"v":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"229":{"tf":1.0},"232":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"58":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":2,"docs":{"61":{"tf":1.0},"85":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"10":{"tf":1.7320508075688772},"106":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.7320508075688772},"74":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}},"t":{"'":{"df":7,"docs":{"15":{"tf":1.0},"2":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":1,"docs":{"80":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":41,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"107":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"29":{"tf":1.0},"33":{"tf":2.23606797749979},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.449489742783178},"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}},"s":{"df":5,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"90":{"tf":2.0}},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"110":{"tf":2.0},"90":{"tf":1.0},"92":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"90":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"y":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"16":{"tf":1.4142135623730951},"53":{"tf":1.0},"90":{"tf":1.0}},"r":{"df":0,"docs":{},"p":{"c":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":2.0}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":7,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"204":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":9,"docs":{"163":{"tf":1.0},"20":{"tf":1.0},"219":{"tf":2.6457513110645907},"23":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178},"85":{"tf":1.7320508075688772},"87":{"tf":3.1622776601683795},"88":{"tf":1.0},"90":{"tf":3.3166247903554}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"6":{"tf":2.0},"75":{"tf":2.0}}}},"n":{"d":{"df":4,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"54":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"147":{"tf":1.0},"58":{"tf":1.0}},"n":{"df":3,"docs":{"58":{"tf":1.0},"60":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"56":{"tf":2.0},"90":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"=":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}},"m":{"df":0,"docs":{},"j":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"34":{"tf":1.0},"59":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"96":{"tf":1.0}},"y":{"=":{"1":{"0":{"1":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"108":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"24":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"112":{"tf":1.0},"115":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"119":{"tf":1.0},"222":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"29":{"tf":1.0},"53":{"tf":1.0}}}},"t":{"'":{"df":6,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"18":{"tf":1.0},"30":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"13":{"tf":1.0},"22":{"tf":1.0},"3":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"0":{"tf":1.4142135623730951},"106":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":2.23606797749979},"19":{"tf":1.0},"233":{"tf":2.0},"34":{"tf":3.3166247903554},"58":{"tf":2.0},"59":{"tf":2.23606797749979},"85":{"tf":2.449489742783178},"87":{"tf":2.8284271247461903}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":10,"docs":{"2":{"tf":1.0},"33":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"k":{"df":2,"docs":{"103":{"tf":1.0},"20":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"14":{"tf":1.4142135623730951}}}}}},"t":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}},"r":{"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"o":{"a":{"d":{"df":3,"docs":{"19":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"178":{"tf":1.0},"18":{"tf":1.0},"216":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":2.23606797749979},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"74":{"tf":2.449489742783178},"75":{"tf":2.0},"76":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"t":{"df":3,"docs":{"60":{"tf":1.0},"61":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"106":{"tf":1.0},"58":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"233":{"tf":1.0},"59":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"2":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"w":{"df":4,"docs":{"140":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"t":{";":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"&":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"19":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"74":{"tf":1.0},"85":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"7":{"tf":1.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.7320508075688772},"9":{"tf":2.0}}}}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"109":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":5,"docs":{"26":{"tf":1.0},"38":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":28,"docs":{"100":{"tf":2.23606797749979},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"58":{"tf":1.7320508075688772},"62":{"tf":1.0},"83":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"120":{"tf":1.0},"123":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":24,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"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":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"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":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"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":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":1.0},"16":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"169":{"tf":1.0}}}}}}}},"df":5,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"36":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"p":{"(":{"(":{"_":{"df":1,"docs":{"90":{"tf":1.0}}},"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":2.0}}},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{},"h":{".":{"df":2,"docs":{"146":{"tf":1.0},"88":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"145":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}}}}},"x":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"60":{"tf":1.0}}}}},"y":{"b":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"20":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"28":{"tf":1.0},"31":{"tf":1.0},"58":{"tf":1.4142135623730951},"90":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"29":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"140":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":18,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"87":{"tf":2.0},"90":{"tf":3.872983346207417},"94":{"tf":1.4142135623730951}}},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"136":{"tf":1.0},"138":{"tf":1.7320508075688772},"17":{"tf":1.0},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"187":{"tf":1.7320508075688772},"191":{"tf":1.7320508075688772},"22":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":2.449489742783178},"58":{"tf":1.4142135623730951},"67":{"tf":2.8284271247461903},"72":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}},"df":1,"docs":{"210":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"11":{"tf":1.0},"19":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}},"h":{"df":0,"docs":{},"o":{"d":{"df":44,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":2.0},"147":{"tf":1.0},"163":{"tf":1.0},"17":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"205":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"26":{"tf":1.0},"36":{"tf":2.23606797749979},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"63":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.6457513110645907},"78":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":3.3166247903554},"86":{"tf":1.7320508075688772},"87":{"tf":3.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":4.123105625617661},"98":{"tf":1.0},"99":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"b":{"df":3,"docs":{"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"34":{"tf":1.4142135623730951}}},"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"108":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"196":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"d":{"df":7,"docs":{"23":{"tf":1.0},"36":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"107":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"52":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"193":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"17":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"64":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"59":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0}}}}},"s":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}},"g":{"df":7,"docs":{"116":{"tf":2.449489742783178},"127":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":1.7320508075688772},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.7320508075688772},"87":{"tf":1.0}},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"v":{"df":1,"docs":{"52":{"tf":1.0}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"78":{"tf":3.0},"79":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"11":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.7320508075688772},"147":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":2.0}}}},"t":{"1":{"6":{"df":6,"docs":{"141":{"tf":1.0},"155":{"tf":4.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"3":{"2":{"df":9,"docs":{"141":{"tf":1.0},"156":{"tf":4.0},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":2.6457513110645907},"99":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{">":{"(":{"0":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"120":{"tf":2.23606797749979},"121":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"141":{"tf":1.0},"157":{"tf":4.0},"170":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.8284271247461903},"90":{"tf":2.8284271247461903},"96":{"tf":4.358898943540674}}},"df":0,"docs":{}},"8":{"df":6,"docs":{"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"154":{"tf":4.0},"219":{"tf":1.4142135623730951},"88":{"tf":3.0},"90":{"tf":2.6457513110645907}}},"df":7,"docs":{"119":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"141":{"tf":1.0},"153":{"tf":4.0},"171":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907}},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"22":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":2.6457513110645907},"61":{"tf":1.4142135623730951}},"e":{")":{"<":{"b":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"75":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{";":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":5.196152422706632}}}},"df":0,"docs":{}},"df":1,"docs":{"32":{"tf":5.196152422706632}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"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":{"233":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":15,"docs":{"103":{"tf":1.0},"115":{"tf":1.4142135623730951},"17":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":9,"docs":{"114":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"144":{"tf":1.0}}}}},"w":{"df":11,"docs":{"139":{"tf":1.0},"20":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"64":{"tf":2.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":3.4641016151377544}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"n":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":2.449489742783178}}},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":2.0},"17":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0}}}},"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"10":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"2":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"60":{"tf":2.6457513110645907},"62":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":17,"docs":{"159":{"tf":2.0},"174":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"144":{"tf":1.0},"5":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0}}},"i":{"c":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}},"i":{"df":5,"docs":{"116":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"134":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"96":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"134":{"tf":1.0},"169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}}},"w":{"df":8,"docs":{"115":{"tf":1.0},"215":{"tf":1.0},"26":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"106":{"tf":2.449489742783178},"19":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"3":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0}}},"x":{"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.0},"52":{"tf":1.0},"64":{"tf":1.0},"69":{"tf":1.0},"82":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"158":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.0},"158":{"tf":4.123105625617661},"159":{"tf":1.4142135623730951},"162":{"tf":1.7320508075688772},"165":{"tf":2.6457513110645907},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"88":{"tf":3.605551275463989},"99":{"tf":1.4142135623730951}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":20,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"172":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":38,"docs":{"108":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.23606797749979},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"67":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"90":{"tf":3.3166247903554},"93":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"8":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"64":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"222":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0}}}}}}},"k":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":2,"docs":{"163":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"l":{"d":{"df":181,"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.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},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"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},"88":{"tf":1.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}}},"df":0,"docs":{}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":9,"docs":{"11":{"tf":1.0},"13":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"df":7,"docs":{"15":{"tf":1.0},"165":{"tf":1.0},"58":{"tf":2.0},"60":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"106":{"tf":1.0},"56":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"59":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"109":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951},"60":{"tf":2.0},"61":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"58":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}}}},"t":{"(":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"159":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.7320508075688772},"90":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"6":{"4":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"159":{"tf":1.0}}}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"233":{"tf":2.0}}}}}}}},"df":11,"docs":{"141":{"tf":1.0},"159":{"tf":3.1622776601683795},"174":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"219":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"111":{"tf":1.0},"233":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":1,"docs":{"58":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"83":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"23":{"tf":1.7320508075688772},"24":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"68":{"tf":1.0}}}}},"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"31":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"120":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"205":{"tf":1.0},"27":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"178":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.4142135623730951},"49":{"tf":1.0},"62":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"60":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":1,"docs":{"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":2.8284271247461903}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":2.449489742783178},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"19":{"tf":1.0},"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"103":{"tf":1.0}}}},"r":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":1,"docs":{"53":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"67":{"tf":1.0},"85":{"tf":2.23606797749979},"88":{"tf":1.0},"90":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":2,"docs":{"58":{"tf":1.7320508075688772},"59":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"14":{"tf":1.0},"144":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"23":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"$":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{"$":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"11":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"23":{"tf":1.0},"50":{"tf":1.0},"62":{"tf":1.0}}}},"y":{"df":1,"docs":{"58":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}}}},"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"r":{"df":5,"docs":{"183":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":14,"docs":{"163":{"tf":1.0},"167":{"tf":1.0},"177":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"23":{"tf":2.23606797749979},"24":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"186":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"85":{"tf":1.0},"87":{"tf":2.0},"90":{"tf":1.7320508075688772},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}},"n":{"df":1,"docs":{"90":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"58":{"tf":2.6457513110645907},"59":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.0},"215":{"tf":2.6457513110645907},"216":{"tf":2.23606797749979},"217":{"tf":2.23606797749979}}}}}}},"o":{"d":{"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"2":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"11":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"14":{"tf":1.4142135623730951},"58":{"tf":1.0},"6":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"18":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":6,"docs":{"182":{"tf":1.0},"188":{"tf":1.7320508075688772},"3":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.0},"99":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"59":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"182":{"tf":1.0},"189":{"tf":1.7320508075688772},"32":{"tf":1.0},"83":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"90":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"101":{"tf":1.7320508075688772},"189":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"233":{"tf":1.0}},"s":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"z":{"2":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":3,"docs":{"147":{"tf":1.0},"160":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":3,"docs":{"134":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"0":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":29,"docs":{"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"134":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.7320508075688772},"160":{"tf":4.242640687119285},"161":{"tf":2.23606797749979},"163":{"tf":1.0},"173":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"58":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"90":{"tf":3.872983346207417},"96":{"tf":2.8284271247461903},"99":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":2.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.7320508075688772}}}}}},"df":4,"docs":{"167":{"tf":1.0},"178":{"tf":2.23606797749979},"32":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.7320508075688772}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.7320508075688772}}},"df":1,"docs":{"148":{"tf":1.7320508075688772}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}},"df":1,"docs":{"153":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.7320508075688772}}},"m":{"b":{"df":1,"docs":{"166":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.7320508075688772}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"103":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"10":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"90":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"2":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"192":{"tf":1.0},"194":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"32":{"tf":3.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":9,"docs":{"10":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":2.0},"75":{"tf":1.4142135623730951},"82":{"tf":1.0},"96":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":4,"docs":{"28":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"58":{"tf":1.0}},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"31":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":87,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0},"97":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{".":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"[":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"]":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"33":{"tf":1.0}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":16,"docs":{"10":{"tf":1.4142135623730951},"105":{"tf":1.0},"11":{"tf":2.0},"17":{"tf":1.0},"216":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"75":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"59":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":14,"docs":{"159":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.449489742783178},"193":{"tf":1.0},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"36":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"58":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":5,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772},"60":{"tf":2.0}}}}},"df":1,"docs":{"52":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":11,"docs":{"0":{"tf":1.0},"192":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"233":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":3.7416573867739413},"59":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"195":{"tf":1.0},"207":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"208":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"20":{"tf":1.0},"58":{"tf":1.7320508075688772}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":2.23606797749979}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"204":{"tf":1.0}}}}}}}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"85":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"0":{"tf":1.0},"217":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"85":{"tf":2.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"q":{"a":{"a":{"a":{"df":0,"docs":{},"q":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"20":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"a":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":73,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":2.0},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":2.0},"147":{"tf":2.8284271247461903},"148":{"tf":2.0},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.0},"152":{"tf":2.0},"153":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":2.23606797749979},"160":{"tf":2.0},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":2.6457513110645907},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.449489742783178},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"190":{"tf":2.449489742783178},"191":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"205":{"tf":1.0},"219":{"tf":2.449489742783178},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"53":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":3.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":5.0},"87":{"tf":3.0},"88":{"tf":2.8284271247461903},"90":{"tf":3.3166247903554},"96":{"tf":4.358898943540674},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"y":{"(":{"[":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":2,"docs":{"142":{"tf":1.0},"168":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"98":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"156":{"tf":1.0},"222":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"157":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.0}}},"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"160":{"tf":1.0},"176":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":6,"docs":{"164":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"161":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"3":{"df":1,"docs":{"32":{"tf":1.7320508075688772}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"109":{"tf":1.7320508075688772}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"63":{"tf":1.0},"64":{"tf":1.4142135623730951}},"j":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0}},"s":{"_":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"x":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"df":0,"docs":{}},"[":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"50":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"67":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"r":{"7":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}}}}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"100":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"18":{"tf":1.0},"60":{"tf":1.0}}}},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"195":{"tf":1.0},"209":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"116":{"tf":2.449489742783178},"118":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"134":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":3.1622776601683795}}}}}}},"d":{"df":9,"docs":{"218":{"tf":1.4142135623730951},"222":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"34":{"tf":1.0},"61":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"90":{"tf":2.0},"94":{"tf":1.0}},"i":{"df":3,"docs":{"59":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"106":{"tf":1.0},"58":{"tf":1.0},"93":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"103":{"tf":1.4142135623730951},"147":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"127":{"tf":1.0},"129":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":2,"docs":{"128":{"tf":1.0},"130":{"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"15":{"tf":1.0},"166":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":13,"docs":{"102":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"161":{"tf":3.3166247903554},"184":{"tf":2.449489742783178},"185":{"tf":2.449489742783178},"204":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"59":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":3.0},"90":{"tf":4.358898943540674},"98":{"tf":2.449489742783178}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},">":{"(":{"1":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"90":{"tf":1.7320508075688772}}}}}}}}}}}}}},"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":1,"docs":{"90":{"tf":2.449489742783178}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.0},"36":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"233":{"tf":1.0},"58":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":8,"docs":{"12":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":2.23606797749979},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":149,"docs":{"100":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"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},"78":{"tf":1.0},"88":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"116":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"116":{"tf":1.7320508075688772},"120":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":2.0},"138":{"tf":2.0},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"31":{"tf":1.4142135623730951},"96":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"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":{"59":{"tf":1.7320508075688772}}}}}}}}}}},"df":3,"docs":{"233":{"tf":1.0},"34":{"tf":1.4142135623730951},"59":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.0}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"219":{"tf":1.0},"58":{"tf":2.449489742783178},"78":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"52":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"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":1,"docs":{"102":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"'":{"df":2,"docs":{"178":{"tf":1.0},"31":{"tf":1.0}}},"df":16,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"14":{"tf":1.0},"18":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"5":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"6":{"tf":2.6457513110645907},"60":{"tf":1.7320508075688772},"64":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"74":{"tf":2.0},"75":{"tf":2.449489742783178},"76":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"58":{"tf":2.449489742783178},"60":{"tf":1.0},"96":{"tf":1.4142135623730951}}},"df":3,"docs":{"116":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"140":{"tf":1.7320508075688772}}},"y":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"140":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":2,"docs":{"216":{"tf":1.0},"54":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"52":{"tf":1.0},"83":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"147":{"tf":1.4142135623730951},"72":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}},"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":{"23":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"<":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0}}}}},"df":0,"docs":{}},"df":18,"docs":{"113":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"18":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":2.449489742783178},"34":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"144":{"tf":1.0},"22":{"tf":1.7320508075688772},"36":{"tf":1.0},"52":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"d":{"b":{"df":2,"docs":{"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":1,"docs":{"16":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"17":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"d":{"b":{"df":1,"docs":{"16":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"12":{"tf":1.0},"14":{"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":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"141":{"tf":1.0},"162":{"tf":3.872983346207417},"18":{"tf":1.0},"88":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"10":{"tf":1.0},"20":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"103":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":9,"docs":{"18":{"tf":1.4142135623730951},"20":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":1.0},"34":{"tf":1.0},"96":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":2.0}}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":2,"docs":{"53":{"tf":1.0},"67":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"58":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":6,"docs":{"17":{"tf":1.0},"58":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"110":{"tf":1.0},"58":{"tf":1.4142135623730951},"72":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":104,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":2.6457513110645907},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":3.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"67":{"tf":2.23606797749979},"85":{"tf":2.449489742783178},"87":{"tf":2.6457513110645907},"88":{"tf":1.7320508075688772},"90":{"tf":5.196152422706632},"96":{"tf":3.872983346207417},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}},"v":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"28":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"32":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"f":{"df":1,"docs":{"10":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"33":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"k":{"df":4,"docs":{"58":{"tf":2.0},"59":{"tf":2.0},"85":{"tf":1.0},"87":{"tf":1.0}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.0},"17":{"tf":1.0},"36":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"41":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"18":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"h":{"df":2,"docs":{"160":{"tf":1.4142135623730951},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"58":{"tf":1.0}}}},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"117":{"tf":1.0},"126":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.4142135623730951},"16":{"tf":1.0},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":2.0},"2":{"tf":1.4142135623730951},"34":{"tf":1.0},"52":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":27,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"54":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"52":{"tf":1.0},"80":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"3":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"a":{"d":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":6,"docs":{"11":{"tf":1.0},"20":{"tf":1.0},"216":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"58":{"tf":2.6457513110645907}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.0},"59":{"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":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"10":{"tf":1.0},"66":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"df":1,"docs":{"52":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"147":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"34":{"tf":1.7320508075688772},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":2.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"204":{"tf":1.0},"210":{"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":85,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"53":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":2.0},"60":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"13":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"k":{"df":1,"docs":{"59":{"tf":1.0}}},"m":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}},"n":{"df":1,"docs":{"87":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"0":{"tf":1.0}}}},"n":{"d":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"1":{"2":{"8":{"df":1,"docs":{"132":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"103":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"58":{"tf":1.0},"96":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"144":{"tf":1.0},"16":{"tf":1.0},"23":{"tf":1.4142135623730951},"53":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"108":{"tf":1.0},"90":{"tf":3.4641016151377544},"93":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"12":{"tf":1.0},"14":{"tf":1.0}}}}}}}}},"df":10,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"12":{"tf":2.449489742783178},"13":{"tf":2.8284271247461903},"14":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":4.242640687119285},"18":{"tf":1.0},"32":{"tf":1.0}}}},"i":{"c":{"df":28,"docs":{"115":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":3.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"88":{"tf":1.7320508075688772}},"e":{"'":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":22,"docs":{"14":{"tf":1.0},"167":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":2.0},"18":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"214":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":2.23606797749979}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"191":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"102":{"tf":1.0},"231":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"120":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":1.0}}}}}},"h":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"0":{".":{"3":{"9":{".":{"7":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"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":{},"l":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"161":{"tf":1.0},"165":{"tf":1.0}}}}},"df":3,"docs":{"2":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"103":{"tf":2.449489742783178},"63":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"5":{"tf":1.0},"96":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"22":{"tf":1.0},"33":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"113":{"tf":1.0},"195":{"tf":1.0},"210":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"210":{"tf":2.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}}}}},"df":2,"docs":{"210":{"tf":1.0},"58":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"215":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"58":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"19":{"tf":1.0},"61":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"109":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"20":{"tf":1.4142135623730951},"215":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"67":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"190":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"58":{"tf":1.0}}}},"i":{"df":6,"docs":{"53":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":4,"docs":{"102":{"tf":2.0},"58":{"tf":1.7320508075688772},"85":{"tf":2.0},"87":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"102":{"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":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"59":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":9,"docs":{"116":{"tf":1.0},"119":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"p":{"df":1,"docs":{"52":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"233":{"tf":1.0},"59":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":3.1622776601683795},"1":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"90":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"c":{"0":{"5":{"0":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"2":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"0":{"0":{"0":{"_":{"0":{"0":{"0":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"159":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.4142135623730951},"96":{"tf":3.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"a":{"a":{"a":{"a":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"33":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"19":{"tf":1.0},"31":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":2.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"60":{"tf":1.0},"96":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"16":{"tf":1.0},"58":{"tf":1.4142135623730951},"61":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":7,"docs":{"16":{"tf":1.0},"18":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":10,"docs":{"10":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"233":{"tf":1.0},"78":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"217":{"tf":1.0},"4":{"tf":1.0}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"11":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"233":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":3,"docs":{"233":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"52":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":23,"docs":{"111":{"tf":1.0},"218":{"tf":3.0},"219":{"tf":2.0},"220":{"tf":2.0},"221":{"tf":2.0},"222":{"tf":2.0},"223":{"tf":2.0},"224":{"tf":2.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":2.0},"89":{"tf":1.7320508075688772},"90":{"tf":3.3166247903554},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"6":{"4":{"df":5,"docs":{"218":{"tf":2.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"225":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"227":{"tf":1.0}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}}}}}}},"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":2,"docs":{"219":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"90":{"tf":2.0},"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"87":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}}}},"df":12,"docs":{"108":{"tf":1.0},"110":{"tf":1.7320508075688772},"219":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":4.795831523312719},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"220":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"221":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"110":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":1,"docs":{"223":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"99":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"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":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"33":{"tf":1.0},"58":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"110":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"211":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"1":{"tf":1.7320508075688772},"10":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"233":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.0},"6":{"tf":2.8284271247461903},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":2.8284271247461903},"82":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"181":{"tf":1.0},"215":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.0},"61":{"tf":3.0},"63":{"tf":1.0},"67":{"tf":2.0},"75":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"96":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"13":{"tf":1.0},"19":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"18":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"102":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"102":{"tf":2.449489742783178}}}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}},"p":{"df":1,"docs":{"52":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"10":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"96":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"212":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"10":{"tf":1.0},"181":{"tf":1.0},"6":{"tf":1.7320508075688772},"75":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"186":{"tf":1.0},"219":{"tf":1.0},"59":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"110":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":2.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":2.0},"90":{"tf":1.7320508075688772},"92":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"6":{"tf":1.0},"75":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"53":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"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":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"68":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":12,"docs":{"147":{"tf":1.7320508075688772},"164":{"tf":2.23606797749979},"168":{"tf":1.0},"169":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.0},"67":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":19,"docs":{"108":{"tf":1.0},"11":{"tf":2.23606797749979},"16":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.7320508075688772},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":2.23606797749979},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}}}}},"u":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"113":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"60":{"tf":3.0},"67":{"tf":1.0},"96":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":9,"docs":{"103":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"8":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":5,"docs":{"2":{"tf":1.0},"52":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"62":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"20":{"tf":1.0}}}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"51":{"tf":1.0}}},"f":{"a":{"c":{"df":1,"docs":{"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"140":{"tf":1.0},"31":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"56":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"58":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"1":{"df":1,"docs":{"88":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"88":{"tf":1.0}}},"3":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"233":{"tf":1.0},"58":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"52":{"tf":1.0},"68":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}}},"df":1,"docs":{"166":{"tf":1.0}},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":3,"docs":{"112":{"tf":1.0},"113":{"tf":2.23606797749979},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"53":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"106":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"10":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.0},"28":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"/":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"193":{"tf":1.0}}},"df":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":{"40":{"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},"59":{"tf":1.4142135623730951},"74":{"tf":1.0},"93":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{">":{"(":{"0":{"df":3,"docs":{"87":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":36,"docs":{"102":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":2.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"140":{"tf":2.23606797749979},"141":{"tf":1.0},"147":{"tf":2.8284271247461903},"161":{"tf":1.7320508075688772},"163":{"tf":2.6457513110645907},"164":{"tf":3.3166247903554},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.7320508075688772},"178":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":2.6457513110645907},"185":{"tf":2.6457513110645907},"190":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"196":{"tf":1.0},"198":{"tf":1.0},"219":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":3.0},"85":{"tf":2.449489742783178},"87":{"tf":3.4641016151377544},"88":{"tf":3.4641016151377544},"90":{"tf":3.7416573867739413},"98":{"tf":2.6457513110645907},"99":{"tf":1.7320508075688772}}}}},"f":{"df":0,"docs":{},"j":{"df":1,"docs":{"4":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"67":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}},"k":{"df":1,"docs":{"34":{"tf":1.4142135623730951}}}},"r":{"d":{"df":4,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.0},"39":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"109":{"tf":1.0},"58":{"tf":1.4142135623730951}},"t":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"24":{"tf":1.0},"77":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":9,"docs":{"113":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.0},"181":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"25":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"113":{"tf":1.0},"58":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":18,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"178":{"tf":1.0},"2":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"67":{"tf":2.449489742783178},"8":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}}}},"w":{"df":7,"docs":{"126":{"tf":1.0},"144":{"tf":1.4142135623730951},"187":{"tf":1.0},"32":{"tf":1.4142135623730951},"87":{"tf":1.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"28":{"tf":1.0},"31":{"tf":1.0}}}}}},"u":{"df":8,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"166":{"tf":1.0},"22":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"87":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"58":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":2.0},"183":{"tf":1.0},"59":{"tf":1.7320508075688772},"96":{"tf":1.0}},"r":{"df":11,"docs":{"102":{"tf":2.23606797749979},"111":{"tf":1.0},"120":{"tf":1.0},"209":{"tf":1.0},"229":{"tf":2.449489742783178},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":2.23606797749979},"25":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}},"i":{"d":{"df":4,"docs":{"102":{"tf":3.3166247903554},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":2,"docs":{"29":{"tf":1.0},"30":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{">":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"1":{".":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":2.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"58":{"tf":1.0},"60":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"20":{"tf":1.7320508075688772},"22":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":2.23606797749979},"96":{"tf":3.0}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"0":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"96":{"tf":1.4142135623730951},"98":{"tf":2.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"58":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"1":{".":{"7":{"3":{".":{"0":{"df":1,"docs":{"52":{"tf":1.0}}},"df":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":{"2":{"tf":1.0},"5":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"df":1,"docs":{"18":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"66":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"31":{"tf":1.0},"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":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"33":{"tf":1.0}}},"k":{"df":4,"docs":{"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"59":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"22":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"60":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"58":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"120":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"18":{"tf":1.0},"96":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"205":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"53":{"tf":1.0},"58":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"167":{"tf":1.0},"181":{"tf":2.23606797749979},"87":{"tf":2.6457513110645907}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"10":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"6":{"tf":1.0},"62":{"tf":1.0},"75":{"tf":1.0},"82":{"tf":1.0},"96":{"tf":1.0}},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"32":{"tf":2.449489742783178}}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"52":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":31,"docs":{"102":{"tf":1.0},"11":{"tf":1.0},"126":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}},"y":{".":{".":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"63":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"11":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"147":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.7320508075688772},"219":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"231":{"tf":1.0},"232":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"120":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"22":{"tf":1.0},"36":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":7,"docs":{"113":{"tf":1.0},"147":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"74":{"tf":1.0},"90":{"tf":1.0}}}},"y":{"a":{"a":{"a":{"df":5,"docs":{"134":{"tf":1.0},"73":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":48,"docs":{"103":{"tf":1.0},"11":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"219":{"tf":1.4142135623730951},"233":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.0},"90":{"tf":3.872983346207417},"96":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"f":{"df":7,"docs":{"102":{"tf":1.0},"12":{"tf":1.0},"120":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"219":{"tf":1.4142135623730951},"90":{"tf":2.8284271247461903}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"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":5,"docs":{"215":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":31,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"54":{"tf":1.0},"58":{"tf":1.7320508075688772},"67":{"tf":1.0},"85":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":5,"docs":{"63":{"tf":1.0},"73":{"tf":1.7320508075688772},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"85":{"tf":1.0}},"n":{"df":0,"docs":{},"t":{"8":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"(":{"[":{"8":{"3":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"[":{"6":{"8":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"c":{".":{"c":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"134":{"tf":1.0}}},"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":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"102":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"88":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"142":{"tf":1.4142135623730951},"166":{"tf":1.0},"90":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}},"r":{"df":5,"docs":{"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"109":{"tf":1.0},"215":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"58":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"18":{"tf":1.0},"22":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"106":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"59":{"tf":1.0},"78":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"213":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"57":{"tf":1.0},"90":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"103":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"55":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"108":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"58":{"tf":1.0}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":72,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":2.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"17":{"tf":2.449489742783178},"179":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"191":{"tf":2.0},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"52":{"tf":1.0},"53":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"67":{"tf":2.8284271247461903},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":4.69041575982343},"88":{"tf":2.449489742783178},"90":{"tf":2.23606797749979},"96":{"tf":4.123105625617661},"99":{"tf":1.0}},"e":{"(":{"[":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":3,"docs":{"179":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"102":{"tf":1.0},"231":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"185":{"tf":1.0}}}}}}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"n":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":3,"docs":{"221":{"tf":1.0},"224":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"225":{"tf":1.0},"228":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":9,"docs":{"120":{"tf":1.4142135623730951},"202":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"191":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"67":{"tf":1.4142135623730951},"87":{"tf":2.23606797749979},"90":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"230":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"214":{"tf":1.7320508075688772}}}}}},"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"139":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":12,"docs":{"179":{"tf":1.0},"19":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"90":{"tf":1.4142135623730951},"96":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"101":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":2.0},"189":{"tf":2.0},"58":{"tf":1.4142135623730951},"83":{"tf":1.0},"90":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"58":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"l":{"df":12,"docs":{"13":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"99":{"tf":2.0}}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"110":{"tf":1.0},"59":{"tf":1.7320508075688772},"93":{"tf":1.0}}}},"df":56,"docs":{"0":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"110":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"14":{"tf":1.0},"147":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":2.23606797749979},"192":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.23606797749979},"215":{"tf":1.4142135623730951},"217":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"28":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"40":{"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},"5":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"64":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":2.0},"88":{"tf":2.23606797749979},"90":{"tf":2.8284271247461903},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}}}}},">":{"(":{"0":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"90":{"tf":2.23606797749979}}}}}}}}}}}}}},"df":5,"docs":{"161":{"tf":3.1622776601683795},"58":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"90":{"tf":4.358898943540674}},"i":{"d":{"df":1,"docs":{"90":{"tf":2.23606797749979}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"161":{"tf":2.23606797749979},"90":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"90":{"tf":2.449489742783178}}}}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":1,"docs":{"99":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"53":{"tf":1.0}}}}}},"v":{"8":{"df":1,"docs":{"59":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":21,"docs":{"102":{"tf":1.0},"110":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"147":{"tf":1.0},"159":{"tf":1.4142135623730951},"163":{"tf":1.0},"219":{"tf":2.6457513110645907},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"67":{"tf":2.449489742783178},"85":{"tf":2.23606797749979},"87":{"tf":3.7416573867739413},"88":{"tf":2.0},"90":{"tf":4.358898943540674},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}}}},">":{"(":{"0":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":27,"docs":{"111":{"tf":1.0},"192":{"tf":2.23606797749979},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"33":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"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},"50":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":2.449489742783178},"87":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"140":{"tf":2.23606797749979},"141":{"tf":1.0},"159":{"tf":1.7320508075688772},"163":{"tf":1.0},"165":{"tf":3.605551275463989},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"88":{"tf":2.6457513110645907},"90":{"tf":2.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"60":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":2.6457513110645907},"88":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"90":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"219":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"8":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":11,"docs":{"141":{"tf":1.0},"142":{"tf":2.0},"166":{"tf":3.3166247903554},"184":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.0},"219":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":2.6457513110645907},"90":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":10,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"14":{"tf":1.0},"17":{"tf":1.0},"215":{"tf":1.0},"22":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"67":{"tf":1.0},"90":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"58":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"167":{"tf":1.0},"172":{"tf":2.0},"2":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}}}}}},"i":{"a":{"df":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"3":{"tf":1.0},"52":{"tf":1.0},"60":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"56":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0}}}}}}},"m":{"df":1,"docs":{"10":{"tf":1.0}}},"o":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"102":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"20":{"tf":1.0},"224":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"85":{"tf":1.4142135623730951},"87":{"tf":3.4641016151377544},"96":{"tf":2.449489742783178}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"f":{"df":1,"docs":{"58":{"tf":1.0}}}},"s":{"df":2,"docs":{"58":{"tf":1.0},"66":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"105":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.7320508075688772}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"96":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"144":{"tf":1.4142135623730951},"18":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"6":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"2":{"df":1,"docs":{"52":{"tf":1.0}}},"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"m":{"3":{"2":{"df":1,"docs":{"52":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":13,"docs":{"106":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"233":{"tf":2.6457513110645907},"58":{"tf":3.1622776601683795},"61":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"39":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"144":{"tf":1.0},"15":{"tf":1.0},"58":{"tf":1.7320508075688772},"77":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"63":{"tf":1.4142135623730951},"67":{"tf":1.0},"83":{"tf":1.0}}}},"r":{"df":1,"docs":{"59":{"tf":1.0}}},"v":{"df":2,"docs":{"67":{"tf":1.0},"72":{"tf":1.0}}}},"b":{"3":{"df":1,"docs":{"56":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.7320508075688772},"3":{"tf":1.0},"34":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"58":{"tf":2.23606797749979},"59":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"77":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"8":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":3,"docs":{"36":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"2":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951}}}}},"h":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"98":{"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":{"0":{"tf":1.0},"176":{"tf":1.0}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":8,"docs":{"120":{"tf":1.0},"125":{"tf":1.0},"173":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":2.0},"25":{"tf":1.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"10":{"tf":1.0},"82":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"5":{"0":{"0":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"=":{"5":{"0":{"0":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"l":{"df":1,"docs":{"58":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"90":{"tf":1.0},"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"181":{"tf":1.0},"96":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.7320508075688772},"22":{"tf":1.0},"32":{"tf":1.7320508075688772},"67":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"54":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":97,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"106":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"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":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"26":{"tf":1.0},"36":{"tf":1.4142135623730951},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}},"l":{"d":{"df":21,"docs":{"12":{"tf":1.0},"14":{"tf":1.0},"164":{"tf":1.7320508075688772},"17":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":2.0},"58":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":2.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"8":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"215":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"12":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"228":{"tf":1.7320508075688772},"58":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"87":{"tf":1.0},"90":{"tf":1.7320508075688772},"94":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}}}}},"x":{"df":3,"docs":{"23":{"tf":2.449489742783178},"3":{"tf":1.0},"8":{"tf":1.0}},"k":{"c":{"d":{"df":1,"docs":{"205":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"205":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"52":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"67":{"tf":1.0},"72":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"'":{"d":{"df":4,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"90":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"80":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}}},"r":{"df":1,"docs":{"66":{"tf":1.0}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}}}}}},"title":{"root":{"1":{"2":{"8":{"df":7,"docs":{"122":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"135":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"117":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"167":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"118":{"tf":1.0},"119":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"38":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"39":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"44":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"45":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"46":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"48":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"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":{}}}}},"b":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"170":{"tf":1.0},"171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"53":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}}}}},"t":{"a":{"df":2,"docs":{"0":{"tf":1.0},"54":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"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":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"112":{"tf":1.0},"114":{"tf":1.0}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"125":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"108":{"tf":1.0},"141":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"25":{"tf":1.0},"53":{"tf":1.0},"88":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"182":{"tf":1.0},"195":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"31":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"174":{"tf":1.0}},"i":{"df":1,"docs":{"179":{"tf":1.0}}}}}}}},"k":{"b":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"72":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"10":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"108":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"175":{"tf":1.0},"177":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"25":{"tf":1.0},"26":{"tf":1.0},"96":{"tf":1.0}}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"103":{"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}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"28":{"tf":1.0},"29":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":11,"docs":{"10":{"tf":1.0},"3":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"x":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"193":{"tf":1.0},"69":{"tf":1.0}}}}}}},"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"55":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"53":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"57":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"169":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"107":{"tf":1.0},"192":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"4":{"tf":1.0},"83":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"15":{"tf":1.0}}}}}}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"23":{"tf":1.0},"24":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":3,"docs":{"110":{"tf":1.0},"146":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"221":{"tf":1.0},"225":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"108":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"184":{"tf":1.0},"185":{"tf":1.0},"205":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"26":{"tf":1.0},"27":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"2":{"tf":1.0},"62":{"tf":1.0}},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"1":{"6":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"149":{"tf":1.0}}},"df":1,"docs":{"148":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"72":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"60":{"tf":1.0}}}}},"v":{"df":1,"docs":{"232":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":3,"docs":{"10":{"tf":1.0},"71":{"tf":1.0},"82":{"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":2,"docs":{"107":{"tf":1.0},"33":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"110":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}}}}}}}}},"l":{"a":{"b":{"df":1,"docs":{"56":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"34":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"72":{"tf":1.0},"78":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"216":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"81":{"tf":1.0},"9":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"100":{"tf":1.0},"195":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"117":{"tf":1.0},"138":{"tf":1.0},"187":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"126":{"tf":1.0},"182":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"g":{"df":6,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"126":{"tf":1.0}}}},"t":{"1":{"6":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"157":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"154":{"tf":1.0}}},"df":1,"docs":{"153":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"51":{"tf":1.0},"52":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"106":{"tf":1.0},"217":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"159":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"135":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"177":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"189":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"11":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"109":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"190":{"tf":1.0},"84":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"64":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":6,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"222":{"tf":1.0},"226":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"35":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":4,"docs":{"6":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"139":{"tf":1.0},"140":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"98":{"tf":1.0},"99":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"162":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.0},"13":{"tf":1.0},"17":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":3,"docs":{"179":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"119":{"tf":1.0},"223":{"tf":1.0},"227":{"tf":1.0}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"89":{"tf":1.0}},"e":{"6":{"4":{"df":4,"docs":{"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"1":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"212":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"11":{"tf":1.0},"219":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"180":{"tf":1.0}},"r":{"df":5,"docs":{"102":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}}},"l":{";":{"d":{"df":0,"docs":{},"r":{"df":11,"docs":{"11":{"tf":1.0},"12":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"34":{"tf":1.0},"51":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"181":{"tf":1.0}}}},"df":0,"docs":{},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"68":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"191":{"tf":1.0},"86":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":2,"docs":{"188":{"tf":1.0},"189":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"110":{"tf":1.0},"92":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"192":{"tf":1.0},"37":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"172":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"233":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"73":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"63":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"228":{"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/the_azle_book/book/timers.html b/the_azle_book/book/timers.html index 117358b369..afb0adce1b 100644 --- a/the_azle_book/book/timers.html +++ b/the_azle_book/book/timers.html @@ -83,7 +83,7 @@ diff --git a/the_azle_book/src/SUMMARY.md b/the_azle_book/src/SUMMARY.md index cfeb78bcc7..150c79d204 100644 --- a/the_azle_book/src/SUMMARY.md +++ b/the_azle_book/src/SUMMARY.md @@ -8,8 +8,8 @@ - [Servers](./servers.md) - [Assets](./assets.md) - [Authentication](./authentication.md) +- [fetch](./fetch.md) - [Databases]() -- [fetch]() - [npm]() - [Cycles]() - [Tokens]() diff --git a/the_azle_book/src/authentication.md b/the_azle_book/src/authentication.md index 3c1414d7e1..0b06f41167 100644 --- a/the_azle_book/src/authentication.md +++ b/the_azle_book/src/authentication.md @@ -140,6 +140,7 @@ app.listen(); Examples: +- [ckbtc](https://github.com/demergent-labs/azle/tree/main/examples/ckbtc) - [fetch_ic](https://github.com/demergent-labs/azle/tree/main/examples/fetch_ic) - [internet_identity](https://github.com/demergent-labs/azle/tree/main/examples/internet_identity) diff --git a/the_azle_book/src/fetch.md b/the_azle_book/src/fetch.md new file mode 100644 index 0000000000..04e750f1ba --- /dev/null +++ b/the_azle_book/src/fetch.md @@ -0,0 +1,145 @@ +# fetch TL;DR + +Azle canisters use a custom `fetch` implementation to perform cross-canister calls and to perform HTTPS outcalls. + +Here's an example of performing a cross-canister call: + +```typescript +import { serialize } from 'azle'; +import express from 'express'; + +const app = express(); + +app.use(express.json()); + +app.post('/cross-canister-call', async (req, res) => { + const to: string = req.body.to; + const amount: number = req.body.amount; + + const response = await fetch(`icp://dfdal-2uaaa-aaaaa-qaama-cai/transfer`, { + body: serialize({ + candidPath: '/token.did', + args: [to, amount] + }) + }); + const responseJson = await response.json(); + + res.json(responseJson); +}); + +app.listen(); +``` + +Keep these important points in mind when performing a cross-canister call: + +- Use the `icp://` protocol in the URL +- The `canister id` of the canister that you are calling immediately follows `icp://` in the URL +- The `canister method` that you are calling immediately follows the `canister id` in the URL +- The `candidPath` property of the `body` is the path to the Candid file defining the method signatures of the canister that you are calling. You must obtain this file and copy it into your canister. See the [Assets chapter](./assets.md) for info on copying files into your canister +- The `args` property of the `body` is an array of the arguments that will be passed to the `canister method` that you are calling + +Here's an example of performing an HTTPS outcall: + +```typescript +import express from 'express'; + +const app = express(); + +app.use(express.json()); + +app.post('/https-outcall', async (_req, res) => { + const response = await fetch(`https://httpbin.org/headers`, { + headers: { + 'X-Azle-Request-Key-0': 'X-Azle-Request-Value-0', + 'X-Azle-Request-Key-1': 'X-Azle-Request-Value-1', + 'X-Azle-Request-Key-2': 'X-Azle-Request-Value-2' + } + }); + const responseJson = await response.json(); + + res.json(responseJson); +}); + +app.listen(); +``` + +# fetch + +Azle has custom `fetch` implementations for clients and canisters. + +The client `fetch` is used for authentication, and you can learn more about it in the [Authentication chapter](./authentication.md). + +Canister `fetch` is used to perform cross-canister calls and [HTTPS outcalls](https://internetcomputer.org/https-outcalls). There are three main types of calls made with canister `fetch`: + +1. [Cross-canister calls to a candid canister](#cross-canister-calls-to-a-candid-canister) +2. [Cross-canister calls to an HTTP canister](#cross-canister-calls-to-an-http-canister) +3. [HTTPS outcalls](#https-outcalls) + +## Cross-canister calls to a candid canister + +Examples: + +- [async_await](https://github.com/demergent-labs/azle/tree/main/examples/async_await) +- [bitcoin](https://github.com/demergent-labs/azle/tree/main/examples/bitcoin) +- [canister](https://github.com/demergent-labs/azle/tree/main/examples/canister) +- [ckbtc](https://github.com/demergent-labs/azle/tree/main/examples/ckbtc) +- [composite_queries](https://github.com/demergent-labs/azle/tree/main/examples/composite_queries) +- [cross_canister_calls](https://github.com/demergent-labs/azle/tree/main/examples/cross_canister_calls) +- [cycles](https://github.com/demergent-labs/azle/tree/main/examples/cycles) +- [func_types](https://github.com/demergent-labs/azle/tree/main/examples/func_types) +- [heartbeat](https://github.com/demergent-labs/azle/tree/main/examples/heartbeat) +- [ic_evm_rpc](https://github.com/demergent-labs/azle/tree/main/examples/ic_evm_rpc) +- [icrc](https://github.com/demergent-labs/azle/tree/main/examples/icrc) +- [ledger_canister](https://github.com/demergent-labs/azle/tree/main/examples/ledger_canister) +- [management_canister](https://github.com/demergent-labs/azle/tree/main/examples/management_canister) +- [threshold_ecdsa](https://github.com/demergent-labs/azle/tree/main/examples/motoko_examples/threshold_ecdsa) +- [whoami](https://github.com/demergent-labs/azle/tree/main/examples/motoko_examples/whoami) +- [recursion](https://github.com/demergent-labs/azle/tree/main/examples/recursion) +- [rejections](https://github.com/demergent-labs/azle/tree/main/examples/rejections) +- [timers](https://github.com/demergent-labs/azle/tree/main/examples/timers) + +## Cross-canister calls to an HTTP canister + +We are working on better abstractions for these types of calls. For now you would just make a cross-canister call using `icp://` to the `http_request` and `http_request_update` methods of the canister that you are calling. + +## HTTPS outcalls + +Examples: + +- [ethereum_json_rpc](https://github.com/demergent-labs/azle/tree/main/examples/ethereum_json_rpc) +- [http_outcall_fetch](https://github.com/demergent-labs/azle/tree/main/examples/http_outcall_fetch) +- [outgoing_http_requests](https://github.com/demergent-labs/azle/tree/main/examples/outgoing_http_requests) + +